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

多媒体

开发平台:

MultiPlatform

  1. /*****************************************************************************
  2.  * ctrl_slider.hpp
  3.  *****************************************************************************
  4.  * Copyright (C) 2003 VideoLAN
  5.  * $Id: ctrl_slider.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_SLIDER_HPP
  25. #define CTRL_SLIDER_HPP
  26. #include "ctrl_generic.hpp"
  27. #include "../utils/bezier.hpp"
  28. #include "../utils/fsm.hpp"
  29. #include "../utils/observer.hpp"
  30. class GenericBitmap;
  31. class OSGraphics;
  32. class VarPercent;
  33. /// Cursor of a slider
  34. class CtrlSliderCursor: public CtrlGeneric, public Observer<VarPercent>
  35. {
  36.     public:
  37.         /// Create a cursor with 3 images (which are NOT copied, be careful)
  38.         /// If pVisible is NULL, the control is always visible
  39.         CtrlSliderCursor( intf_thread_t *pIntf, const GenericBitmap &rBmpUp,
  40.                           const GenericBitmap &rBmpOver,
  41.                           const GenericBitmap &rBmpDown,
  42.                           const Bezier &rCurve, VarPercent &rVariable,
  43.                           VarBool *pVisible, const UString &rTooltip,
  44.                           const UString &rHelp );
  45.         virtual ~CtrlSliderCursor();
  46.         /// Handle an event
  47.         virtual void handleEvent( EvtGeneric &rEvent );
  48.         /// Check whether coordinates are inside the control
  49.         virtual bool mouseOver( int x, int y ) const;
  50.         /// Draw the control on the given graphics
  51.         virtual void draw( OSGraphics &rImage, int xDest, int yDest );
  52.         /// Get the text of the tooltip
  53.         virtual UString getTooltipText() const { return m_tooltip; }
  54.     private:
  55.         /// Finite state machine of the control
  56.         FSM m_fsm;
  57.         /// Variable associated to the cursor
  58.         VarPercent &m_rVariable;
  59.         /// Tooltip text
  60.         const UString m_tooltip;
  61.         /// Initial size of the control
  62.         int m_width, m_height;
  63.         /// Callback objects
  64.         Callback m_cmdOverDown;
  65.         Callback m_cmdDownOver;
  66.         Callback m_cmdOverUp;
  67.         Callback m_cmdUpOver;
  68.         Callback m_cmdMove;
  69.         Callback m_cmdScroll;
  70.         /// Position of the cursor
  71.         int m_xPosition, m_yPosition;
  72.         /// Last saved position of the cursor (stored as a percentage)
  73.         float m_lastPercentage;
  74.         /// Offset between the mouse pointer and the center of the cursor
  75.         int m_xOffset, m_yOffset;
  76.         /// The last received event
  77.         EvtGeneric *m_pEvt;
  78.         /// Images of the cursor in the differents states
  79.         OSGraphics *m_pImgUp, *m_pImgOver, *m_pImgDown;
  80.         /// Current image
  81.         OSGraphics *m_pImg;
  82.         /// Bezier curve of the slider
  83.         const Bezier &m_rCurve;
  84.         /// Callback functions
  85.         static void transOverDown( SkinObject *pCtrl );
  86.         static void transDownOver( SkinObject *pCtrl );
  87.         static void transOverUp( SkinObject *pCtrl );
  88.         static void transUpOver( SkinObject *pCtrl );
  89.         static void transMove( SkinObject *pCtrl );
  90.         static void transScroll( SkinObject *pCtrl );
  91.         /// Method called when the position variable is modified
  92.         virtual void onUpdate( Subject<VarPercent> &rVariable );
  93.         /// Methode to compute the resize factors
  94.         void getResizeFactors( float &rFactorX, float &rFactorY ) const;
  95. };
  96. /// Slider background
  97. class CtrlSliderBg: public CtrlGeneric
  98. {
  99.     public:
  100.         CtrlSliderBg( intf_thread_t *pIntf, CtrlSliderCursor &rCursor,
  101.                       const Bezier &rCurve, VarPercent &rVariable,
  102.                       int thickness, VarBool *pVisible, const UString &rHelp );
  103.         virtual ~CtrlSliderBg() {}
  104.         /// Tell whether the mouse is over the control
  105.         virtual bool mouseOver( int x, int y ) const;
  106.         /// Handle an event
  107.         virtual void handleEvent( EvtGeneric &rEvent );
  108.     private:
  109.         /// Cursor of the slider
  110.         CtrlSliderCursor &m_rCursor;
  111.         /// Variable associated to the slider
  112.         VarPercent &m_rVariable;
  113.         /// Thickness of the curve
  114.         int m_thickness;
  115.         /// Bezier curve of the slider
  116.         const Bezier &m_rCurve;
  117.         /// Initial size of the control
  118.         int m_width, m_height;
  119.         /// Methode to compute the resize factors
  120.         void getResizeFactors( float &rFactorX, float &rFactorY ) const;
  121. };
  122. #endif