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

midi

开发平台:

Unix_Linux

  1. /*****************************************************************************
  2.  * ctrl_image.cpp
  3.  *****************************************************************************
  4.  * Copyright (C) 2003 the VideoLAN team
  5.  * $Id: 18bc2af637be78b91785ca884d8927d291dd5376 $
  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 "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.                       CmdGeneric &rCommand, resize_t resizeMethod,
  33.                       const UString &rHelp, VarBool *pVisible ):
  34.     CtrlFlat( pIntf, rHelp, pVisible ), m_rBitmap( rBitmap ),
  35.     m_rCommand( rCommand ), m_resizeMethod( resizeMethod )
  36. {
  37.     OSFactory *pOsFactory = OSFactory::instance( pIntf );
  38.     // Create an initial unscaled image in the buffer
  39.     m_pImage = pOsFactory->createOSGraphics( rBitmap.getWidth(),
  40.                                              rBitmap.getHeight() );
  41.     m_pImage->drawBitmap( m_rBitmap );
  42. }
  43. CtrlImage::~CtrlImage()
  44. {
  45.     SKINS_DELETE( m_pImage );
  46. }
  47. void CtrlImage::handleEvent( EvtGeneric &rEvent )
  48. {
  49.     // No FSM for this simple transition
  50.     if( rEvent.getAsString() == "mouse:right:up:none" )
  51.     {
  52.         CmdDlgShowPopupMenu cmd( getIntf() );
  53.         cmd.execute();
  54.     }
  55.     else if( rEvent.getAsString() == "mouse:left:up:none" )
  56.     {
  57.         CmdDlgHidePopupMenu cmd( getIntf() );
  58.         cmd.execute();
  59.     }
  60.     else if( rEvent.getAsString() == "mouse:left:dblclick:none" )
  61.     {
  62.         m_rCommand.execute();
  63.     }
  64. }
  65. bool CtrlImage::mouseOver( int x, int y ) const
  66. {
  67.     if( m_resizeMethod == kMosaic &&
  68.         x >= 0 && x < getPosition()->getWidth() &&
  69.         y >= 0 && y < getPosition()->getHeight() )
  70.     {
  71.         // In mosaic mode, convert the coordinates to make them fit to the
  72.         // size of the original image
  73.         return m_pImage->hit( x % m_pImage->getWidth(),
  74.                               y % m_pImage->getHeight() );
  75.     }
  76.     else
  77.     {
  78.         return m_pImage->hit( x, y );
  79.     }
  80. }
  81. void CtrlImage::draw( OSGraphics &rImage, int xDest, int yDest )
  82. {
  83.     const Position *pPos = getPosition();
  84.     if( pPos )
  85.     {
  86.         int width = pPos->getWidth();
  87.         int height = pPos->getHeight();
  88.         if( m_resizeMethod == kScale )
  89.         {
  90.             // Use scaling method
  91.             if( width > 0 && height > 0 )
  92.             {
  93.                 if( width != m_pImage->getWidth() ||
  94.                     height != m_pImage->getHeight() )
  95.                 {
  96.                     OSFactory *pOsFactory = OSFactory::instance( getIntf() );
  97.                     // Rescale the image with the actual size of the control
  98.                     ScaledBitmap bmp( getIntf(), m_rBitmap, width, height );
  99.                     SKINS_DELETE( m_pImage );
  100.                     m_pImage = pOsFactory->createOSGraphics( width, height );
  101.                     m_pImage->drawBitmap( bmp, 0, 0 );
  102.                 }
  103.                 rImage.drawGraphics( *m_pImage, 0, 0, xDest, yDest );
  104.             }
  105.         }
  106.         else
  107.         {
  108.             // Use mosaic method
  109.             while( width > 0 )
  110.             {
  111.                 int curWidth = __MIN( width, m_pImage->getWidth() );
  112.                 height = pPos->getHeight();
  113.                 int curYDest = yDest;
  114.                 while( height > 0 )
  115.                 {
  116.                     int curHeight = __MIN( height, m_pImage->getHeight() );
  117.                     rImage.drawGraphics( *m_pImage, 0, 0, xDest, curYDest,
  118.                                          curWidth, curHeight );
  119.                     curYDest += curHeight;
  120.                     height -= m_pImage->getHeight();
  121.                 }
  122.                 xDest += curWidth;
  123.                 width -= m_pImage->getWidth();
  124.             }
  125.         }
  126.     }
  127. }