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

多媒体

开发平台:

MultiPlatform

  1. /*****************************************************************************
  2.  * ctrl_checkbox.hpp
  3.  *****************************************************************************
  4.  * Copyright (C) 2003 VideoLAN
  5.  * $Id: ctrl_checkbox.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_CHECKBOX_HPP
  25. #define CTRL_CHECKBOX_HPP
  26. #include "ctrl_generic.hpp"
  27. #include "../utils/fsm.hpp"
  28. #include "../utils/observer.hpp"
  29. class GenericBitmap;
  30. class OSGraphics;
  31. class CmdGeneric;
  32. /// Base class for checkbox controls
  33. class CtrlCheckbox: public CtrlGeneric
  34. {
  35.     public:
  36.         /// Create a checkbox with 6 images
  37.         CtrlCheckbox( intf_thread_t *pIntf,
  38.                       const GenericBitmap &rBmpUp1,
  39.                       const GenericBitmap &rBmpOver1,
  40.                       const GenericBitmap &rBmpDown1,
  41.                       const GenericBitmap &rBmpUp2,
  42.                       const GenericBitmap &rBmpOver2,
  43.                       const GenericBitmap &rBmpDown2,
  44.                       CmdGeneric &rCommand1, CmdGeneric &rCommand2,
  45.                       const UString &rTooltip1, const UString &rTooltip2,
  46.                       VarBool &rVariable, const UString &rHelp,
  47.                       VarBool *pVisible);
  48.         virtual ~CtrlCheckbox();
  49.         /// Handle an event
  50.         virtual void handleEvent( EvtGeneric &rEvent );
  51.         /// Check whether coordinates are inside the control
  52.         virtual bool mouseOver( int x, int y ) const;
  53.         /// Draw the control on the given graphics
  54.         virtual void draw( OSGraphics &rImage, int xDest, int yDest );
  55.         /// Get the text of the tooltip XXX
  56.         virtual UString getTooltipText() const { return *m_pTooltip; }
  57.     private:
  58.         /// Finite state machine of the control
  59.         FSM m_fsm;
  60.         /// Observed variable
  61.         VarBool &m_rVariable;
  62.         /// Commands for the 2 states
  63.         CmdGeneric &m_rCommand1, &m_rCommand2;
  64.         /// Current command
  65.         CmdGeneric *m_pCommand;
  66.         /// Tooltip texts for the 2 states
  67.         const UString m_tooltip1, m_tooltip2;
  68.         /// Current tooltip
  69.         const UString *m_pTooltip;
  70.         /// Callbacks objects
  71.         Callback m_cmdUpOverDownOver;
  72.         Callback m_cmdDownOverUpOver;
  73.         Callback m_cmdDownOverDown;
  74.         Callback m_cmdDownDownOver;
  75.         Callback m_cmdUpOverUp;
  76.         Callback m_cmdUpUpOver;
  77.         Callback m_cmdDownUp;
  78.         Callback m_cmdUpHidden;
  79.         Callback m_cmdHiddenUp;
  80.         /// Images of the checkbox in the different states
  81.         OSGraphics *m_pImgUp1, *m_pImgOver1, *m_pImgDown1;
  82.         OSGraphics *m_pImgUp2, *m_pImgOver2, *m_pImgDown2;
  83.         /// Current set of images (pointing to 1 or 2)
  84.         /// In fact, we consider here that a checkbox acts like 2 buttons, in a
  85.         /// symetric way; this is a small trick to avoid multiplicating the
  86.         /// callbacks (and it could be extended easily to support 3 buttons or
  87.         /// more...)
  88.         OSGraphics *m_pImgUp, *m_pImgOver, *m_pImgDown;
  89.         /// Current image
  90.         OSGraphics *m_pImgCurrent;
  91.         /// Callback functions
  92.         static void transUpOverDownOver( SkinObject *pCtrl );
  93.         static void transDownOverUpOver( SkinObject *pCtrl );
  94.         static void transDownOverDown( SkinObject *pCtrl );
  95.         static void transDownDownOver( SkinObject *pCtrl );
  96.         static void transUpOverUp( SkinObject *pCtrl );
  97.         static void transUpUpOver( SkinObject *pCtrl );
  98.         static void transDownUp( SkinObject *pCtrl );
  99.         static void transUpHidden( SkinObject *pCtrl );
  100.         static void transHiddenUp( SkinObject *pCtrl );
  101.         /// Method called when the observed variable is modified
  102.         virtual void onVarBoolUpdate( VarBool &rVariable );
  103.         /// Helper function to update the current state of images
  104.         void changeButton();
  105. };
  106. #endif