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

多媒体

开发平台:

MultiPlatform

  1. /*****************************************************************************
  2.  * win32_window.cpp
  3.  *****************************************************************************
  4.  * Copyright (C) 2003 VideoLAN
  5.  * $Id: win32_window.cpp 8966 2004-10-10 10:08:44Z ipkiss $
  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 WIN32_SKINS
  25. #include "../src/generic_window.hpp"
  26. #include "../src/vlcproc.hpp"
  27. #include "win32_window.hpp"
  28. #include "win32_dragdrop.hpp"
  29. #include "win32_factory.hpp"
  30. /// Fading API
  31. #ifndef LWA_COLORKEY
  32. #   define LWA_COLORKEY  0x00000001
  33. #   define LWA_ALPHA     0x00000002
  34. #endif
  35. Win32Window::Win32Window( intf_thread_t *pIntf, GenericWindow &rWindow,
  36.                           HINSTANCE hInst, HWND hParentWindow,
  37.                           bool dragDrop, bool playOnDrop,
  38.                           Win32Window *pParentWindow ):
  39.     OSWindow( pIntf ), m_dragDrop( dragDrop ), m_isLayered( false )
  40. {
  41.     // Create the window
  42.     if( pParentWindow )
  43.     {
  44.         // Child window (for vout)
  45.         HWND hParent = pParentWindow->getHandle();
  46.         m_hWnd = CreateWindowEx( WS_EX_TOOLWINDOW, "SkinWindowClass",
  47.             "default name", WS_CHILD, CW_USEDEFAULT, CW_USEDEFAULT,
  48.             CW_USEDEFAULT, CW_USEDEFAULT, hParent, 0, hInst, NULL );
  49.     }
  50.     else
  51.     {
  52.         // Normal window
  53.         m_hWnd = CreateWindowEx( WS_EX_TOOLWINDOW, "SkinWindowClass",
  54.             "default name", WS_POPUP, CW_USEDEFAULT, CW_USEDEFAULT,
  55.             CW_USEDEFAULT, CW_USEDEFAULT, hParentWindow, 0, hInst, NULL );
  56.     }
  57.     if( !m_hWnd )
  58.     {
  59.         msg_Err( getIntf(), "CreateWindow failed" );
  60.         return;
  61.     }
  62.     // Store a pointer to the GenericWindow in a map
  63.     Win32Factory *pFactory = (Win32Factory*)Win32Factory::instance( getIntf() );
  64.     pFactory->m_windowMap[m_hWnd] = &rWindow;
  65.     // Drag & drop
  66.     if( m_dragDrop )
  67.     {
  68.         m_pDropTarget = (LPDROPTARGET) new Win32DragDrop( getIntf(),
  69.                                                           playOnDrop );
  70.         // Register the window as a drop target
  71.         RegisterDragDrop( m_hWnd, m_pDropTarget );
  72.     }
  73.     // XXX Set this window as the vout
  74.     if( pParentWindow )
  75.     {
  76.         VlcProc::instance( getIntf() )->setVoutWindow( (void*)m_hWnd );
  77.     }
  78. }
  79. Win32Window::~Win32Window()
  80. {
  81.     Win32Factory *pFactory = (Win32Factory*)Win32Factory::instance( getIntf() );
  82.     pFactory->m_windowMap[m_hWnd] = NULL;
  83.     if( m_hWnd )
  84.     {
  85.         if( m_dragDrop )
  86.         {
  87.             // Remove the window from the list of drop targets
  88.             RevokeDragDrop( m_hWnd );
  89.             m_pDropTarget->Release();
  90.         }
  91.         DestroyWindow( m_hWnd );
  92.     }
  93. }
  94. void Win32Window::show( int left, int top ) const
  95. {
  96.     ShowWindow( m_hWnd, SW_SHOW );
  97. }
  98. void Win32Window::hide() const
  99. {
  100.     ShowWindow( m_hWnd, SW_HIDE );
  101. }
  102. void Win32Window::moveResize( int left, int top, int width, int height ) const
  103. {
  104.     MoveWindow( m_hWnd, left, top, width, height, true );
  105. }
  106. void Win32Window::raise() const
  107. {
  108. //     SetWindowPos( m_hWnd, HWND_TOP, 0, 0, 0, 0, SWP_NOMOVE | SWP_NOSIZE );
  109.     SetForegroundWindow( m_hWnd );
  110. }
  111. void Win32Window::setOpacity( uint8_t value ) const
  112. {
  113.     Win32Factory *pFactory = (Win32Factory*)Win32Factory::instance( getIntf() );
  114.     if( value == 255 )
  115.     {
  116.         // If the window is opaque, we remove the WS_EX_LAYERED attribute
  117.         // which slows down resizing for nothing
  118.         if( m_isLayered )
  119.         {
  120.             SetWindowLongPtr( m_hWnd, GWL_EXSTYLE,
  121.                 GetWindowLong( m_hWnd, GWL_EXSTYLE ) & ~WS_EX_LAYERED );
  122.             // Redraw the window, otherwise we may end up with a grey rectangle
  123.             // for some strange reason
  124.             RedrawWindow(m_hWnd, NULL, NULL,
  125.                 RDW_ERASE | RDW_INVALIDATE | RDW_FRAME | RDW_ALLCHILDREN);
  126.             m_isLayered = false;
  127.         }
  128.     }
  129.     else
  130.     {
  131.         if( pFactory->SetLayeredWindowAttributes )
  132.         {
  133.             if( ! m_isLayered )
  134.             {
  135.                 // (Re)Add the WS_EX_LAYERED attribute.
  136.                 // Resizing will be very slow, now :)
  137.                 SetWindowLongPtr( m_hWnd, GWL_EXSTYLE,
  138.                     GetWindowLong( m_hWnd, GWL_EXSTYLE ) | WS_EX_LAYERED );
  139.                 // Redraw the window, otherwise we may end up with a grey
  140.                 // rectangle for some strange reason
  141.                 RedrawWindow(m_hWnd, NULL, NULL,
  142.                     RDW_ERASE | RDW_INVALIDATE | RDW_FRAME | RDW_ALLCHILDREN);
  143.                 m_isLayered = true;
  144.             }
  145.             // Change the opacity
  146.             pFactory->SetLayeredWindowAttributes(
  147.                 m_hWnd, 0, value, LWA_ALPHA|LWA_COLORKEY );
  148.         }
  149.     }
  150. }
  151. void Win32Window::toggleOnTop( bool onTop ) const
  152. {
  153.     if( onTop )
  154.     {
  155.         // Set the window on top
  156.         SetWindowPos( m_hWnd, HWND_TOPMOST, 0, 0, 0, 0,
  157.                       SWP_NOSIZE | SWP_NOMOVE );
  158.     }
  159.     else
  160.     {
  161.         // Set the window not on top
  162.         SetWindowPos( m_hWnd, HWND_NOTOPMOST, 0, 0, 0, 0,
  163.                       SWP_NOSIZE | SWP_NOMOVE );
  164.     }
  165. }
  166. #endif