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