]> git.sesse.net Git - vlc/blob - modules/gui/skins2/src/skin_main.cpp
* all: save the theme configuration at exit (theme path and
[vlc] / modules / gui / skins2 / src / skin_main.cpp
1 /*****************************************************************************
2  * skin_main.cpp
3  *****************************************************************************
4  * Copyright (C) 2003 VideoLAN
5  * $Id: skin_main.cpp,v 1.5 2004/01/25 23:04:06 asmax Exp $
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., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
23  *****************************************************************************/
24
25 #include <stdlib.h>
26 #include "dialogs.hpp"
27 #include "os_factory.hpp"
28 #include "os_loop.hpp"
29 #include "var_manager.hpp"
30 #include "vlcproc.hpp"
31 #include "theme_loader.hpp"
32 #include "theme.hpp"
33 #include "../parser/interpreter.hpp"
34 #include "../commands/async_queue.hpp"
35 #include "../commands/cmd_quit.hpp"
36
37
38 //---------------------------------------------------------------------------
39 // Exported interface functions.
40 //---------------------------------------------------------------------------
41 #ifdef WIN32_SKINS
42 extern "C" __declspec( dllexport )
43     int __VLC_SYMBOL( vlc_entry ) ( module_t *p_module );
44 #endif
45
46
47 //---------------------------------------------------------------------------
48 // Local prototypes.
49 //---------------------------------------------------------------------------
50 static int  Open  ( vlc_object_t * );
51 static void Close ( vlc_object_t * );
52 static void Run   ( intf_thread_t * );
53
54
55 //---------------------------------------------------------------------------
56 // Open: initialize interface
57 //---------------------------------------------------------------------------
58 static int Open( vlc_object_t *p_this )
59 {
60     intf_thread_t *p_intf = (intf_thread_t *)p_this;
61
62     // Allocate instance and initialize some members
63     p_intf->p_sys = (intf_sys_t *) malloc( sizeof( intf_sys_t ) );
64     if( p_intf->p_sys == NULL )
65     {
66         msg_Err( p_intf, "out of memory" );
67         return( VLC_ENOMEM );
68     };
69
70     p_intf->pf_run = Run;
71
72     // Suscribe to messages bank
73     p_intf->p_sys->p_sub = msg_Subscribe( p_intf );
74
75     p_intf->p_sys->p_input = NULL;
76     p_intf->p_sys->p_playlist = (playlist_t *)vlc_object_find( p_intf,
77         VLC_OBJECT_PLAYLIST, FIND_ANYWHERE );
78     if( p_intf->p_sys->p_playlist == NULL )
79     {
80         msg_Err( p_intf, "No playlist object found" );
81         return VLC_EGENERIC;
82     }
83
84     // Initialize "singleton" objects
85     p_intf->p_sys->p_logger = NULL;
86     p_intf->p_sys->p_queue = NULL;
87     p_intf->p_sys->p_dialogs = NULL;
88     p_intf->p_sys->p_interpreter = NULL;
89     p_intf->p_sys->p_osFactory = NULL;
90     p_intf->p_sys->p_osLoop = NULL;
91     p_intf->p_sys->p_varManager = NULL;
92     p_intf->p_sys->p_vlcProc = NULL;
93
94     // No theme yet
95     p_intf->p_sys->p_theme = NULL;
96
97     // Initialize singletons
98     if( OSFactory::instance( p_intf ) == NULL )
99     {
100         msg_Err( p_intf, "Cannot initialize OSFactory" );
101         return VLC_EGENERIC;
102     }
103     if( AsyncQueue::instance( p_intf ) == NULL )
104     {
105         msg_Err( p_intf, "Cannot initialize AsyncQueue" );
106         return VLC_EGENERIC;
107     }
108     if( Interpreter::instance( p_intf ) == NULL )
109     {
110         msg_Err( p_intf, "Cannot instanciate Interpreter" );
111         return VLC_EGENERIC;
112     }
113     if( VarManager::instance( p_intf ) == NULL )
114     {
115         msg_Err( p_intf, "Cannot instanciate VarManager" );
116         return VLC_EGENERIC;
117     }
118     if( VlcProc::instance( p_intf ) == NULL )
119     {
120         msg_Err( p_intf, "Cannot initialize VLCProc" );
121         return VLC_EGENERIC;
122     }
123     Dialogs::instance( p_intf );
124
125     return( VLC_SUCCESS );
126 }
127
128 //---------------------------------------------------------------------------
129 // Close: destroy interface
130 //---------------------------------------------------------------------------
131 static void Close( vlc_object_t *p_this )
132 {
133     intf_thread_t *p_intf = (intf_thread_t *)p_this;
134
135     // Destroy "singleton" objects
136     VlcProc::destroy( p_intf );
137     OSFactory::instance( p_intf )->destroyOSLoop();
138     OSFactory::destroy( p_intf );
139     Dialogs::destroy( p_intf );
140     Interpreter::destroy( p_intf );
141     AsyncQueue::destroy( p_intf );
142     VarManager::destroy( p_intf );
143
144     if( p_intf->p_sys->p_input )
145     {
146         vlc_object_release( p_intf->p_sys->p_input );
147     }
148
149     if( p_intf->p_sys->p_playlist )
150     {
151         vlc_object_release( p_intf->p_sys->p_playlist );
152     }
153
154    // Unsuscribe to messages bank
155     msg_Unsubscribe( p_intf, p_intf->p_sys->p_sub );
156
157     // Destroy structure
158     free( p_intf->p_sys );
159 }
160
161
162 //---------------------------------------------------------------------------
163 // Run: main loop
164 //---------------------------------------------------------------------------
165 static void Run( intf_thread_t *p_intf )
166 {
167     // Load a theme
168     ThemeLoader *pLoader = new ThemeLoader( p_intf );
169     char *skin_last = config_GetPsz( p_intf, "skin_last" );
170
171     if( skin_last == NULL || !pLoader->load( skin_last ) )
172     {
173         // Too bad, it failed. Let's try with the default theme
174 #ifdef WIN32_SKINS
175         string default_dir = (string)p_intf->p_libvlc->psz_vlcpath +
176                              "\\skins\\default\\theme.xml";
177         if( !pLoader->load( default_dir ) )
178 #else
179         string user_skin = (string)p_intf->p_vlc->psz_homedir +
180                            "/" + CONFIG_DIR + "/skins/default/theme.xml";
181
182         string default_skin = (string)DATA_PATH + "/skins/default/theme.xml";
183         if( !pLoader->load( user_skin ) && !pLoader->load( default_skin ) )
184 #endif
185         {
186             // Last chance: the user can select a new theme file (blocking call)
187             Dialogs *pDialogs = Dialogs::instance( p_intf );
188             if( pDialogs )
189             {
190                 pDialogs->showChangeSkin();
191             }
192             else
193             {
194                 // No dialogs provider, just quit...
195                 CmdQuit *pCmd = new CmdQuit( p_intf );
196                 AsyncQueue *pQueue = AsyncQueue::instance( p_intf );
197                 pQueue->push( CmdGenericPtr( pCmd ) );
198                 msg_Err( p_intf, "Cannot show the \"open skin\" dialog: exiting...");
199             }
200         }
201     }
202     delete pLoader;
203
204     if( skin_last )
205     {
206         free( skin_last );
207     }
208
209     // Get the instance of OSLoop
210     OSLoop *loop = OSFactory::instance( p_intf )->getOSLoop();
211
212     // Enter the main event loop
213     loop->run();
214
215     // Delete the theme
216     if( p_intf->p_sys->p_theme )
217     {
218         delete p_intf->p_sys->p_theme;
219         p_intf->p_sys->p_theme = NULL;
220     }
221 }
222
223 //---------------------------------------------------------------------------
224 // Module descriptor
225 //---------------------------------------------------------------------------
226 #define DEFAULT_SKIN        N_("Last skin used")
227 #define DEFAULT_SKIN_LONG   N_("Select the path to the last skin used.")
228 #define SKIN_CONFIG         N_("Config of last used skin")
229 #define SKIN_CONFIG_LONG    N_("Config of last used skin.")
230
231 vlc_module_begin();
232     add_string( "skin_last", "", NULL, DEFAULT_SKIN, DEFAULT_SKIN_LONG,
233                 VLC_TRUE );
234     add_string( "skin_config", "", NULL, SKIN_CONFIG, SKIN_CONFIG_LONG,
235                 VLC_TRUE );
236     set_description( _("Skinnable Interface") );
237     set_capability( "interface", 30 );
238     set_callbacks( Open, Close );
239     set_program( "svlc" );
240 vlc_module_end();
241