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