]> git.sesse.net Git - vlc/blob - modules/gui/skins/controls/slider.h
* changed "Window" into "SkinWindow" to prepare X11 port
[vlc] / modules / gui / skins / controls / slider.h
1 /*****************************************************************************
2  * slider.h: Slider control
3  *****************************************************************************
4  * Copyright (C) 2003 VideoLAN
5  * $Id: slider.h,v 1.4 2003/04/21 21:51:16 asmax Exp $
6  *
7  * Authors: Olivier Teulière <ipkiss@via.ecp.fr>
8  *          Emmanuel Puig    <karibu@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,
23  * USA.
24  *****************************************************************************/
25
26
27 #ifndef VLC_SKIN_CONTROL_SLIDER
28 #define VLC_SKIN_CONTROL_SLIDER
29
30 //--- GENERAL ---------------------------------------------------------------
31 #include <string>
32 using namespace std;
33
34 //---------------------------------------------------------------------------
35 class Event;
36 class Graphics;
37 class SkinWindow;
38 class Bezier;
39 class Region;
40
41 //---------------------------------------------------------------------------
42 class ControlSlider : public GenericControl
43 {
44     private:
45         string Type;
46         string cursorUp;
47         string cursorDown;
48         Bezier *Curve;
49         bool Selected;
50         Event *UpdateEvent;
51         bool Enabled;       // Is the button active
52
53         // Cursor properties
54         int CWidth;         // Width of cursor
55         int CHeight;        // Height of cursor
56         int * CursorX;      // Array of x coordinates of slider points
57         int * CursorY;      // Array of y coordinates of slider points
58         Region *HitRgn;     // Active region for mouse events
59         int LastRefreshTime;
60
61         // Slider properties
62         int SliderRange;    // Should stay to SLIDER_RANGE
63         int MaxValue;       // Maximum value of the slider
64         int Value;          // Value of slider
65
66         // ToolTip text
67         string BaseToolTipText;
68         string FullToolTipText;
69
70         int FindNearestPoint( int x, int y );
71
72         // Move cursor (whether SLIDER_MAX in skin_common.h)
73         void MoveCursor( int newValue );
74
75
76     public:
77         // Constructor
78         ControlSlider( string id, bool visible, string type, string cursorUp,
79             string cursorDown, double *ptx, double *pty, int nb,
80             string tooltiptext, string help, SkinWindow *Parent );
81
82         // Destructor
83         virtual ~ControlSlider();
84
85         // initialization
86         virtual void Init();
87         virtual bool ProcessEvent( Event *evt );
88
89         // Draw control
90         virtual void Draw( int x, int y, int w, int h, Graphics *dest );
91
92         // Mouse events
93         virtual bool MouseUp( int x, int y, int button );
94         virtual bool MouseDown( int x, int y, int button );
95         virtual bool MouseMove( int x, int y, int button );
96         virtual bool MouseOver( int x, int y );
97         virtual bool ToolTipTest( int x, int y );
98         virtual bool MouseScroll( int x, int y, int direction );
99
100         // Slider calls
101         void SetCursorPosition( long Pos );
102         long GetCursorPosition();
103
104         // Enabling control
105         virtual void Enable( Event *event, bool enabled );
106
107         // Translate control
108         virtual void MoveRelative( int xOff, int yOff );
109
110         // Change SliderRange (do not use if not sure)
111         void ChangeSliderRange( int NewRange );
112 };
113 //---------------------------------------------------------------------------
114
115 #endif