]> git.sesse.net Git - vlc/blob - modules/gui/skins2/src/skin_common.hpp
skins2: don't stop the whole vlc instance when skins2 fails to initialize
[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 ArtManager;
50 class Theme;
51 class ThemeRepository;
52
53 #ifndef M_PI
54 #   define M_PI 3.14159265358979323846
55 #endif
56
57 #ifdef _MSC_VER
58 // turn off 'warning C4355: 'this' : used in base member initializer list'
59 #pragma warning ( disable:4355 )
60 // turn off 'identifier was truncated to '255' characters in the debug info'
61 #pragma warning ( disable:4786 )
62 #endif
63
64 #ifdef X11_SKINS
65 typedef uint32_t vlc_wnd_type;
66 #else
67 typedef void* vlc_wnd_type;
68 #endif
69
70 /// Wrapper around FromLocale, to avoid the need to call LocaleFree()
71 static inline string sFromLocale( const string &rLocale )
72 {
73     char *s = FromLocale( rLocale.c_str() );
74     string res = s;
75     LocaleFree( s );
76     return res;
77 }
78
79 #ifdef WIN32
80 /// Wrapper around FromWide, to avoid the need to call free()
81 static inline string sFromWide( const wstring &rWide )
82 {
83     char *s = FromWide( rWide.c_str() );
84     string res = s;
85     free( s );
86     return res;
87 }
88 #endif
89
90 /// Wrapper around ToLocale, to avoid the need to call LocaleFree()
91 static inline string sToLocale( const string &rUTF8 )
92 {
93     char *s = ToLocale( rUTF8.c_str() );
94     string res = s;
95     LocaleFree( s );
96     return res;
97 }
98
99
100 //---------------------------------------------------------------------------
101 // intf_sys_t: description and status of skin interface
102 //---------------------------------------------------------------------------
103 struct intf_sys_t
104 {
105     /// The input thread
106     input_thread_t *p_input;
107
108     /// The playlist thread
109     playlist_t *p_playlist;
110
111     /// Message bank subscription
112     msg_subscription_t *p_sub;
113
114     // "Singleton" objects: MUST be initialized to NULL !
115     /// Logger
116     Logger *p_logger;
117     /// Asynchronous command queue
118     AsyncQueue *p_queue;
119     /// Dialog provider
120     Dialogs *p_dialogs;
121     /// Script interpreter
122     Interpreter *p_interpreter;
123     /// Factory for OS specific classes
124     OSFactory *p_osFactory;
125     /// Main OS specific message loop
126     OSLoop *p_osLoop;
127     /// Variable manager
128     VarManager *p_varManager;
129     /// VLC state handler
130     VlcProc *p_vlcProc;
131     /// Vout manager
132     VoutManager *p_voutManager;
133     /// Art manager
134     ArtManager *p_artManager;
135     /// Theme repository
136     ThemeRepository *p_repository;
137
138     /// Current theme
139     Theme *p_theme;
140
141     /// synchronisation at start of interface
142     vlc_thread_t thread;
143     vlc_mutex_t  init_lock;
144     vlc_cond_t   init_wait;
145     bool         b_error;
146     bool         b_ready;
147 };
148
149
150 /// Base class for all skin classes
151 class SkinObject
152 {
153 public:
154     SkinObject( intf_thread_t *pIntf ): m_pIntf( pIntf ) { }
155     virtual ~SkinObject() { }
156
157     /// Getter (public because it is used in C callbacks in the win32
158     /// interface)
159     intf_thread_t *getIntf() const { return m_pIntf; }
160
161 private:
162     intf_thread_t *m_pIntf;
163 };
164
165
166 #endif