]> git.sesse.net Git - vlc/blob - modules/gui/skins2/src/skin_common.hpp
Uniformize source files encoding
[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/intf.h>
30
31 #include <string>
32 using namespace std;
33
34 class AsyncQueue;
35 class Logger;
36 class Dialogs;
37 class Interpreter;
38 class OSFactory;
39 class OSLoop;
40 class VarManager;
41 class VlcProc;
42 class Theme;
43 class ThemeRepository;
44
45 #ifndef M_PI
46 #   define M_PI 3.14159265358979323846
47 #endif
48
49 #ifdef _MSC_VER
50 // turn off 'warning C4355: 'this' : used in base member initializer list'
51 #pragma warning ( disable:4355 )
52 // turn off 'identifier was truncated to '255' characters in the debug info'
53 #pragma warning ( disable:4786 )
54 #endif
55
56 // Useful macros
57 #define SKINS_DELETE( p ) \
58    if( p ) \
59    { \
60        delete p; \
61    } \
62    else \
63    { \
64        msg_Err( getIntf(), "delete NULL pointer in %s at line %d", \
65                 __FILE__, __LINE__ ); \
66    }
67
68
69 //---------------------------------------------------------------------------
70 // intf_sys_t: description and status of skin interface
71 //---------------------------------------------------------------------------
72 struct intf_sys_t
73 {
74     /// The input thread
75     input_thread_t *p_input;
76
77     /// The playlist thread
78     playlist_t *p_playlist;
79
80     /// Message bank subscription
81     msg_subscription_t *p_sub;
82
83     // "Singleton" objects: MUST be initialized to NULL !
84     /// Logger
85     Logger *p_logger;
86     /// Asynchronous command queue
87     AsyncQueue *p_queue;
88     /// Dialog provider
89     Dialogs *p_dialogs;
90     /// Script interpreter
91     Interpreter *p_interpreter;
92     /// Factory for OS specific classes
93     OSFactory *p_osFactory;
94     /// Main OS specific message loop
95     OSLoop *p_osLoop;
96     /// Variable manager
97     VarManager *p_varManager;
98     /// VLC state handler
99     VlcProc *p_vlcProc;
100     /// Theme repository
101     ThemeRepository *p_repository;
102
103     /// Current theme
104     Theme *p_theme;
105 };
106
107
108 /// Base class for all skin classes
109 class SkinObject
110 {
111     public:
112         SkinObject( intf_thread_t *pIntf ): m_pIntf( pIntf ) {}
113         virtual ~SkinObject() {}
114
115         /// Getter (public because it is used in C callbacks in the win32
116         /// interface)
117         intf_thread_t *getIntf() const { return m_pIntf; }
118
119     private:
120         intf_thread_t *m_pIntf;
121 };
122
123
124 #endif