00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025 #ifdef WIN32_SKINS
00026
00027 #include "win32_tooltip.hpp"
00028 #include "win32_graphics.hpp"
00029 #include "../src/generic_window.hpp"
00030
00031 Win32Tooltip::Win32Tooltip( intf_thread_t *pIntf, HINSTANCE hInst,
00032 HWND hParentWindow ):
00033 OSTooltip( pIntf )
00034 {
00035
00036 m_hWnd = CreateWindowEx( WS_EX_TOOLWINDOW,
00037 "SkinWindowClass", "default name", WS_POPUP, CW_USEDEFAULT,
00038 CW_USEDEFAULT, CW_USEDEFAULT, CW_USEDEFAULT, hParentWindow, 0,
00039 hInst, NULL );
00040
00041 if( !m_hWnd )
00042 {
00043 msg_Err( getIntf(), "CreateWindow failed" );
00044 return;
00045 }
00046 }
00047
00048
00049 Win32Tooltip::~Win32Tooltip()
00050 {
00051 if( m_hWnd )
00052 DestroyWindow( m_hWnd );
00053 }
00054
00055
00056 void Win32Tooltip::show( int left, int top, OSGraphics &rText )
00057 {
00058
00059 HDC srcDC = ((Win32Graphics&)rText).getDC();
00060 int width = rText.getWidth();
00061 int height = rText.getHeight();
00062
00063
00064 SetWindowPos( m_hWnd, HWND_TOPMOST, left, top, width, height, 0 );
00065 ShowWindow( m_hWnd, SW_SHOW );
00066
00067 HDC wndDC = GetWindowDC( m_hWnd );
00068 BitBlt( wndDC, 0, 0, width, height, srcDC, 0, 0, SRCCOPY );
00069 ReleaseDC( m_hWnd, wndDC );
00070 }
00071
00072
00073 void Win32Tooltip::hide()
00074 {
00075 ShowWindow( m_hWnd, SW_HIDE );
00076 }
00077
00078
00079 #endif
00080