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