]> git.sesse.net Git - vlc/blob - modules/gui/skins2/win32/win32_tooltip.cpp
ee747e3a7aebd98a7cccfb24e7dc974da9ca9c44
[vlc] / modules / gui / skins2 / win32 / win32_tooltip.cpp
1 /*****************************************************************************
2  * win32_tooltip.cpp
3  *****************************************************************************
4  * Copyright (C) 2003 the VideoLAN team
5  * $Id$
6  *
7  * Authors: Cyril Deguet     <asmax@via.ecp.fr>
8  *          Olivier Teulière <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., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
23  *****************************************************************************/
24
25 #ifdef WIN32_SKINS
26
27 #include "win32_tooltip.hpp"
28 #include "win32_graphics.hpp"
29 #include "../src/generic_window.hpp"
30
31 Win32Tooltip::Win32Tooltip( intf_thread_t *pIntf, HINSTANCE hInst,
32                             HWND hParentWindow ):
33     OSTooltip( pIntf )
34 {
35     // Create the window
36     m_hWnd = CreateWindowEx( WS_EX_TOOLWINDOW,
37         "SkinWindowClass", "default name", WS_POPUP, CW_USEDEFAULT,
38         CW_USEDEFAULT, CW_USEDEFAULT, CW_USEDEFAULT, hParentWindow, 0,
39         hInst, NULL );
40
41     if( !m_hWnd )
42     {
43         msg_Err( getIntf(), "CreateWindow failed" );
44         return;
45     }
46 }
47
48
49 Win32Tooltip::~Win32Tooltip()
50 {
51     if( m_hWnd )
52         DestroyWindow( m_hWnd );
53 }
54
55
56 void Win32Tooltip::show( int left, int top, OSGraphics &rText )
57 {
58     // Source drawable
59     HDC srcDC = ((Win32Graphics&)rText).getDC();
60     int width = rText.getWidth();
61     int height = rText.getHeight();
62
63     // Set the window on top, resize it and show it
64     SetWindowPos( m_hWnd, HWND_TOPMOST, left, top, width, height, 0 );
65     ShowWindow( m_hWnd, SW_SHOW );
66
67     HDC wndDC = GetWindowDC( m_hWnd );
68     BitBlt( wndDC, 0, 0, width, height, srcDC, 0, 0, SRCCOPY );
69     ReleaseDC( m_hWnd, wndDC );
70 }
71
72
73 void Win32Tooltip::hide()
74 {
75     ShowWindow( m_hWnd, SW_HIDE );
76 }
77
78
79 #endif
80