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

midi

开发平台:

Unix_Linux

  1. /*****************************************************************************
  2.  * ctrl_button.hpp
  3.  *****************************************************************************
  4.  * Copyright (C) 2003 the VideoLAN team
  5.  * $Id: 5d11290ebda151af03d9828df049ec284897239a $
  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. #ifndef CTRL_BUTTON_HPP
  25. #define CTRL_BUTTON_HPP
  26. #include "ctrl_generic.hpp"
  27. #include "../utils/fsm.hpp"
  28. #include "../src/anim_bitmap.hpp"
  29. class GenericBitmap;
  30. class CmdGeneric;
  31. /// Base class for button controls
  32. class CtrlButton: public CtrlGeneric, public Observer<AnimBitmap>
  33. {
  34.     public:
  35.         /// Create a button with 3 images
  36.         CtrlButton( intf_thread_t *pIntf, const GenericBitmap &rBmpUp,
  37.                     const GenericBitmap &rBmpOver,
  38.                     const GenericBitmap &rBmpDown,
  39.                     CmdGeneric &rCommand, const UString &rTooltip,
  40.                     const UString &rHelp, VarBool *pVisible );
  41.         virtual ~CtrlButton();
  42.         /// Handle an event
  43.         virtual void handleEvent( EvtGeneric &rEvent );
  44.         /// Check whether coordinates are inside the control
  45.         virtual bool mouseOver( int x, int y ) const;
  46.         /// Draw the control on the given graphics
  47.         virtual void draw( OSGraphics &rImage, int xDest, int yDest );
  48.         /// Get the text of the tooltip
  49.         virtual UString getTooltipText() const { return m_tooltip; }
  50.         /// Get the type of control (custom RTTI)
  51.         virtual string getType() const { return "button"; }
  52.     private:
  53.         /// Finite state machine of the control
  54.         FSM m_fsm;
  55.         /// Command triggered by the button
  56.         CmdGeneric &m_rCommand;
  57.         /// Tooltip text
  58.         const UString m_tooltip;
  59.         /// Images of the button in the different states
  60.         AnimBitmap m_imgUp, m_imgOver, m_imgDown;
  61.         /// Current image
  62.         AnimBitmap *m_pImg;
  63.         /// Callback objects
  64.         DEFINE_CALLBACK( CtrlButton, UpOverDownOver )
  65.         DEFINE_CALLBACK( CtrlButton, DownOverUpOver )
  66.         DEFINE_CALLBACK( CtrlButton, DownOverDown )
  67.         DEFINE_CALLBACK( CtrlButton, DownDownOver )
  68.         DEFINE_CALLBACK( CtrlButton, UpOverUp )
  69.         DEFINE_CALLBACK( CtrlButton, UpUpOver )
  70.         DEFINE_CALLBACK( CtrlButton, DownUp )
  71.         DEFINE_CALLBACK( CtrlButton, UpHidden )
  72.         DEFINE_CALLBACK( CtrlButton, HiddenUp )
  73.         /// Change the current image
  74.         void setImage( AnimBitmap *pImg );
  75.         /// Method called when an animated bitmap changes
  76.         virtual void onUpdate( Subject<AnimBitmap> &rBitmap, void* );
  77. };
  78. #endif