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

多媒体

开发平台:

MultiPlatform

  1. /*****************************************************************************
  2.  * tooltip.cpp
  3.  *****************************************************************************
  4.  * Copyright (C) 2003 VideoLAN
  5.  * $Id: tooltip.cpp 6994 2004-03-07 11:47:50Z asmax $
  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. #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 )
  36. {
  37.     OSFactory *pOsFactory = OSFactory::instance( pIntf );
  38.     m_pTimer = pOsFactory->createOSTimer( Callback( this, &doShow ) );
  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.     if( m_pImage )
  49.     {
  50.         delete m_pImage;
  51.     }
  52. }
  53. void Tooltip::show()
  54. {
  55.     // (Re)start the timer
  56.     m_pTimer->start( m_delay, true );
  57. }
  58. void Tooltip::hide()
  59. {
  60.     m_pTimer->stop();
  61.     m_pOsTooltip->hide();
  62.     m_xPos = -1;
  63.     m_yPos = -1;
  64. }
  65. void Tooltip::onUpdate( Subject<VarText> &rVariable )
  66. {
  67.     // Redisplay the tooltip
  68.     displayText( ((VarText&)rVariable).get() );
  69. }
  70. void Tooltip::displayText( const UString &rText )
  71. {
  72.     // Rebuild the image
  73.     makeImage( rText );
  74.     // Redraw the window if it is already visible
  75.     if( m_xPos != -1 )
  76.     {
  77.         m_pOsTooltip->show( m_xPos, m_yPos, *m_pImage );
  78.     }
  79. }
  80. void Tooltip::makeImage( const UString &rText )
  81. {
  82.     // Render the text on a bitmap
  83.     GenericBitmap *pBmpTip = m_rFont.drawString( rText, 0 );
  84.     if( !pBmpTip )
  85.     {
  86.         return;
  87.     }
  88.     int w = pBmpTip->getWidth() + 10;
  89.     int h = m_rFont.getSize() + 8;
  90.     // Create the image of the tooltip
  91.     if( m_pImage )
  92.     {
  93.         delete m_pImage;
  94.     }
  95.     m_pImage = OSFactory::instance( getIntf() )->createOSGraphics( w, h );
  96.     m_pImage->fillRect( 0, 0, w, h, 0xffffd0 );
  97.     m_pImage->drawRect( 0, 0, w, h, 0x000000 );
  98.     m_pImage->drawBitmap( *pBmpTip, 0, 0, 5, 5 );
  99.     delete pBmpTip;
  100. }
  101. void Tooltip::doShow( SkinObject *pObj )
  102. {
  103.     Tooltip *pThis = (Tooltip*)pObj;
  104.     if( pThis->m_pImage )
  105.     {
  106.         if( pThis->m_xPos == -1 )
  107.         {
  108.             // Get the mouse coordinates and the image size
  109.             OSFactory *pOsFactory = OSFactory::instance( pThis->getIntf() );
  110.             int x, y;
  111.             pOsFactory->getMousePos( x, y );
  112.             int scrWidth = pOsFactory->getScreenWidth();
  113.             int scrHeight = pOsFactory->getScreenHeight();
  114.             int w = pThis->m_pImage->getWidth();
  115.             int h = pThis->m_pImage->getHeight();
  116.             // Compute the position of the tooltip
  117.             x -= (w / 2 + 4);
  118.             y += (h + 5);
  119.             if( x + w > scrWidth )
  120.                 x -= (x + w - scrWidth);
  121.             else if( x < 0 )
  122.                 x = 0;
  123.             if( y + h > scrHeight )
  124.                 y -= (2 * h + 20);
  125.             pThis->m_xPos = x;
  126.             pThis->m_yPos = y;
  127.         }
  128.         // Show the tooltip window
  129.         pThis->m_pOsTooltip->show( pThis->m_xPos, pThis->m_yPos,
  130.                                    *(pThis->m_pImage) );
  131.     }
  132. }