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

多媒体

开发平台:

MultiPlatform

  1. /*****************************************************************************
  2.  * ctrl_radialslider.hpp
  3.  *****************************************************************************
  4.  * Copyright (C) 2003 VideoLAN
  5.  * $Id: ctrl_radialslider.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_RADIALSLIDER_HPP
  25. #define CTRL_RADIALSLIDER_HPP
  26. #include "ctrl_generic.hpp"
  27. #include "../utils/fsm.hpp"
  28. #include "../utils/observer.hpp"
  29. class GenericBitmap;
  30. class OSGraphics;
  31. class VarPercent;
  32. /// Radial slider
  33. class CtrlRadialSlider: public CtrlGeneric, public Observer<VarPercent>
  34. {
  35.     public:
  36.         /// Create a radial slider with the given image, which must be
  37.         /// composed of numImg subimages of the same size
  38.         CtrlRadialSlider( intf_thread_t *pIntf, const GenericBitmap &rBmpSeq,
  39.                           int numImg, VarPercent &rVariable, float minAngle,
  40.                           float maxAngle, const UString &rHelp,
  41.                           VarBool *pVisible );
  42.         virtual ~CtrlRadialSlider();
  43.         /// Handle an event
  44.         virtual void handleEvent( EvtGeneric &rEvent );
  45.         /// Check whether coordinates are inside the control
  46.         virtual bool mouseOver( int x, int y ) const;
  47.         /// Draw the control on the given graphics
  48.         virtual void draw( OSGraphics &rImage, int xDest, int yDest );
  49.     private:
  50.         /// Finite state machine of the control
  51.         FSM m_fsm;
  52.         /// Number of sub-images in the slider image
  53.         int m_numImg;
  54.         /// Variable associated to the slider
  55.         VarPercent &m_rVariable;
  56.         /// Min and max angles of the button
  57.         float m_minAngle, m_maxAngle;
  58.         /// Callbacks objects
  59.         Callback m_cmdUpDown;
  60.         Callback m_cmdDownUp;
  61.         Callback m_cmdMove;
  62.         /// Position of the cursor
  63.         int m_position;
  64.         /// Size of an image
  65.         int m_width, m_height;
  66.         /// The last received event
  67.         EvtGeneric *m_pEvt;
  68.         /// Sequence of images
  69.         OSGraphics *m_pImgSeq;
  70.         /// Last saved position
  71.         int m_lastPos;
  72.         /// Callback functions
  73.         static void transUpDown( SkinObject *pCtrl );
  74.         static void transDownUp( SkinObject *pCtrl );
  75.         static void transMove( SkinObject *pCtrl );
  76.         /// Method called when the observed variable is modified
  77.         virtual void onUpdate( Subject<VarPercent> &rVariable );
  78.         /// Change the position of the cursor, with the given position of
  79.         /// the mouse (relative to the layout). Is blocking is true, the
  80.         /// the cursor cannot do more than a half turn
  81.         void setCursor( int posX, int posY, bool blocking );
  82. };
  83. #endif