]> git.sesse.net Git - vlc/blob - modules/gui/skins/src/theme.h
88fb7c3e0bdad96a7d962a69a868f5bf7c21db8b
[vlc] / modules / gui / skins / src / theme.h
1 /*****************************************************************************
2  * theme.h: Theme class
3  *****************************************************************************
4  * Copyright (C) 2003 VideoLAN
5  * $Id: theme.h,v 1.5 2003/06/22 12:46:49 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_THEME
28 #define VLC_SKIN_THEME
29
30 //--- GENERAL ---------------------------------------------------------------
31 #include <list>
32 #include <string>
33 using namespace std;
34
35 //---------------------------------------------------------------------------
36 struct intf_thread_t;
37 class SkinWindow;
38 class EventBank;
39 class BitmapBank;
40 class FontBank;
41 class Event;
42 class OffSetBank;
43
44 //---------------------------------------------------------------------------
45 class Theme
46 {
47     private:
48
49     protected:
50         int  Magnet;
51         intf_thread_t *p_intf;
52
53         bool ShowInTray;
54         bool ShowInTaskbar;
55
56     public:
57         // Constructors
58         Theme( intf_thread_t *_p_intf );
59         void StartTheme( int magnet );
60
61         // Destructor
62         virtual ~Theme();
63         virtual void OnLoadTheme() = 0;
64
65         // Initialization
66         void InitTheme();
67         void InitWindows();
68         void InitControls();
69         void ShowTheme();
70
71         virtual void AddWindow( string name, int x, int y, bool visible,
72             int fadetime, int alpha, int movealpha, bool dragdrop ) = 0;
73         virtual void ChangeClientWindowName( string name ) = 0;
74
75         SkinWindow * GetWindow( string name );
76
77         // Banks
78         BitmapBank *BmpBank;
79         EventBank  *EvtBank;
80         FontBank   *FntBank;
81         OffSetBank *OffBank;
82
83         // List of the windows of the skin
84         list<SkinWindow *> WindowList;
85
86         // Magetism
87         void HangToAnchors( SkinWindow *wnd, int &x, int &y, bool init = false );
88         bool MoveSkinMagnet( SkinWindow *wnd, int left, int top );
89         void MoveSkin( SkinWindow *wnd, int left, int top );
90         void CheckAnchors();
91
92         bool ConstructPlaylist;
93
94         // Config file treatment
95         void LoadConfig();
96         void SaveConfig();
97
98         // Taskbar && system tray
99         void CreateSystemMenu();
100         virtual void AddSystemMenu( string name, Event *event ) = 0;
101         virtual void ChangeTray() = 0;
102         virtual void ChangeTaskbar() = 0;
103
104 };
105 //---------------------------------------------------------------------------
106
107 #endif
108