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

midi

开发平台:

Unix_Linux

  1. /*****************************************************************************
  2.  * ctrl_slider.hpp
  3.  *****************************************************************************
  4.  * Copyright (C) 2003 the VideoLAN team
  5.  * $Id: bfa7c58e152f664c5ad7c461fbed62456723d6c6 $
  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_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.         /// Get the type of control (custom RTTI)
  55.         virtual string getType() const { return "slider_cursor"; }
  56.     private:
  57.         /// Finite state machine of the control
  58.         FSM m_fsm;
  59.         /// Variable associated to the cursor
  60.         VarPercent &m_rVariable;
  61.         /// Tooltip text
  62.         const UString m_tooltip;
  63.         /// Initial size of the control
  64.         int m_width, m_height;
  65.         /// Position of the cursor
  66.         int m_xPosition, m_yPosition;
  67.         /// Callback objects
  68.         DEFINE_CALLBACK( CtrlSliderCursor, OverDown )
  69.         DEFINE_CALLBACK( CtrlSliderCursor, DownOver )
  70.         DEFINE_CALLBACK( CtrlSliderCursor, OverUp )
  71.         DEFINE_CALLBACK( CtrlSliderCursor, UpOver )
  72.         DEFINE_CALLBACK( CtrlSliderCursor, Move )
  73.         DEFINE_CALLBACK( CtrlSliderCursor, Scroll )
  74.         /// Last saved position of the cursor (stored as a percentage)
  75.         float m_lastPercentage;
  76.         /// Offset between the mouse pointer and the center of the cursor
  77.         int m_xOffset, m_yOffset;
  78.         /// The last received event
  79.         EvtGeneric *m_pEvt;
  80.         /// Images of the cursor in the differents states
  81.         OSGraphics *m_pImgUp, *m_pImgOver, *m_pImgDown;
  82.         /// Current image
  83.         OSGraphics *m_pImg;
  84.         /// Bezier curve of the slider
  85.         const Bezier &m_rCurve;
  86.         /// Method called when the position variable is modified
  87.         virtual void onUpdate( Subject<VarPercent> &rVariable, void * );
  88.         /// Method to compute the resize factors
  89.         void getResizeFactors( float &rFactorX, float &rFactorY ) const;
  90.         /// Call notifyLayout
  91.         void refreshLayout();
  92. };
  93. /// Slider background
  94. class CtrlSliderBg: public CtrlGeneric, public Observer<VarPercent>
  95. {
  96.     public:
  97.         CtrlSliderBg( intf_thread_t *pIntf,
  98.                       const Bezier &rCurve, VarPercent &rVariable,
  99.                       int thickness, GenericBitmap *pBackground, int nbHoriz,
  100.                       int nbVert, int padHoriz, int padVert, VarBool *pVisible,
  101.                       const UString &rHelp );
  102.         virtual ~CtrlSliderBg();
  103.         /// Tell whether the mouse is over the control
  104.         virtual bool mouseOver( int x, int y ) const;
  105.         /// Draw the control on the given graphics
  106.         virtual void draw( OSGraphics &rImage, int xDest, int yDest );
  107.         /// Handle an event
  108.         virtual void handleEvent( EvtGeneric &rEvent );
  109.         /// Method called when the control is resized
  110.         virtual void onResize();
  111.         /// Get the type of control (custom RTTI)
  112.         virtual string getType() const { return "slider_bg"; }
  113.         /// Associate a cursor to this background
  114.         void associateCursor( CtrlSliderCursor &rCursor );
  115.     private:
  116.         /// Cursor of the slider
  117.         CtrlSliderCursor *m_pCursor;
  118.         /// Variable associated to the slider
  119.         VarPercent &m_rVariable;
  120.         /// Thickness of the curve
  121.         int m_thickness;
  122.         /// Bezier curve of the slider
  123.         const Bezier &m_rCurve;
  124.         /// Initial size of the control
  125.         int m_width, m_height;
  126.         /// Background image sequence (optional)
  127.         GenericBitmap *m_pImgSeq;
  128.         /// Number of images in the background bitmap
  129.         int m_nbHoriz, m_nbVert;
  130.         /// Number of pixels between two images
  131.         int m_padHoriz, m_padVert;
  132.         /// Size of a background image
  133.         int m_bgWidth, m_bgHeight;
  134.         /// Index of the current background image
  135.         int m_position;
  136.         /// Method called when the observed variable is modified
  137.         virtual void onUpdate( Subject<VarPercent> &rVariable, void* );
  138.         /// Method to compute the resize factors
  139.         void getResizeFactors( float &rFactorX, float &rFactorY ) const;
  140. };
  141. #endif