]> git.sesse.net Git - vlc/blob - modules/gui/skins/src/skin_common.h
* modules/gui/skins/x11/x11_api.cpp: fixed OSAPI_GetScreenSize
[vlc] / modules / gui / skins / src / skin_common.h
1 /*****************************************************************************
2  * skin_common.h: Private Skin interface description
3  *****************************************************************************
4  * Copyright (C) 2003 VideoLAN
5  * $Id: skin_common.h,v 1.12 2003/06/01 22:11:24 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 SKIN_COMMON_H
28 #define SKIN_COMMON_H
29
30 #define SLIDER_RANGE        1048576  // 1024*1024
31 #define DEFAULT_SKIN_FILE   "skins/default.vlt"
32
33
34 class Theme;
35 class OpenDialog;
36 class Messages;
37 class SoutDialog;
38 class PrefsDialog;
39 class FileInfo;
40 #ifndef BASIC_SKINS
41 class wxIcon;
42 #endif
43 #ifdef WIN32
44 class ExitTimer;
45 #endif
46
47 #ifdef X11_SKINS
48 #include <X11/Xlib.h>
49 #endif
50
51 //---------------------------------------------------------------------------
52 // intf_sys_t: description and status of skin interface
53 //---------------------------------------------------------------------------
54 struct intf_sys_t
55 {
56     // Pointer to the theme main class
57     Theme *p_theme;
58     char *p_new_theme_file;
59
60     // The input thread
61     input_thread_t *p_input;
62
63     // The playlist thread
64     playlist_t *p_playlist;
65
66     // Check if thread is closing
67     int  i_close_status;
68     bool b_all_win_closed;
69
70     // Message bank subscription
71     msg_subscription_t *p_sub;
72
73     // Interface status
74     int i_index;        // Set which file is being played
75     int i_size;         // Size of playlist;
76
77 #ifndef BASIC_SKINS
78     wxIcon *p_icon;
79
80     // Dialogs
81     OpenDialog  *OpenDlg;
82     Messages    *MessagesDlg;
83     SoutDialog  *SoutDlg;
84     PrefsDialog *PrefsDlg;
85     FileInfo    *InfoDlg;
86 #endif
87
88 #ifdef X11_SKINS
89     Display *display;
90     Window mainWin;    // Window which receives "broadcast" events
91     vlc_mutex_t xlock;
92 #endif
93
94 #ifdef WIN32
95 #ifndef BASIC_SKINS
96     bool b_wx_die;
97     ExitTimer *p_kludgy_timer;
98 #endif
99
100     // We dynamically load msimg32.dll to get a pointer to TransparentBlt()
101     HINSTANCE h_msimg32_dll;
102     BOOL (WINAPI *TransparentBlt)( HDC,int,int,int,int,HDC,int,
103                                    int,int,int,UINT );
104     // Idem for user32.dll and SetLayeredWindowAttributes()
105     HINSTANCE h_user32_dll;
106     BOOL (WINAPI *SetLayeredWindowAttributes)( HWND,COLORREF,BYTE,DWORD );
107 #endif
108
109 };
110
111 #endif
112
113