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