]> git.sesse.net Git - vlc/blob - modules/gui/skins2/src/skin_common.hpp
A bit of headers cleanup
[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
21  * along with this program; if not, write to the Free Software
22  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
23  *****************************************************************************/
24
25 #ifndef SKIN_COMMON_HPP
26 #define SKIN_COMMON_HPP
27
28 #include <vlc/vlc.h>
29 #include <vlc_interface.h>
30 #include "vlc_charset.h"
31
32 #include <string>
33 using namespace std;
34
35 class AsyncQueue;
36 class Logger;
37 class Dialogs;
38 class Interpreter;
39 class OSFactory;
40 class OSLoop;
41 class VarManager;
42 class VlcProc;
43 class Theme;
44 class ThemeRepository;
45
46 #ifndef M_PI
47 #   define M_PI 3.14159265358979323846
48 #endif
49
50 #ifdef _MSC_VER
51 // turn off 'warning C4355: 'this' : used in base member initializer list'
52 #pragma warning ( disable:4355 )
53 // turn off 'identifier was truncated to '255' characters in the debug info'
54 #pragma warning ( disable:4786 )
55 #endif
56
57 // Useful macros
58 #define SKINS_DELETE( p ) \
59    if( p ) \
60    { \
61        delete p; \
62    } \
63    else \
64    { \
65        msg_Err( getIntf(), "delete NULL pointer in %s at line %d", \
66                 __FILE__, __LINE__ ); \
67    }
68
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     /// Theme repository
132     ThemeRepository *p_repository;
133
134     /// Current theme
135     Theme *p_theme;
136 };
137
138
139 /// Base class for all skin classes
140 class SkinObject
141 {
142     public:
143         SkinObject( intf_thread_t *pIntf ): m_pIntf( pIntf ) {}
144         virtual ~SkinObject() {}
145
146         /// Getter (public because it is used in C callbacks in the win32
147         /// interface)
148         intf_thread_t *getIntf() const { return m_pIntf; }
149
150     private:
151         intf_thread_t *m_pIntf;
152 };
153
154
155 #endif