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

多媒体

开发平台:

MultiPlatform

  1. /*****************************************************************************
  2.  * ctrl_image.cpp
  3.  *****************************************************************************
  4.  * Copyright (C) 2003 VideoLAN
  5.  * $Id: ctrl_image.cpp 8073 2004-06-26 18:40:54Z gbazin $
  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 "ctrl_image.hpp"
  25. #include "../commands/cmd_dialogs.hpp"
  26. #include "../events/evt_generic.hpp"
  27. #include "../src/os_factory.hpp"
  28. #include "../src/os_graphics.hpp"
  29. #include "../src/scaled_bitmap.hpp"
  30. #include "../utils/position.hpp"
  31. CtrlImage::CtrlImage( intf_thread_t *pIntf, const GenericBitmap &rBitmap,
  32.                       const UString &rHelp, VarBool *pVisible ):
  33.     CtrlFlat( pIntf, rHelp, pVisible ), m_rBitmap( rBitmap )
  34. {
  35.     OSFactory *pOsFactory = OSFactory::instance( pIntf );
  36.     // Create an initial unscaled image in the buffer
  37.     m_pImage = pOsFactory->createOSGraphics( rBitmap.getWidth(),
  38.                                              rBitmap.getHeight() );
  39.     m_pImage->drawBitmap( m_rBitmap );
  40. }
  41. CtrlImage::~CtrlImage()
  42. {
  43.     SKINS_DELETE( m_pImage );
  44. }
  45. void CtrlImage::handleEvent( EvtGeneric &rEvent )
  46. {
  47.     // No FSM for this simple transition
  48.     if( rEvent.getAsString() == "mouse:right:up:none" )
  49.     {
  50.         CmdDlgShowPopupMenu cmd( getIntf() );
  51.         cmd.execute();
  52.     }
  53.     else if( rEvent.getAsString() == "mouse:left:up:none" )
  54.     {
  55.         CmdDlgHidePopupMenu cmd( getIntf() );
  56.         cmd.execute();
  57.     }
  58. }
  59. bool CtrlImage::mouseOver( int x, int y ) const
  60. {
  61.     return m_pImage->hit( x, y );
  62. }
  63. void CtrlImage::draw( OSGraphics &rImage, int xDest, int yDest )
  64. {
  65.     const Position *pPos = getPosition();
  66.     if( pPos )
  67.     {
  68.         int width = pPos->getWidth();
  69.         int height = pPos->getHeight();
  70.         if( width != m_pImage->getWidth() || height != m_pImage->getHeight() )
  71.         {
  72.             OSFactory *pOsFactory = OSFactory::instance( getIntf() );
  73.             // Rescale the image with the actual size of the control
  74.             ScaledBitmap bmp( getIntf(), m_rBitmap, width, height );
  75.             SKINS_DELETE( m_pImage );
  76.             m_pImage = pOsFactory->createOSGraphics( width, height );
  77.             m_pImage->drawBitmap( bmp, 0, 0 );
  78.         }
  79.         rImage.drawGraphics( *m_pImage, 0, 0, xDest, yDest );
  80.     }
  81. }