ctrl_image.cpp

来自「VLC媒体播放程序」· C++ 代码 · 共 95 行

CPP
95
字号
/***************************************************************************** * ctrl_image.cpp ***************************************************************************** * Copyright (C) 2003 VideoLAN * $Id: ctrl_image.cpp,v 1.3 2004/02/29 16:49:55 asmax Exp $ * * Authors: Cyril Deguet     <asmax@via.ecp.fr> *          Olivier Teuli鑢e <ipkiss@via.ecp.fr> * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA. *****************************************************************************/#include "ctrl_image.hpp"#include "../commands/cmd_dialogs.hpp"#include "../events/evt_generic.hpp"#include "../src/os_factory.hpp"#include "../src/os_graphics.hpp"#include "../src/scaled_bitmap.hpp"#include "../utils/position.hpp"CtrlImage::CtrlImage( intf_thread_t *pIntf, const GenericBitmap &rBitmap,                      const UString &rHelp, VarBool *pVisible ):    CtrlFlat( pIntf, rHelp, pVisible ), m_rBitmap( rBitmap ){    OSFactory *pOsFactory = OSFactory::instance( pIntf );    // Create an initial unscaled image in the buffer    m_pImage = pOsFactory->createOSGraphics( rBitmap.getWidth(),                                             rBitmap.getHeight() );    m_pImage->drawBitmap( m_rBitmap );}CtrlImage::~CtrlImage(){    SKINS_DELETE( m_pImage );}void CtrlImage::handleEvent( EvtGeneric &rEvent ){    // No FSM for this simple transition    if( rEvent.getAsString() == "mouse:right:down:none" )    {        CmdDlgShowPopupMenu cmd( getIntf() );        cmd.execute();    }    else if( rEvent.getAsString() == "mouse:left:up:none" )    {        CmdDlgHidePopupMenu cmd( getIntf() );        cmd.execute();    }}bool CtrlImage::mouseOver( int x, int y ) const{    return m_pImage->hit( x, y );}void CtrlImage::draw( OSGraphics &rImage, int xDest, int yDest ){    const Position *pPos = getPosition();    if( pPos )    {        int width = pPos->getWidth();        int height = pPos->getHeight();        if( width != m_pImage->getWidth() || height != m_pImage->getHeight() )        {            OSFactory *pOsFactory = OSFactory::instance( getIntf() );            // Rescale the image with the actual size of the control            ScaledBitmap bmp( getIntf(), m_rBitmap, width, height );            SKINS_DELETE( m_pImage );            m_pImage = pOsFactory->createOSGraphics( width, height );            m_pImage->drawBitmap( bmp, 0, 0 );        }        rImage.drawGraphics( *m_pImage, 0, 0, xDest, yDest );    }}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?