x11_window.cpp
上传用户:riyaled888
上传日期:2009-03-27
资源大小:7338k
文件大小:7k
源码类别:

多媒体

开发平台:

MultiPlatform

  1. /*****************************************************************************
  2.  * x11_window.cpp
  3.  *****************************************************************************
  4.  * Copyright (C) 2003 VideoLAN
  5.  * $Id: x11_window.cpp 8391 2004-08-06 17:28:36Z sam $
  6.  *
  7.  * Authors: Cyril Deguet     <asmax@via.ecp.fr>
  8.  *          Olivier Teuli鑢e <ipkiss@via.ecp.fr>
  9.  *
  10.  * This program is free software; you can redistribute it and/or modify
  11.  * it under the terms of the GNU General Public License as published by
  12.  * the Free Software Foundation; either version 2 of the License, or
  13.  * (at your option) any later version.
  14.  *
  15.  * This program is distributed in the hope that it will be useful,
  16.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  17.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  18.  * GNU General Public License for more details.
  19.  *
  20.  * You should have received a copy of the GNU General Public License
  21.  * along with this program; if not, write to the Free Software
  22.  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
  23.  *****************************************************************************/
  24. #ifdef X11_SKINS
  25. #include <X11/Xatom.h>
  26. #include "../src/generic_window.hpp"
  27. #include "../src/vlcproc.hpp"
  28. #include "x11_window.hpp"
  29. #include "x11_display.hpp"
  30. #include "x11_graphics.hpp"
  31. #include "x11_dragdrop.hpp"
  32. #include "x11_factory.hpp"
  33. X11Window::X11Window( intf_thread_t *pIntf, GenericWindow &rWindow,
  34.                       X11Display &rDisplay, bool dragDrop, bool playOnDrop,
  35.                       X11Window *pParentWindow ):
  36.     OSWindow( pIntf ), m_rDisplay( rDisplay ), m_pParent( pParentWindow ),
  37.     m_dragDrop( dragDrop )
  38. {
  39.     Window parent;
  40.     if (pParentWindow)
  41.     {
  42.         parent = pParentWindow->m_wnd;
  43.     }
  44.     else
  45.     {
  46.         parent = DefaultRootWindow( XDISPLAY );
  47.     }
  48.     XSetWindowAttributes attr;
  49.     // Create the window
  50.     m_wnd = XCreateWindow( XDISPLAY, parent, 0, 0, 1, 1, 0, 0,
  51.                            InputOutput, CopyFromParent, 0, &attr );
  52.     // Set the colormap for 8bpp mode
  53.     if( XPIXELSIZE == 1 )
  54.     {
  55.         XSetWindowColormap( XDISPLAY, m_wnd, m_rDisplay.getColormap() );
  56.     }
  57.     // Select events received by the window
  58.     XSelectInput( XDISPLAY, m_wnd, ExposureMask|KeyPressMask|
  59.                   PointerMotionMask|ButtonPressMask|ButtonReleaseMask|
  60.                   LeaveWindowMask|FocusChangeMask );
  61.     // Store a pointer on the generic window in a map
  62.     X11Factory *pFactory = (X11Factory*)X11Factory::instance( getIntf() );
  63.     pFactory->m_windowMap[m_wnd] = &rWindow;
  64.     // Changing decorations
  65.     struct {
  66.         unsigned long flags;
  67.         unsigned long functions;
  68.         unsigned long decorations;
  69.         long input_mode;
  70.         unsigned long status;
  71.     } motifWmHints;
  72.     Atom hints_atom = XInternAtom( XDISPLAY, "_MOTIF_WM_HINTS", False );
  73.     motifWmHints.flags = 2;    // MWM_HINTS_DECORATIONS;
  74.     motifWmHints.decorations = 0;
  75.     XChangeProperty( XDISPLAY, m_wnd, hints_atom, hints_atom, 32,
  76.                      PropModeReplace, (unsigned char *)&motifWmHints,
  77.                      sizeof( motifWmHints ) / sizeof( long ) );
  78.     // Drag & drop
  79.     if( m_dragDrop )
  80.     {
  81.         // Create a Dnd object for this window
  82.         m_pDropTarget = new X11DragDrop( getIntf(), m_rDisplay, m_wnd,
  83.                                          playOnDrop );
  84.         // Register the window as a drop target
  85.         Atom xdndAtom = XInternAtom( XDISPLAY, "XdndAware", False );
  86.         char xdndVersion = 4;
  87.         XChangeProperty( XDISPLAY, m_wnd, xdndAtom, XA_ATOM, 32,
  88.                          PropModeReplace, (unsigned char *)&xdndVersion, 1 );
  89.         // Store a pointer to be used in X11Loop
  90.         pFactory->m_dndMap[m_wnd] = m_pDropTarget;
  91.     }
  92.     // Change the window title
  93.     XStoreName( XDISPLAY, m_wnd, "VLC" );
  94.     // Associate the window to the main "parent" window
  95.     XSetTransientForHint( XDISPLAY, m_wnd, m_rDisplay.getMainWindow() );
  96.     // XXX Set this window as the vout
  97.     if( m_pParent )
  98.     {
  99.         VlcProc::instance( getIntf() )->setVoutWindow( (void*)m_wnd );
  100.     }
  101. }
  102. X11Window::~X11Window()
  103. {
  104.     // XXX This window is no more the vout
  105.     if( m_pParent )
  106.     {
  107.         VlcProc::instance( getIntf() )->setVoutWindow( NULL );
  108.     }
  109.     X11Factory *pFactory = (X11Factory*)X11Factory::instance( getIntf() );
  110.     pFactory->m_windowMap[m_wnd] = NULL;
  111.     pFactory->m_dndMap[m_wnd] = NULL;
  112.     if( m_dragDrop )
  113.     {
  114.         delete m_pDropTarget;
  115.     }
  116.     XDestroyWindow( XDISPLAY, m_wnd );
  117.     XSync( XDISPLAY, False );
  118. }
  119. void X11Window::show( int left, int top ) const
  120. {
  121.     // Map the window
  122.     XMapRaised( XDISPLAY, m_wnd );
  123.     XMoveWindow( XDISPLAY, m_wnd, left, top );
  124. }
  125. void X11Window::hide() const
  126. {
  127.     // Unmap the window
  128.     XUnmapWindow( XDISPLAY, m_wnd );
  129. }
  130. void X11Window::moveResize( int left, int top, int width, int height ) const
  131. {
  132.     XMoveResizeWindow( XDISPLAY, m_wnd, left, top, width, height );
  133. }
  134. void X11Window::raise() const
  135. {
  136.     XRaiseWindow( XDISPLAY, m_wnd );
  137. }
  138. void X11Window::setOpacity( uint8_t value ) const
  139. {
  140.     // Sorry, the opacity cannot be changed :)
  141. }
  142. void X11Window::toggleOnTop( bool onTop ) const
  143. {
  144.     int i_ret, i_format;
  145.     unsigned long i, i_items, i_bytesafter;
  146.     Atom net_wm_supported, net_wm_state, net_wm_state_on_top;
  147.     union { Atom *p_atom; unsigned char *p_char; } p_args;
  148.     p_args.p_atom = NULL;
  149.     net_wm_supported = XInternAtom( XDISPLAY, "_NET_SUPPORTED", False );
  150.     i_ret = XGetWindowProperty( XDISPLAY, DefaultRootWindow( XDISPLAY ),
  151.                                 net_wm_supported,
  152.                                 0, 16384, False, AnyPropertyType,
  153.                                 &net_wm_supported,
  154.                                 &i_format, &i_items, &i_bytesafter,
  155.                                 (unsigned char **)&p_args );
  156.     if( i_ret != Success || i_items == 0 ) return; /* Not supported */
  157.     net_wm_state = XInternAtom( XDISPLAY, "_NET_WM_STATE", False );
  158.     net_wm_state_on_top = XInternAtom( XDISPLAY, "_NET_WM_STATE_STAYS_ON_TOP",
  159.                                        False );
  160.     for( i = 0; i < i_items; i++ )
  161.     {
  162.         if( p_args.p_atom[i] == net_wm_state_on_top ) break;
  163.     }
  164.     XFree( p_args.p_atom );
  165.     if( i == i_items ) return; /* Not supported */
  166.     /* Switch "on top" status */
  167.     XClientMessageEvent event;
  168.     memset( &event, 0, sizeof( XClientMessageEvent ) );
  169.     event.type = ClientMessage;
  170.     event.message_type = net_wm_state;
  171.     event.display = XDISPLAY;
  172.     event.window = m_wnd;
  173.     event.format = 32;
  174.     event.data.l[ 0 ] = onTop; /* set property */
  175.     event.data.l[ 1 ] = net_wm_state_on_top;
  176.     XSendEvent( XDISPLAY, DefaultRootWindow( XDISPLAY ),
  177.                 False, SubstructureRedirectMask, (XEvent*)&event );
  178. }
  179. #endif