]> git.sesse.net Git - vlc/blob - modules/gui/skins/src/skin_common.h
* now selection method in the playlist depends on the state of the
[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.17 2003/06/09 14:04:20 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 class Theme;
34 class Dialogs;
35 class wxMenu;
36 class wxIcon;
37
38 #ifdef X11_SKINS
39 #include <X11/Xlib.h>
40 #endif
41
42 // For mouse events FIXME: should be elsewhere?
43 #define MOUSE_LEFT (1<<0)
44 #define MOUSE_RIGHT (1<<1)
45 #define KEY_CTRL (1<<2)
46
47
48 //---------------------------------------------------------------------------
49 // intf_sys_t: description and status of skin interface
50 //---------------------------------------------------------------------------
51 struct intf_sys_t
52 {
53     // Pointer to the theme main class
54     Theme *p_theme;
55     char *p_new_theme_file;
56
57     // The input thread
58     input_thread_t *p_input;
59
60     // The playlist thread
61     playlist_t *p_playlist;
62
63     // Check if thread is closing
64     int  i_close_status;
65     bool b_all_win_closed;
66
67     // Message bank subscription
68     msg_subscription_t *p_sub;
69
70     // Interface status
71     int i_index;        // Set which file is being played
72     int i_size;         // Size of playlist;
73
74 #ifndef BASIC_SKINS
75     // Interface dialogs
76     Dialogs *p_dialogs;
77
78     // Popup menu
79     vlc_bool_t b_popup_change;
80     wxMenu     *p_popup_menu;
81 #endif
82
83 #ifndef BASIC_SKINS
84     wxIcon      *p_icon;
85 #endif
86
87 #ifdef X11_SKINS
88     Display *display;
89     Window mainWin;    // Window which receives "broadcast" events
90     vlc_mutex_t xlock;
91 #endif
92
93 #ifdef WIN32
94     // Interface thread id used to post broadcast messages
95     DWORD dwThreadId;
96
97     // We dynamically load msimg32.dll to get a pointer to TransparentBlt()
98     HINSTANCE h_msimg32_dll;
99     BOOL (WINAPI *TransparentBlt)( HDC,int,int,int,int,HDC,int,
100                                    int,int,int,UINT );
101     // Idem for user32.dll and SetLayeredWindowAttributes()
102     HINSTANCE h_user32_dll;
103     BOOL (WINAPI *SetLayeredWindowAttributes)( HWND,COLORREF,BYTE,DWORD );
104 #endif
105
106 };
107
108 #endif