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

midi

开发平台:

Unix_Linux

  1. /*****************************************************************************
  2.  * ctrl_radialslider.hpp
  3.  *****************************************************************************
  4.  * Copyright (C) 2003 the VideoLAN team
  5.  * $Id: 0c61445a96024afadb0621288f33f10e8bba4709 $
  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_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.         /// Get the type of control (custom RTTI)
  50.         virtual string getType() const { return "radial_slider"; }
  51.     private:
  52.         /// Finite state machine of the control
  53.         FSM m_fsm;
  54.         /// Number of sub-images in the slider image
  55.         int m_numImg;
  56.         /// Variable associated to the slider
  57.         VarPercent &m_rVariable;
  58.         /// Min and max angles of the button
  59.         float m_minAngle, m_maxAngle;
  60.         /// Position of the cursor
  61.         int m_position;
  62.         /// Size of an image
  63.         int m_width, m_height;
  64.         /// The last received event
  65.         EvtGeneric *m_pEvt;
  66.         /// Sequence of images
  67.         OSGraphics *m_pImgSeq;
  68.         /// Last saved position
  69.         int m_lastPos;
  70.         /// Callback objects
  71.         DEFINE_CALLBACK( CtrlRadialSlider, UpDown )
  72.         DEFINE_CALLBACK( CtrlRadialSlider, DownUp )
  73.         DEFINE_CALLBACK( CtrlRadialSlider, Move )
  74.         /// Method called when the observed variable is modified
  75.         virtual void onUpdate( Subject<VarPercent> &rVariable, void* );
  76.         /// Change the position of the cursor, with the given position of
  77.         /// the mouse (relative to the layout). Is blocking is true, the
  78.         /// the cursor cannot do more than a half turn
  79.         void setCursor( int posX, int posY, bool blocking );
  80. };
  81. #endif