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

midi

开发平台:

Unix_Linux

  1. /*****************************************************************************
  2.  * tooltip.cpp
  3.  *****************************************************************************
  4.  * Copyright (C) 2003 the VideoLAN team
  5.  * $Id: a0798b82f8b91bd1d0cea05d0a76b15ad973e4d5 $
  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. #include "tooltip.hpp"
  25. #include "generic_bitmap.hpp"
  26. #include "generic_font.hpp"
  27. #include "os_factory.hpp"
  28. #include "os_graphics.hpp"
  29. #include "os_tooltip.hpp"
  30. #include "os_timer.hpp"
  31. #include "var_manager.hpp"
  32. #include "../utils/ustring.hpp"
  33. Tooltip::Tooltip( intf_thread_t *pIntf, const GenericFont &rFont, int delay ):
  34.     SkinObject( pIntf ), m_rFont( rFont ), m_delay( delay ), m_pImage( NULL ),
  35.     m_xPos( -1 ), m_yPos( -1 ), m_cmdShow( this )
  36. {
  37.     OSFactory *pOsFactory = OSFactory::instance( pIntf );
  38.     m_pTimer = pOsFactory->createOSTimer( m_cmdShow );
  39.     m_pOsTooltip = pOsFactory->createOSTooltip();
  40.     // Observe the tooltip text variable
  41.     VarManager::instance( pIntf )->getTooltipText().addObserver( this );
  42. }
  43. Tooltip::~Tooltip()
  44. {
  45.     VarManager::instance( getIntf() )->getTooltipText().delObserver( this );
  46.     SKINS_DELETE( m_pTimer );
  47.     SKINS_DELETE( m_pOsTooltip );
  48.     delete m_pImage;
  49. }
  50. void Tooltip::show()
  51. {
  52.     // (Re)start the timer
  53.     m_pTimer->start( m_delay, true );
  54. }
  55. void Tooltip::hide()
  56. {
  57.     m_pTimer->stop();
  58.     m_pOsTooltip->hide();
  59.     m_xPos = -1;
  60.     m_yPos = -1;
  61. }
  62. void Tooltip::onUpdate( Subject<VarText> &rVariable , void *arg)
  63. {
  64.     // Redisplay the tooltip
  65.     displayText( ((VarText&)rVariable).get() );
  66. }
  67. void Tooltip::displayText( const UString &rText )
  68. {
  69.     // Rebuild the image
  70.     makeImage( rText );
  71.     // Redraw the window if it is already visible
  72.     if( m_xPos != -1 )
  73.     {
  74.         m_pOsTooltip->show( m_xPos, m_yPos, *m_pImage );
  75.     }
  76. }
  77. void Tooltip::makeImage( const UString &rText )
  78. {
  79.     // Render the text on a bitmap
  80.     GenericBitmap *pBmpTip = m_rFont.drawString( rText, 0 );
  81.     if( !pBmpTip )
  82.     {
  83.         return;
  84.     }
  85.     int w = pBmpTip->getWidth() + 10;
  86.     int h = m_rFont.getSize() + 8;
  87.     // Create the image of the tooltip
  88.     delete m_pImage;
  89.     m_pImage = OSFactory::instance( getIntf() )->createOSGraphics( w, h );
  90.     m_pImage->fillRect( 0, 0, w, h, 0xffffd0 );
  91.     m_pImage->drawRect( 0, 0, w, h, 0x000000 );
  92.     m_pImage->drawBitmap( *pBmpTip, 0, 0, 5, 5, -1, -1, true );
  93.     delete pBmpTip;
  94. }
  95. void Tooltip::CmdShow::execute()
  96. {
  97.     if( m_pParent->m_pImage )
  98.     {
  99.         if( m_pParent->m_xPos == -1 )
  100.         {
  101.             // Get the mouse coordinates and the image size
  102.             OSFactory *pOsFactory = OSFactory::instance( m_pParent->getIntf() );
  103.             int x, y;
  104.             pOsFactory->getMousePos( x, y );
  105.             int scrWidth = pOsFactory->getScreenWidth();
  106.             int scrHeight = pOsFactory->getScreenHeight();
  107.             int w = m_pParent->m_pImage->getWidth();
  108.             int h = m_pParent->m_pImage->getHeight();
  109.             // Compute the position of the tooltip
  110.             x -= (w / 2 + 4);
  111.             y += (h + 5);
  112.             if( x + w > scrWidth )
  113.                 x -= (x + w - scrWidth);
  114.             else if( x < 0 )
  115.                 x = 0;
  116.             if( y + h > scrHeight )
  117.                 y -= (2 * h + 20);
  118.             m_pParent->m_xPos = x;
  119.             m_pParent->m_yPos = y;
  120.         }
  121.         // Show the tooltip window
  122.         m_pParent->m_pOsTooltip->show( m_pParent->m_xPos, m_pParent->m_yPos,
  123.                                    *(m_pParent->m_pImage) );
  124.     }
  125. }