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

多媒体

开发平台:

MultiPlatform

  1. /*****************************************************************************
  2.  * ctrl_button.hpp
  3.  *****************************************************************************
  4.  * Copyright (C) 2003 VideoLAN
  5.  * $Id: ctrl_button.hpp 6961 2004-03-05 17:34:23Z sam $
  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. #ifndef CTRL_BUTTON_HPP
  25. #define CTRL_BUTTON_HPP
  26. #include "ctrl_generic.hpp"
  27. #include "../utils/fsm.hpp"
  28. class GenericBitmap;
  29. class OSGraphics;
  30. class CmdGeneric;
  31. /// Base class for button controls
  32. class CtrlButton: public CtrlGeneric
  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.     private:
  51.         /// Finite state machine of the control
  52.         FSM m_fsm;
  53.         /// Command triggered by the button
  54.         CmdGeneric &m_rCommand;
  55.         /// Tooltip text
  56.         const UString m_tooltip;
  57.         /// Callbacks objects
  58.         Callback m_cmdUpOverDownOver;
  59.         Callback m_cmdDownOverUpOver;
  60.         Callback m_cmdDownOverDown;
  61.         Callback m_cmdDownDownOver;
  62.         Callback m_cmdUpOverUp;
  63.         Callback m_cmdUpUpOver;
  64.         Callback m_cmdDownUp;
  65.         Callback m_cmdUpHidden;
  66.         Callback m_cmdHiddenUp;
  67.         /// Images of the button in the different states
  68.         OSGraphics *m_pImgUp, *m_pImgOver, *m_pImgDown;
  69.         /// Current image
  70.         OSGraphics *m_pImg;
  71.         /// Callback functions
  72.         static void transUpOverDownOver( SkinObject *pCtrl );
  73.         static void transDownOverUpOver( SkinObject *pCtrl );
  74.         static void transDownOverDown( SkinObject *pCtrl );
  75.         static void transDownDownOver( SkinObject *pCtrl );
  76.         static void transUpOverUp( SkinObject *pCtrl );
  77.         static void transUpUpOver( SkinObject *pCtrl );
  78.         static void transDownUp( SkinObject *pCtrl );
  79.         static void transUpHidden( SkinObject *pCtrl );
  80.         static void transHiddenUp( SkinObject *pCtrl );
  81. };
  82. #endif