win32_tooltip.cpp
上传用户:kjfoods
上传日期:2020-07-06
资源大小:29949k
文件大小:2k
源码类别:

midi

开发平台:

Unix_Linux

  1. /*****************************************************************************
  2.  * win32_tooltip.cpp
  3.  *****************************************************************************
  4.  * Copyright (C) 2003 the VideoLAN team
  5.  * $Id: 34d4487852fe9dbb582f8e722596f51f5839baeb $
  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. #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