]> git.sesse.net Git - vlc/blob - modules/gui/qt4/qt4.cpp
qt4 - think about saving the qt-PATH...
[vlc] / modules / gui / qt4 / qt4.cpp
1 /*****************************************************************************
2  * qt4.cpp : QT4 interface
3  ****************************************************************************
4  * Copyright (C) 2006-2007 the VideoLAN team
5  * $Id$
6  *
7  * Authors: ClĂ©ment Stenac <zorglub@videolan.org>
8  *          Jean-Baptiste Kempf <jb@videolan.org>
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 #include <QApplication>
26 #include <QLocale>
27 #include <QTranslator>
28 #include <QDate>
29
30 #include "qt4.hpp"
31 #include <vlc_os_specific.h>
32 #include "dialogs_provider.hpp"
33 #include "input_manager.hpp"
34 #include "main_interface.hpp"
35
36 #ifdef HAVE_X11_XLIB_H
37 #include <X11/Xlib.h>
38 #endif
39
40 #include "../../../share/vlc32x32.xpm"
41 #include "../../../share/vlc32x32-christmas.xpm"
42
43 /*****************************************************************************
44  * Local prototypes.
45  *****************************************************************************/
46 static int  Open         ( vlc_object_t * );
47 static void Close        ( vlc_object_t * );
48 static int  OpenDialogs  ( vlc_object_t * );
49 static void Run          ( intf_thread_t * );
50 static void Init         ( intf_thread_t * );
51 static void ShowDialog   ( intf_thread_t *, int, int, intf_dialog_args_t * );
52
53 /*****************************************************************************
54  * Module descriptor
55  *****************************************************************************/
56 #define ALWAYS_VIDEO_TEXT N_( "Always show an area for information when " \
57                               "no video is played" )
58 #define ALWAYS_VIDEO_LONGTEXT N_( "Start VLC with a cone image, and " \
59                                   "use this zone to show information as " \
60                                   "lyrics, album arts or visualisation " \
61                                   " when there is no video track." )
62
63 #define ADVANCED_PREFS_TEXT N_( "Show advanced prefs over simple ones" )
64 #define ADVANCED_PREFS_LONGTEXT N_( "Show advanced preferences and not simple " \
65                                     "preferences when opening the preferences " \
66                                     "dialog." )
67
68 #define SYSTRAY_TEXT N_( "Systray icon" )
69 #define SYSTRAY_LONGTEXT N_( "Show an icon in the systray " \
70                              "allowing you to control VLC media player " \
71                              "for basic actions" )
72
73 #define MINIMIZED_TEXT N_( "Start VLC with only a systray icon" )
74 #define MINIMIZED_LONGTEXT N_( "When you launch VLC with that option, " \
75                                "VLC will start with just an icon in" \
76                                "your taskbar" )
77
78 #define TITLE_TEXT N_( "Show playing item name in window title" )
79 #define TITLE_LONGTEXT N_( "Show the name of the song or video in the " \
80                            "controler window title" )
81
82 #define FILEDIALOG_PATH_TEXT N_( "Path to use in openfile dialog" )
83
84 #define NOTIFICATION_TEXT N_( "Show notification popup on track change" )
85 #define NOTIFICATION_LONGTEXT N_( \
86     "Show a notification popup with the artist and track name when " \
87     "the current playlist item changes, when VLC is minimized or hidden." )
88
89 #define ADVANCED_OPTIONS_TEXT N_( "Advanced options" )
90 #define ADVANCED_OPTIONS_LONGTEXT N_( "Show all the advanced options " \
91                                       "in the dialogs" )
92
93 #define OPACITY_TEXT N_( "Windows opacity between 0.1 and 1." )
94 #define OPACITY_LONGTEXT N_( "Sets the windows opacity between 0.1 and 1 " \
95                              "for main interface, playlist and extended panel." \
96                              " This option only works with Windows and " \
97                              "X11 with composite extensions." )
98
99 #define SHOWFLAGS_TEXT N_( "Define what columns to show in playlist window" )
100 #define SHOWFLAGS_LONGTEXT N_( "Enter the sum of the options that you want: \n" \
101                                "Title: 1; Duration: 2; Artist: 4; Genre: 8; " \
102                                "Copyright: 16; Collection/album: 32; Rating: 256." )
103
104 #define ERROR_TEXT N_( "Show unimportant error and warnings dialogs" )
105 #define MINIMAL_TEXT N_( "Start in minimal view (menus hidden)." )
106
107 #define UPDATER_TEXT N_( "Activate the updates availability notification" )
108 #define UPDATER_LONGTEXT N_( "Activate the automatic notification of new " \
109                             "versions of the software. It runs once a week." )
110
111 #define COMPLETEVOL_TEXT N_( "Allow the volume to be set to 400%" )
112 #define COMPLETEVOL_LONGTEXT N_( "Allow the volume to have range from 0% to " \
113                                  "400%, instead of 0% to 200%. This option " \
114                                  "can distort the audio, since it uses " \
115                                  "software amplification." )
116
117 #define BLING_TEXT N_( "Use non native buttons and volume slider" )
118
119 #define PRIVACY_TEXT N_( "Ask for network policy at start" )
120
121 #define VIEWDETAIL_TEXT N_( "Show the opening dialog view in detail mode" )
122
123 vlc_module_begin();
124     set_shortname( (char *)"Qt" );
125     set_description( (char*)_("Qt interface") );
126     set_category( CAT_INTERFACE ) ;
127     set_subcategory( SUBCAT_INTERFACE_MAIN );
128     set_capability( "interface", 151 );
129     set_callbacks( Open, Close );
130
131     add_shortcut("qt");
132
133     add_submodule();
134         set_description( "Dialogs provider" );
135         set_capability( "dialogs provider", 51 );
136
137         add_bool( "qt-always-video", VLC_FALSE, NULL, ALWAYS_VIDEO_TEXT,
138                 ALWAYS_VIDEO_LONGTEXT, VLC_TRUE );
139         add_bool( "qt-minimal-view", VLC_FALSE, NULL, MINIMAL_TEXT,
140                 MINIMAL_TEXT, VLC_TRUE );
141
142         add_bool( "qt-notification", VLC_TRUE, NULL, NOTIFICATION_TEXT,
143                   NOTIFICATION_LONGTEXT, VLC_FALSE );
144
145         add_float_with_range( "qt-opacity", 1., 0.1, 1., NULL, OPACITY_TEXT,
146                   OPACITY_LONGTEXT, VLC_FALSE );
147         add_bool( "qt-blingbling", VLC_TRUE, NULL, BLING_TEXT,
148                   BLING_TEXT, VLC_FALSE );
149
150         add_bool( "qt-system-tray", VLC_TRUE, NULL, SYSTRAY_TEXT,
151                 SYSTRAY_LONGTEXT, VLC_FALSE);
152         add_bool( "qt-start-minimized", VLC_FALSE, NULL, MINIMIZED_TEXT,
153                 MINIMIZED_LONGTEXT, VLC_TRUE);
154         add_bool( "qt-name-in-title", VLC_TRUE, NULL, TITLE_TEXT,
155                   TITLE_LONGTEXT, VLC_FALSE );
156
157         add_bool( "qt-volume-complete", VLC_FALSE, NULL, COMPLETEVOL_TEXT,
158                 COMPLETEVOL_LONGTEXT, VLC_TRUE );
159         add_string( "qt-filedialog-path", NULL, NULL, FILEDIALOG_PATH_TEXT,
160                 FILEDIALOG_PATH_TEXT, VLC_TRUE );
161             change_autosave();
162             change_internal();
163
164         add_bool( "qt-adv-options", VLC_FALSE, NULL, ADVANCED_OPTIONS_TEXT,
165                   ADVANCED_OPTIONS_LONGTEXT, VLC_TRUE );
166         add_bool( "qt-advanced-pref", VLC_FALSE, NULL, ADVANCED_PREFS_TEXT,
167                 ADVANCED_PREFS_LONGTEXT, VLC_FALSE );
168         add_bool( "qt-error-dialogs", VLC_TRUE, NULL, ERROR_TEXT,
169                 ERROR_TEXT, VLC_FALSE );
170 #ifdef UPDATE_CHECK
171         add_bool( "qt-updates-notif", VLC_TRUE, NULL, UPDATER_TEXT,
172                 UPDATER_LONGTEXT, VLC_FALSE );
173 #endif
174
175         add_integer( "qt-pl-showflags",
176                 VLC_META_ENGINE_ARTIST|VLC_META_ENGINE_TITLE|
177                 VLC_META_ENGINE_DURATION|VLC_META_ENGINE_COLLECTION,
178                 NULL, SHOWFLAGS_TEXT,
179                 SHOWFLAGS_LONGTEXT, VLC_TRUE );
180             change_autosave();
181
182         add_bool( "qt-open-detail", VLC_FALSE, NULL, VIEWDETAIL_TEXT,
183                 VIEWDETAIL_TEXT, VLC_FALSE );
184
185         add_bool( "qt-privacy-ask", VLC_TRUE, NULL, PRIVACY_TEXT, PRIVACY_TEXT,
186                 VLC_FALSE );
187
188
189         set_callbacks( OpenDialogs, Close );
190 vlc_module_end();
191
192 /*****************************************************************************
193  * Module callbacks
194  *****************************************************************************/
195 static int Open( vlc_object_t *p_this )
196 {
197     intf_thread_t *p_intf = (intf_thread_t *)p_this;
198     p_intf->pf_run = Run;
199 #if defined Q_WS_X11 && defined HAVE_X11_XLIB_H
200     /* Thanks for libqt4 calling exit() in QApplication::QApplication()
201      * instead of returning an error, we have to check the X11 display */
202     Display *p_display = XOpenDisplay( NULL );
203     if( !p_display )
204     {
205         msg_Err( p_intf, "Could not connect to X server" );
206         return VLC_EGENERIC;
207     }
208     XCloseDisplay( p_display );
209 #endif
210     p_intf->p_sys = (intf_sys_t *)malloc( sizeof( intf_sys_t ) );
211     if( !p_intf->p_sys )
212     {
213         msg_Err( p_intf, "Out of memory" );
214         return VLC_ENOMEM;
215     }
216     memset( p_intf->p_sys, 0, sizeof( intf_sys_t ) );
217
218     p_intf->p_sys->p_playlist = pl_Yield( p_intf );
219     p_intf->p_sys->p_sub = msg_Subscribe( p_intf, MSG_QUEUE_NORMAL );
220
221     p_intf->b_play = VLC_TRUE;
222
223     return VLC_SUCCESS;
224 }
225
226 static int OpenDialogs( vlc_object_t *p_this )
227 {
228     intf_thread_t *p_intf = (intf_thread_t *)p_this;
229     int val = Open( p_this );
230     if( val )
231         return val;
232
233     p_intf->pf_show_dialog = ShowDialog;
234     return VLC_SUCCESS;
235 }
236
237 static void Close( vlc_object_t *p_this )
238 {
239     intf_thread_t *p_intf = (intf_thread_t *)p_this;
240     vlc_mutex_lock( &p_intf->object_lock );
241     p_intf->b_dead = VLC_TRUE;
242     vlc_mutex_unlock( &p_intf->object_lock );
243
244     vlc_object_release( p_intf->p_sys->p_playlist );
245     msg_Unsubscribe( p_intf, p_intf->p_sys->p_sub );
246     free( p_intf->p_sys );
247 }
248
249
250 /*****************************************************************************
251  * Initialize the interface or the dialogs provider
252  *****************************************************************************/
253 static void Run( intf_thread_t *p_intf )
254 {
255     if( p_intf->pf_show_dialog )
256     {
257         if( vlc_thread_create( p_intf, "Qt dialogs", Init, 0, VLC_TRUE ) )
258             msg_Err( p_intf, "failed to create Qt dialogs thread" );
259     }
260     else
261         Init( p_intf );
262 }
263
264 static void Init( intf_thread_t *p_intf )
265 {
266     char dummy[] = "";
267     char *argv[] = { dummy };
268     int argc = 1;
269
270     Q_INIT_RESOURCE( vlc );
271
272 #ifndef WIN32
273     /* KLUDGE:
274      * disables icon theme use because that makes Cleanlooks style bug
275      * because it asks gconf for some settings that timeout because of threads
276      * see commits 21610 21622 21654 for reference */
277
278     /* If you are under KDE, Xfce or e17, you should comment this line */
279 //    QApplication::setDesktopSettingsAware( false );
280 #endif
281
282     /* Start the QApplication here */
283     QApplication *app = new QApplication( argc, argv , true );
284     if( QDate::currentDate().dayOfYear() >= 354 )
285         app->setWindowIcon( QIcon( QPixmap(vlc_christmas_xpm) ) );
286     else
287         app->setWindowIcon( QIcon( QPixmap(vlc_xpm) ) );
288     p_intf->p_sys->p_app = app;
289
290     // Initialize timers and the Dialog Provider
291     DialogsProvider::getInstance( p_intf );
292
293     // Create the normal interface
294     if( !p_intf->pf_show_dialog )
295     {
296         MainInterface *p_mi = new MainInterface( p_intf );
297         p_intf->p_sys->p_mi = p_mi;
298         p_mi->show();
299     }
300     else
301         vlc_thread_ready( p_intf );
302
303 #ifdef ENABLE_NLS
304     // Translation - get locale
305     QLocale ql = QLocale::system();
306     // Translations for qt's own dialogs
307     QTranslator qtTranslator( 0 );
308     // Let's find the right path for the translation file
309 #if !defined( WIN32 )
310     QString path =  QString( QT4LOCALEDIR );
311 #else
312     QString path = QString( QString(system_VLCPath()) + DIR_SEP +
313                             "locale" + DIR_SEP );
314 #endif
315     // files depending on locale
316     bool b_loaded = qtTranslator.load( path + "qt_" + ql.name());
317     if (!b_loaded)
318         msg_Dbg( p_intf, "Error while initializing qt-specific localization" );
319     app->installTranslator( &qtTranslator );
320 #endif  //ENABLE_NLS
321
322     /* Start playing if needed */
323     if( !p_intf->pf_show_dialog && p_intf->b_play )
324     {
325         playlist_Control( THEPL, PLAYLIST_AUTOPLAY, VLC_FALSE );
326     }
327
328     /* Explain to the core how to show a dialog :D */
329     p_intf->pf_show_dialog = ShowDialog;
330
331     /* Last settings */
332     app->setQuitOnLastWindowClosed( false );
333
334     /*        retrieve last known path used in file browsing */
335     char *psz_path = config_GetPsz( p_intf, "qt-filedialog-path" );
336     p_intf->p_sys->psz_filepath = EMPTY_STR( psz_path ) ? psz_path
337                            : p_intf->p_libvlc->psz_homedir;
338     delete psz_path;
339
340     /* Launch */
341     app->exec();
342
343     /* And quit */
344
345     /* Destroy first the main interface because it is connected to some slots
346        in the MainInputManager */
347     if( p_intf->p_sys->p_mi ) delete p_intf->p_sys->p_mi;
348
349     /* Destroy then other windows, because some are connected to some slots
350        in the MainInputManager */
351     DialogsProvider::killInstance();
352
353     /* Destroy the MainInputManager */
354     MainInputManager::killInstance();
355
356     config_PutPsz( p_intf, "qt-filedialog-path", p_intf->p_sys->psz_filepath );
357     delete p_intf->p_sys->psz_filepath;
358
359     delete app;
360 }
361
362 /*****************************************************************************
363  * Callback to show a dialog
364  *****************************************************************************/
365 static void ShowDialog( intf_thread_t *p_intf, int i_dialog_event, int i_arg,
366                         intf_dialog_args_t *p_arg )
367 {
368     DialogEvent *event = new DialogEvent( i_dialog_event, i_arg, p_arg );
369     QApplication::postEvent( THEDP, static_cast<QEvent*>(event) );
370 }
371
372 /*****************************************************************************
373  * PopupMenuCB: callback to show the popupmenu.
374  *  We don't show the menu directly here because we don't want the
375  *  caller to block for a too long time.
376  *****************************************************************************/
377 static int PopupMenuCB( vlc_object_t *p_this, const char *psz_variable,
378                         vlc_value_t old_val, vlc_value_t new_val, void *param )
379 {
380     intf_thread_t *p_intf = (intf_thread_t *)param;
381     ShowDialog( p_intf, INTF_DIALOG_POPUPMENU, new_val.b_bool, 0 );
382     return VLC_SUCCESS;
383 }