]> git.sesse.net Git - vlc/blob - modules/gui/skins/src/theme.h
* modules/gui/skins/*: Added a "playondrop" attribute to the "Window"
[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.6 2003/10/22 19:12:56 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_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,
73             bool playondrop ) = 0;
74         virtual void ChangeClientWindowName( string name ) = 0;
75
76         SkinWindow * GetWindow( string name );
77
78         // Banks
79         BitmapBank *BmpBank;
80         EventBank  *EvtBank;
81         FontBank   *FntBank;
82         OffSetBank *OffBank;
83
84         // List of the windows of the skin
85         list<SkinWindow *> WindowList;
86
87         // Magetism
88         void HangToAnchors( SkinWindow *wnd, int &x, int &y, bool init = false );
89         bool MoveSkinMagnet( SkinWindow *wnd, int left, int top );
90         void MoveSkin( SkinWindow *wnd, int left, int top );
91         void CheckAnchors();
92
93         bool ConstructPlaylist;
94
95         // Config file treatment
96         void LoadConfig();
97         void SaveConfig();
98
99         // Taskbar && system tray
100         void CreateSystemMenu();
101         virtual void AddSystemMenu( string name, Event *event ) = 0;
102         virtual void ChangeTray() = 0;
103         virtual void ChangeTaskbar() = 0;
104
105 };
106 //---------------------------------------------------------------------------
107
108 #endif
109