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

多媒体

开发平台:

MultiPlatform

  1. /*****************************************************************************
  2.  * win32_tooltip.cpp
  3.  *****************************************************************************
  4.  * Copyright (C) 2003 VideoLAN
  5.  * $Id: win32_tooltip.cpp 6961 2004-03-05 17:34:23Z 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 WIN32_SKINS
  25. #include "win32_tooltip.hpp"
  26. #include "win32_graphics.hpp"
  27. #include "../src/generic_window.hpp"
  28. Win32Tooltip::Win32Tooltip( intf_thread_t *pIntf, HINSTANCE hInst,
  29.                             HWND hParentWindow ):
  30.     OSTooltip( pIntf )
  31. {
  32.     // Create the window
  33.     m_hWnd = CreateWindowEx( WS_EX_TOOLWINDOW,
  34.         "SkinWindowClass", "default name", WS_POPUP, CW_USEDEFAULT,
  35.         CW_USEDEFAULT, CW_USEDEFAULT, CW_USEDEFAULT, hParentWindow, 0,
  36.         hInst, NULL );
  37.     if( !m_hWnd )
  38.     {
  39.         msg_Err( getIntf(), "CreateWindow failed" );
  40.         return;
  41.     }
  42. }
  43. Win32Tooltip::~Win32Tooltip()
  44. {
  45.     if( m_hWnd )
  46.         DestroyWindow( m_hWnd );
  47. }
  48. void Win32Tooltip::show( int left, int top, OSGraphics &rText )
  49. {
  50.     // Source drawable
  51.     HDC srcDC = ((Win32Graphics&)rText).getDC();
  52.     int width = rText.getWidth();
  53.     int height = rText.getHeight();
  54.     // Set the window on top, resize it and show it
  55.     SetWindowPos( m_hWnd, HWND_TOPMOST, left, top, width, height, 0 );
  56.     ShowWindow( m_hWnd, SW_SHOW );
  57.     HDC wndDC = GetWindowDC( m_hWnd );
  58.     BitBlt( wndDC, 0, 0, width, height, srcDC, 0, 0, SRCCOPY );
  59.     ReleaseDC( m_hWnd, wndDC );
  60. }
  61. void Win32Tooltip::hide()
  62. {
  63.     ShowWindow( m_hWnd, SW_HIDE );
  64. }
  65. #endif