win32_window.cpp
来自「VLC媒体播放程序」· C++ 代码 · 共 185 行
CPP
185 行
/***************************************************************************** * win32_window.cpp ***************************************************************************** * Copyright (C) 2003 VideoLAN * $Id: win32_window.cpp,v 1.1 2004/01/03 23:31:34 asmax Exp $ * * Authors: Cyril Deguet <asmax@via.ecp.fr> * Olivier Teuli鑢e <ipkiss@via.ecp.fr> * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111, USA. *****************************************************************************/#ifdef WIN32_SKINS#include "../src/generic_window.hpp"#include "win32_window.hpp"#include "win32_dragdrop.hpp"#include "win32_factory.hpp"/// Fading API#define LWA_COLORKEY 0x00000001#define LWA_ALPHA 0x00000002Win32Window::Win32Window( intf_thread_t *pIntf, GenericWindow &rWindow, HINSTANCE hInst, HWND hParentWindow, bool dragDrop, bool playOnDrop ): OSWindow( pIntf ), m_dragDrop( dragDrop ), m_mm( false ){ // Create the window m_hWnd = CreateWindowEx( WS_EX_TOOLWINDOW, "SkinWindowClass", "default name", WS_POPUP, CW_USEDEFAULT, CW_USEDEFAULT, CW_USEDEFAULT, CW_USEDEFAULT, hParentWindow, 0, hInst, NULL ); if( !m_hWnd ) { msg_Err( getIntf(), "CreateWindow failed" ); return; } // We do it this way otherwise CreateWindowEx will fail if WS_EX_LAYERED // is not supported// SetWindowLongPtr( m_hWnd, GWL_EXSTYLE,// GetWindowLong( m_hWnd, GWL_EXSTYLE ) | WS_EX_LAYERED ); // Store a pointer to the GenericWindow in a map Win32Factory *pFactory = (Win32Factory*)Win32Factory::instance( getIntf() ); pFactory->m_windowMap[m_hWnd] = &rWindow; // Drag & drop if( m_dragDrop ) { m_pDropTarget = (LPDROPTARGET) new Win32DragDrop( getIntf(), playOnDrop ); // Register the window as a drop target RegisterDragDrop( m_hWnd, m_pDropTarget ); }}Win32Window::~Win32Window(){ Win32Factory *pFactory = (Win32Factory*)Win32Factory::instance( getIntf() ); pFactory->m_windowMap[m_hWnd] = NULL; if( m_hWnd ) { if( m_dragDrop ) { // Remove the window from the list of drop targets RevokeDragDrop( m_hWnd ); m_pDropTarget->Release(); } DestroyWindow( m_hWnd ); }}void Win32Window::show( int left, int top ){ ShowWindow( m_hWnd, SW_SHOW );}void Win32Window::hide(){ ShowWindow( m_hWnd, SW_HIDE );}void Win32Window::moveResize( int left, int top, int width, int height ){ MoveWindow( m_hWnd, left, top, width, height, true );}void Win32Window::raise(){ SetWindowPos( m_hWnd, HWND_TOP, 0, 0, 0, 0, SWP_NOMOVE | SWP_NOSIZE );}void Win32Window::setOpacity( uint8_t value ){ Win32Factory *pFactory = (Win32Factory*)Win32Factory::instance( getIntf() );#if 0 if( value == 255 ) { // If the window is opaque, we remove the WS_EX_LAYERED attribute // which slows resizing for nothing if( m_mm ) { SetWindowLongPtr( m_hWnd, GWL_EXSTYLE, GetWindowLong( m_hWnd, GWL_EXSTYLE ) & !WS_EX_LAYERED ); SetWindowPos( m_hWnd, HWND_TOP, 0, 0, 0, 0, SWP_NOMOVE | SWP_NOSIZE | SWP_NOZORDER | SWP_FRAMECHANGED ); m_mm = false; }// GenericWindow *pWin = pFactory->m_windowMap[m_hWnd];// pWin->refresh( pWin->getLeft(), pWin->getTop(), pWin->getWidth(), pWin->getHeight() ); } else#endif { if( pFactory->SetLayeredWindowAttributes ) {#if 0 // (Re)Add the WS_EX_LAYERED attribute. // Resizing will be very slow, now :) if( !m_mm ) { SetWindowLongPtr( m_hWnd, GWL_EXSTYLE, GetWindowLong( m_hWnd, GWL_EXSTYLE ) | WS_EX_LAYERED ); SetWindowPos( m_hWnd, HWND_TOP, 0, 0, 0, 0, SWP_NOMOVE | SWP_NOSIZE | SWP_NOZORDER | SWP_FRAMECHANGED ); m_mm = true; }// GenericWindow *pWin = pFactory->m_windowMap[m_hWnd];// pWin->refresh( pWin->getLeft(), pWin->getTop(), pWin->getWidth(), pWin->getHeight() );#endif // Change the opacity pFactory->SetLayeredWindowAttributes( m_hWnd, 0, value, LWA_ALPHA|LWA_COLORKEY ); } }// UpdateWindow( m_hWnd );}void Win32Window::toggleOnTop( bool onTop ){ if( onTop ) { // Set the window on top SetWindowPos( m_hWnd, HWND_TOPMOST, 0, 0, 0, 0, SWP_NOSIZE | SWP_NOMOVE ); } else { // Set the window not on top SetWindowPos( m_hWnd, HWND_NOTOPMOST, 0, 0, 0, 0, SWP_NOSIZE | SWP_NOMOVE ); }}#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?