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