]> git.sesse.net Git - vlc/blob - modules/gui/skins/win32/win32_theme.h
bbba540cf7a572f865a14ca311e45cccd1ade5c0
[vlc] / modules / gui / skins / win32 / win32_theme.h
1 /*****************************************************************************
2  * win32_theme.h: Win32 implementation of the Theme class
3  *****************************************************************************
4  * Copyright (C) 2003 VideoLAN
5  * $Id: win32_theme.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 #ifdef WIN32
27
28 #ifndef VLC_SKIN_WIN32_THEME
29 #define VLC_SKIN_WIN32_THEME
30
31 //--- GENERAL ---------------------------------------------------------------
32 #include <string>
33 using namespace std;
34
35 //--- WIN32 -----------------------------------------------------------------
36 #include <shellapi.h>
37
38 //---------------------------------------------------------------------------
39 struct intf_thread_t;
40 class SkinWindow;
41 class EventBank;
42 class BitmapBank;
43 class FontBank;
44
45 //---------------------------------------------------------------------------
46 class Win32Theme : public Theme
47 {
48     protected:
49         // Handles
50         HINSTANCE hinst;
51         HWND ParentWindow;
52
53         // System tray icon
54         NOTIFYICONDATA TrayIcon;
55         HMENU SysMenu;
56
57     public:
58         // Constructor
59         Win32Theme( intf_thread_t *_p_intf );
60         virtual void OnLoadTheme();
61
62         // Destructor
63         virtual ~Win32Theme();
64
65         // Specific windows methods
66         HINSTANCE getInstance()       { return hinst; }
67         HWND      GetParentWindow()   { return ParentWindow; }
68
69         // !!!
70         virtual void AddWindow( string name, int x, int y, bool visible,
71             int fadetime, int alpha, int movealpha, bool dragdrop );
72         virtual void ChangeClientWindowName( string name );
73
74         // Taskbar && system tray
75         virtual void AddSystemMenu( string name, Event *event );
76         virtual void ChangeTray();
77         virtual void ChangeTaskbar();
78         HMENU GetSysMenu() { return SysMenu; }
79 };
80 //---------------------------------------------------------------------------
81
82
83 #endif
84
85 #endif