]> git.sesse.net Git - vlc/blob - modules/gui/skins2/src/skin_common.hpp
Compile fix
[vlc] / modules / gui / skins2 / src / skin_common.hpp
1 /*****************************************************************************
2  * skin_common.hpp
3  *****************************************************************************
4  * Copyright (C) 2003 the VideoLAN team
5  * $Id$
6  *
7  * Authors: Cyril Deguet     <asmax@via.ecp.fr>
8  *          Olivier Teulière <ipkiss@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 along
21  * with this program; if not, write to the Free Software Foundation, Inc.,
22  * 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
23  *****************************************************************************/
24
25 #ifdef HAVE_CONFIG_H
26 # include "config.h"
27 #endif
28
29 #ifndef SKIN_COMMON_HPP
30 #define SKIN_COMMON_HPP
31
32 #include <vlc_common.h>
33 #include <vlc_interface.h>
34 #include <vlc_charset.h>
35 #include <vlc_fs.h>
36
37 #include <string>
38 using namespace std;
39
40 class AsyncQueue;
41 class Logger;
42 class Dialogs;
43 class Interpreter;
44 class OSFactory;
45 class OSLoop;
46 class VarManager;
47 class VlcProc;
48 class VoutManager;
49 class Theme;
50 class ThemeRepository;
51
52 #ifndef M_PI
53 #   define M_PI 3.14159265358979323846
54 #endif
55
56 #ifdef _MSC_VER
57 // turn off 'warning C4355: 'this' : used in base member initializer list'
58 #pragma warning ( disable:4355 )
59 // turn off 'identifier was truncated to '255' characters in the debug info'
60 #pragma warning ( disable:4786 )
61 #endif
62
63
64 /// Wrapper around FromLocale, to avoid the need to call LocaleFree()
65 static inline string sFromLocale( const string &rLocale )
66 {
67     char *s = FromLocale( rLocale.c_str() );
68     string res = s;
69     LocaleFree( s );
70     return res;
71 }
72
73 #ifdef WIN32
74 /// Wrapper around FromWide, to avoid the need to call free()
75 static inline string sFromWide( const wstring &rWide )
76 {
77     char *s = FromWide( rWide.c_str() );
78     string res = s;
79     free( s );
80     return res;
81 }
82 #endif
83
84 /// Wrapper around ToLocale, to avoid the need to call LocaleFree()
85 static inline string sToLocale( const string &rUTF8 )
86 {
87     char *s = ToLocale( rUTF8.c_str() );
88     string res = s;
89     LocaleFree( s );
90     return res;
91 }
92
93
94 //---------------------------------------------------------------------------
95 // intf_sys_t: description and status of skin interface
96 //---------------------------------------------------------------------------
97 struct intf_sys_t
98 {
99     /// The input thread
100     input_thread_t *p_input;
101
102     /// The playlist thread
103     playlist_t *p_playlist;
104
105     /// Message bank subscription
106     msg_subscription_t *p_sub;
107
108     // "Singleton" objects: MUST be initialized to NULL !
109     /// Logger
110     Logger *p_logger;
111     /// Asynchronous command queue
112     AsyncQueue *p_queue;
113     /// Dialog provider
114     Dialogs *p_dialogs;
115     /// Script interpreter
116     Interpreter *p_interpreter;
117     /// Factory for OS specific classes
118     OSFactory *p_osFactory;
119     /// Main OS specific message loop
120     OSLoop *p_osLoop;
121     /// Variable manager
122     VarManager *p_varManager;
123     /// VLC state handler
124     VlcProc *p_vlcProc;
125     /// Vout manager
126     VoutManager *p_voutManager;
127     /// Theme repository
128     ThemeRepository *p_repository;
129
130     /// Current theme
131     Theme *p_theme;
132
133     /// synchronisation at start of interface
134     vlc_thread_t thread;
135     vlc_mutex_t  init_lock;
136     vlc_cond_t   init_wait;
137     bool         b_ready;
138
139     /// handle (vout windows)
140     void*        handle;
141     vlc_mutex_t  vout_lock;
142     vlc_cond_t   vout_wait;
143     bool         b_vout_ready;
144 };
145
146
147 /// Base class for all skin classes
148 class SkinObject
149 {
150 public:
151     SkinObject( intf_thread_t *pIntf ): m_pIntf( pIntf ) { }
152     virtual ~SkinObject() { }
153
154     /// Getter (public because it is used in C callbacks in the win32
155     /// interface)
156     intf_thread_t *getIntf() const { return m_pIntf; }
157
158 private:
159     intf_thread_t *m_pIntf;
160 };
161
162
163 #endif