]> git.sesse.net Git - vlc/blob - modules/gui/skins/controls/playlist.h
* repaired basic_skins
[vlc] / modules / gui / skins / controls / playlist.h
1 /*****************************************************************************
2  * playlist.h: Playlist control
3  *****************************************************************************
4  * Copyright (C) 2003 VideoLAN
5  * $Id: playlist.h,v 1.6 2003/05/31 23:23:59 ipkiss 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_PLAYLIST
28 #define VLC_SKIN_CONTROL_PLAYLIST
29
30 //--- GENERAL ---------------------------------------------------------------
31 #include <string>
32 using namespace std;
33
34 //---------------------------------------------------------------------------
35 class Event;
36 class Graphics;
37 class SkinWindow;
38 class SkinFont;
39 class Bezier;
40 class SkinRegion;
41
42 //---------------------------------------------------------------------------
43 #define MAX_PLAYLIST_SIZE 7
44
45 //---------------------------------------------------------------------------
46 class ControlPlayList : public GenericControl
47 {
48     private:
49         Event      *UpdateEvent;
50         SkinFont   *TextFont;
51         SkinFont   *PlayFont;
52         string      FontName;
53         string      PlayFontName;
54         bool        Enabled;
55         playlist_t *PlayList;
56
57         // Scroll slider
58         ControlSlider *Slider;
59         int StartIndex;
60
61         // Playlist text zone
62         int Margin;
63         int Column;
64         int Line;
65         int CaseHeight;
66
67         int CaseWidth;
68         int NumWidth;
69         int FileWidth;
70         int InfoWidth;
71         char Num[MAX_PLAYLIST_SIZE];
72
73         int *CaseRight;
74         int *CaseLeft;
75         int *CaseTextLeft;
76         int TextLeft;
77         int TextTop;
78         int TextHeight;
79         int TextWidth;
80         Bezier *TextCurve;
81         SkinRegion *TextClipRgn;
82
83         int  NumOfItems;
84         int  SelectColor;
85         bool *Select;
86
87         bool LongFileName;
88         char * GetFileName( int i );
89
90         // Calculate distance between two points
91         double Dist( int x1, int y1, int x2, int y2 );
92
93         // Text functions
94         void DrawAllCase( Graphics *dest, int x, int y, int w, int h );
95         void DrawCase( Graphics *dest, int i, int x, int y, int w, int h );
96         void RefreshList();
97         void RefreshAll();
98
99     public:
100         // Constructor
101         ControlPlayList( string id, bool visible, int width, int infowidth,
102                          string font, string playfont, int selcolor,
103                          double *ptx, double *pty, int nb, bool longfilename,
104                          string help, SkinWindow *Parent );
105
106         // Destructor
107         virtual ~ControlPlayList();
108
109         // initialization
110         virtual void Init();
111         virtual bool ProcessEvent( Event *evt );
112         void InitSliderCurve( double *ptx, double *pty, int nb,
113                               string scroll_up, string scroll_down );
114
115         // Draw control
116         virtual void Draw( int x, int y, int w, int h, Graphics *dest );
117
118         // Mouse events
119         virtual bool MouseUp( int x, int y, int button );
120         virtual bool MouseDown( int x, int y, int button );
121         virtual bool MouseMove( int x, int y, int button );
122         virtual bool MouseOver( int x, int y );
123         virtual bool MouseDblClick( int x, int y, int button );
124         virtual bool MouseScroll( int x, int y, int direction );
125         virtual bool ToolTipTest( int x, int y );
126
127         // Translate control
128         virtual void MoveRelative( int xOff, int yOff );
129 };
130 //---------------------------------------------------------------------------
131
132 #endif