]> git.sesse.net Git - vlc/blob - modules/gui/qt4/menus.cpp
Qt4 - Systray menu order adjustement.
[vlc] / modules / gui / qt4 / menus.cpp
1 /*****************************************************************************
2  * menus.cpp : Qt menus
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 <QMenu>
26 #include <QMenuBar>
27 #include <QAction>
28 #include <QActionGroup>
29 #include <QSignalMapper>
30 #include <QSystemTrayIcon>
31
32 #ifndef WIN32
33 #   include <signal.h>
34 #endif
35
36 #include <vlc_intf_strings.h>
37
38 #include "main_interface.hpp"
39 #include "menus.hpp"
40 #include "dialogs_provider.hpp"
41 #include "input_manager.hpp"
42
43 enum
44 {
45     ITEM_NORMAL,
46     ITEM_CHECK,
47     ITEM_RADIO
48 };
49
50 static QActionGroup *currentGroup;
51
52 // Add static entries to menus
53 #define DP_SADD( menu, text, help, icon, slot, shortcut ) \
54 { \
55     if( strlen(icon) > 0 ) \
56     { \
57         if( strlen(shortcut) > 0 ) \
58         { \
59             menu->addAction( QIcon(icon), text, THEDP, SLOT( slot ), \
60                     qtr(shortcut) );\
61         } \
62         else \
63         { \
64             menu->addAction( QIcon(icon), text, THEDP, SLOT( slot ) );\
65         } \
66     } \
67     else \
68     { \
69         if( strlen(shortcut) > 0 ) \
70         { \
71             menu->addAction( text, THEDP, SLOT( slot ), \
72                     qtr(shortcut) ); \
73         } \
74         else \
75         { \
76             menu->addAction( text, THEDP, SLOT( slot ) ); \
77         } \
78     } \
79 }
80 #define MIM_SADD( menu, text, help, icon, slot ) \
81 { \
82     if( strlen(icon) > 0 ) \
83     { \
84         QAction *action = menu->addAction( text, THEMIM, SLOT( slot ) ); \
85         action->setIcon(QIcon(icon)); \
86     } \
87     else \
88     { \
89         menu->addAction( text, THEMIM, SLOT( slot ) ); \
90     } \
91 }
92 #define PL_SADD
93
94 /*****************************************************************************
95  * Definitions of variables for the dynamic menus
96  *****************************************************************************/
97 #define PUSH_VAR( var ) varnames.push_back( var ); \
98     objects.push_back( p_object->i_object_id )
99
100 #define PUSH_SEPARATOR if( objects.size() != i_last_separator ) { \
101     objects.push_back( 0 ); varnames.push_back( "" ); \
102     i_last_separator = objects.size(); }
103
104 static int InputAutoMenuBuilder( vlc_object_t *p_object,
105         vector<int> &objects,
106         vector<const char *> &varnames )
107 {
108     PUSH_VAR( "bookmark");
109     PUSH_VAR( "title" );
110     PUSH_VAR ("chapter" );
111     PUSH_VAR( "program" );
112     PUSH_VAR( "navigation" );
113     PUSH_VAR( "dvd_menus" );
114     return VLC_SUCCESS;
115 }
116
117 static int VideoAutoMenuBuilder( vlc_object_t *p_object,
118         vector<int> &objects,
119         vector<const char *> &varnames )
120 {
121     PUSH_VAR( "fullscreen" );
122     PUSH_VAR( "zoom" );
123     PUSH_VAR( "deinterlace" );
124     PUSH_VAR( "aspect-ratio" );
125     PUSH_VAR( "crop" );
126     PUSH_VAR( "video-on-top" );
127     PUSH_VAR( "directx-wallpaper" );
128     PUSH_VAR( "video-snapshot" );
129
130     vlc_object_t *p_dec_obj = (vlc_object_t *)vlc_object_find( p_object,
131             VLC_OBJECT_DECODER,
132             FIND_PARENT );
133     if( p_dec_obj != NULL )
134     {
135         vlc_object_t *p_object = p_dec_obj;
136         PUSH_VAR( "ffmpeg-pp-q" );
137         vlc_object_release( p_dec_obj );
138     }
139     return VLC_SUCCESS;
140 }
141
142 static int AudioAutoMenuBuilder( vlc_object_t *p_object,
143         vector<int> &objects,
144         vector<const char *> &varnames )
145 {
146     PUSH_VAR( "audio-device" );
147     PUSH_VAR( "audio-channels" );
148     PUSH_VAR( "visual" );
149     PUSH_VAR( "equalizer" );
150     return VLC_SUCCESS;
151 }
152
153 /*****************************************************************************
154  * All normal menus
155  *****************************************************************************/
156
157 #define BAR_ADD( func, title ) { \
158     QMenu *menu = func; menu->setTitle( title  ); bar->addMenu( menu ); }
159
160 #define BAR_DADD( func, title, id ) { \
161     QMenu *menu = func; menu->setTitle( title  ); bar->addMenu( menu ); \
162     MenuFunc *f = new MenuFunc( menu, id ); \
163     CONNECT( menu, aboutToShow(), THEDP->menusUpdateMapper, map() ); \
164     THEDP->menusUpdateMapper->setMapping( menu, f ); }
165
166 void QVLCMenu::createMenuBar( MainInterface *mi, intf_thread_t *p_intf,
167         bool playlist, bool adv_controls_enabled,
168         bool visual_selector_enabled )
169 {
170 #ifndef WIN32
171     /* Ugly klugde
172      * Remove SIGCHLD from the ignored signal the time to initialise
173      * Qt because it call gconf to get the icon theme */
174     sigset_t set;
175
176     sigemptyset( &set );
177     sigaddset( &set, SIGCHLD );
178     pthread_sigmask (SIG_UNBLOCK, &set, NULL);
179 #endif
180     QMenuBar *bar = mi->menuBar();
181 #ifndef WIN32
182     pthread_sigmask (SIG_BLOCK, &set, NULL);
183 #endif
184     BAR_ADD( FileMenu(), qtr("&Media") );
185     if( playlist )
186     {
187         BAR_ADD( PlaylistMenu( mi,p_intf ), qtr("&Playlist" ) );
188     }
189     BAR_ADD( ToolsMenu( p_intf, mi, adv_controls_enabled,
190                 visual_selector_enabled ), qtr("&Tools") );
191     BAR_DADD( VideoMenu( p_intf, NULL ), qtr("&Video"), 1 );
192     BAR_DADD( AudioMenu( p_intf, NULL ), qtr("&Audio"), 2 );
193     BAR_DADD( NavigMenu( p_intf, NULL ), qtr("&Navigation"), 3 );
194
195     BAR_ADD( HelpMenu(), qtr("&Help" ) );
196 }
197 QMenu *QVLCMenu::FileMenu()
198 {
199     QMenu *menu = new QMenu();
200     DP_SADD( menu, qtr("Open &File..." ), "", "", openFileDialog(), "Ctrl+O" );
201     DP_SADD( menu, qtr("Open &Disc..." ), "", "", openDiscDialog(), "Ctrl+D" );
202     DP_SADD( menu, qtr("Open &Network..." ), "", "", openNetDialog(), "Ctrl+N" );
203     DP_SADD( menu, qtr("Open &Capture Device..." ), "", "", openCaptureDialog(),
204             "Ctrl+C" );
205     menu->addSeparator();
206     DP_SADD( menu, qtr("&Streaming..."), "", "", openThenStreamingDialogs(), 
207             "Ctrl+S" );
208     DP_SADD( menu, qtr("Conve&rt / Save..."), "", "", openThenTranscodingDialogs(), 
209             "Ctrl+R" );
210     menu->addSeparator();
211     DP_SADD( menu, qtr("&Quit") , "", "", quit(), "Ctrl+Q");
212     return menu;
213 }
214
215 QMenu *QVLCMenu::PlaylistMenu( MainInterface *mi, intf_thread_t *p_intf )
216 {
217     QMenu *menu = new QMenu();
218     menu->addMenu( SDMenu( p_intf ) );
219     menu->addSeparator();
220
221     DP_SADD( menu, qtr(I_PL_LOAD), "", "", openPlaylist(), "Ctrl+L" );
222     DP_SADD( menu, qtr(I_PL_SAVE), "", "", savePlaylist(), "Ctrl+K" );
223     menu->addSeparator();
224     menu->addAction( qtr("Undock from interface"), mi,
225             SLOT( undockPlaylist() ), qtr("Ctrl+U") );
226     return menu;
227 }
228
229 QMenu *QVLCMenu::ToolsMenu( intf_thread_t *p_intf, MainInterface *mi,
230         bool adv_controls_enabled,
231         bool visual_selector_enabled, bool with_intf )
232 {
233     QMenu *menu = new QMenu();
234     if( with_intf )
235     {
236         QMenu *intfmenu = InterfacesMenu( p_intf, NULL );
237         intfmenu->setTitle( qtr("Interfaces" ) );
238         menu->addMenu( intfmenu );
239         menu->addSeparator();
240     }
241     DP_SADD( menu, qtr(I_MENU_MSG), "", "", messagesDialog(), "Ctrl+M" );
242     DP_SADD( menu, qtr(I_MENU_INFO) , "", "", mediaInfoDialog(), "Ctrl+J" );
243     DP_SADD( menu, qtr(I_MENU_CODECINFO) , "", "", mediaCodecDialog(), "Ctrl+I" );
244     DP_SADD( menu, qtr(I_MENU_GOTOTIME), "","", gotoTimeDialog(), "Ctrl+T" );
245     DP_SADD( menu, qtr(I_MENU_BOOKMARK), "","", bookmarksDialog(), "Ctrl+B" );
246     DP_SADD( menu, qtr(I_MENU_VLM), "","", vlmDialog(), "Ctrl+V" );
247
248     menu->addSeparator();
249     if( mi )
250     {
251         QAction *adv = menu->addAction( qtr("Advanced controls" ),
252                 mi, SLOT( advanced() ) );
253         adv->setCheckable( true );
254         if( adv_controls_enabled ) adv->setChecked( true );
255 #if 0
256         adv = menu->addAction( qtr("Visualizations selector" ),
257                 mi, SLOT( visual() ) );
258         adv->setCheckable( true );
259         if( visual_selector_enabled ) adv->setChecked( true );
260 #endif
261         menu->addAction ( qtr( "Playlist"), mi, SLOT( playlist() ) );
262     }
263     DP_SADD( menu, qtr(I_MENU_EXT), "","",extendedDialog(), "Ctrl+E" );
264     DP_SADD( menu, qtr("Hide Menus..."), "","",hideMenus(), "Ctrl+H" );
265     menu->addSeparator();
266     DP_SADD( menu, qtr("Preferences"), "", "", prefsDialog(), "Ctrl+P" );
267     return menu;
268 }
269
270 QMenu *QVLCMenu::InterfacesMenu( intf_thread_t *p_intf, QMenu *current )
271 {
272     vector<int> objects;
273     vector<const char *> varnames;
274     /** \todo add "switch to XXX" */
275     varnames.push_back( "intf-add" );
276     objects.push_back( p_intf->i_object_id );
277
278     QMenu *menu = Populate( p_intf, current, varnames, objects );
279
280     if( !p_intf->pf_show_dialog )
281     {
282         menu->addSeparator();
283         menu->addAction( qtr("Switch to skins"), THEDP, SLOT(switchToSkins()),
284                 qtr("Ctrl+Z") );
285     }
286
287     CONNECT( menu, aboutToShow(), THEDP->menusUpdateMapper, map() );
288     THEDP->menusUpdateMapper->setMapping( menu, 4 );
289     return menu;
290 }
291
292 QMenu *QVLCMenu::AudioMenu( intf_thread_t *p_intf, QMenu * current )
293 {
294     vector<int> objects;
295     vector<const char *> varnames;
296
297     vlc_object_t *p_object = (vlc_object_t *)vlc_object_find( p_intf,
298             VLC_OBJECT_INPUT, FIND_ANYWHERE );
299     if( p_object != NULL )
300     {
301         PUSH_VAR( "audio-es" );
302         vlc_object_release( p_object );
303     }
304
305     p_object = (vlc_object_t *)vlc_object_find( p_intf, VLC_OBJECT_AOUT,
306             FIND_ANYWHERE );
307     if( p_object )
308     {
309         AudioAutoMenuBuilder( p_object, objects, varnames );
310         vlc_object_release( p_object );
311     }
312     return Populate( p_intf, current, varnames, objects );
313 }
314
315
316 QMenu *QVLCMenu::VideoMenu( intf_thread_t *p_intf, QMenu *current )
317 {
318     vlc_object_t *p_object;
319     vector<int> objects;
320     vector<const char *> varnames;
321
322     p_object = (vlc_object_t *)vlc_object_find( p_intf, VLC_OBJECT_INPUT,
323             FIND_ANYWHERE );
324     if( p_object != NULL )
325     {
326         PUSH_VAR( "video-es" );
327         PUSH_VAR( "spu-es" );
328         vlc_object_release( p_object );
329     }
330
331     p_object = (vlc_object_t *)vlc_object_find( p_intf, VLC_OBJECT_VOUT,
332             FIND_ANYWHERE );
333     if( p_object != NULL )
334     {
335         VideoAutoMenuBuilder( p_object, objects, varnames );
336         vlc_object_release( p_object );
337     }
338     return Populate( p_intf, current, varnames, objects );
339 }
340
341 QMenu *QVLCMenu::NavigMenu( intf_thread_t *p_intf, QMenu *current )
342 {
343     vlc_object_t *p_object;
344     vector<int> objects;
345     vector<const char *> varnames;
346
347     /* FIXME */
348     p_object = (vlc_object_t *)vlc_object_find( p_intf, VLC_OBJECT_INPUT,
349             FIND_ANYWHERE );
350     if( p_object != NULL )
351     {
352         InputAutoMenuBuilder( p_object, objects, varnames );
353         PUSH_VAR( "prev-title"); PUSH_VAR ( "next-title" );
354         PUSH_VAR( "prev-chapter"); PUSH_VAR( "next-chapter" );
355         vlc_object_release( p_object );
356     }
357     return Populate( p_intf, current, varnames, objects );
358 }
359
360 QMenu *QVLCMenu::SDMenu( intf_thread_t *p_intf )
361 {
362     QMenu *menu = new QMenu();
363     menu->setTitle( qtr(I_PL_SD) );
364     vlc_list_t *p_list = vlc_list_find( p_intf, VLC_OBJECT_MODULE,
365             FIND_ANYWHERE );
366     int i_num = 0;
367     for( int i_index = 0 ; i_index < p_list->i_count; i_index++ )
368     {
369         module_t * p_parser = (module_t *)p_list->p_values[i_index].p_object ;
370         if( !strcmp( p_parser->psz_capability, "services_discovery" ) )
371             i_num++;
372     }
373     for( int i_index = 0 ; i_index < p_list->i_count; i_index++ )
374     {
375         module_t * p_parser = (module_t *)p_list->p_values[i_index].p_object;
376         if( !strcmp( p_parser->psz_capability, "services_discovery" ) )
377         {
378             QAction *a = new QAction( qfu( p_parser->psz_longname ), menu );
379             a->setCheckable( true );
380             /* hack to handle submodules properly */
381             int i = -1;
382             while( p_parser->pp_shortcuts[++i] != NULL );
383             i--;
384             if( playlist_IsServicesDiscoveryLoaded( THEPL,
385                         i>=0?p_parser->pp_shortcuts[i] : p_parser->psz_object_name ) )
386             {
387                 a->setChecked( true );
388             }
389             CONNECT( a , triggered(), THEDP->SDMapper, map() );
390             THEDP->SDMapper->setMapping( a, i>=0? p_parser->pp_shortcuts[i] :
391                     p_parser->psz_object_name );
392             menu->addAction( a );
393         }
394     }
395     vlc_list_release( p_list );
396     return menu;
397 }
398
399 QMenu *QVLCMenu::HelpMenu()
400 {
401     QMenu *menu = new QMenu();
402     DP_SADD( menu, qtr("Help") , "", "", helpDialog(), "F1" );
403     menu->addSeparator();
404     DP_SADD( menu, qtr(I_MENU_ABOUT), "", "", aboutDialog(), "Ctrl+F1");
405     return menu;
406 }
407
408
409 /*****************************************************************************
410  * Popup menus                                                               *
411  *****************************************************************************/
412 #define POPUP_BOILERPLATE \
413     unsigned int i_last_separator = 0; \
414     vector<int> objects; \
415     vector<const char *> varnames; \
416     input_thread_t *p_input = THEMIM->getInput();
417
418 #define CREATE_POPUP \
419     QMenu *menu = new QMenu(); \
420     Populate( p_intf, menu, varnames, objects ); \
421     p_intf->p_sys->p_popup_menu = menu; \
422     menu->popup( QCursor::pos() ); \
423     p_intf->p_sys->p_popup_menu = NULL; \
424     i_last_separator = 0;
425
426 #define POPUP_PLAY_ENTRIES( menu )\
427     vlc_value_t val; \
428     if( p_input ) \
429     { \
430         var_Get( p_input, "state", &val ); \
431         if( val.i_int == PLAYING_S ) \
432             MIM_SADD( menu, qtr("Pause"), "", "", togglePlayPause() ) \
433         else \
434             MIM_SADD( menu, qtr("Play"), "", "", togglePlayPause() ) \
435     } \
436     else if( THEPL->items.i_size && THEPL->i_enabled ) \
437         MIM_SADD( menu, qtr("Play"), "", "", togglePlayPause() ); \
438     \
439     MIM_SADD( menu, qtr("Stop"), "", "", stop() ); \
440     MIM_SADD( menu, qtr("Previous"), "", "", prev() ); \
441     MIM_SADD( menu, qtr("Next"), "", "", next() );
442
443 #define POPUP_STATIC_ENTRIES \
444     POPUP_PLAY_ENTRIES( menu ); \
445     \
446     menu->addSeparator(); \
447     QMenu *intfmenu = InterfacesMenu( p_intf, NULL ); \
448     intfmenu->setTitle( qtr("Interfaces" ) ); \
449     menu->addMenu( intfmenu ); \
450     \
451     QMenu *toolsmenu = ToolsMenu( p_intf, NULL, false, false, false ); \
452     toolsmenu->setTitle( qtr("Tools" ) ); \
453     menu->addMenu( toolsmenu ); \
454     \
455     QMenu *openmenu = new QMenu( qtr("Open") ); \
456     openmenu->addAction( qtr("Open &File..." ), THEDP, SLOT( openFileDialog() ) ); \
457     openmenu->addAction( qtr("Open &Disc..." ), THEDP, SLOT( openDiscDialog() ) ); \
458     openmenu->addAction( qtr("Open &Network..." ), THEDP, SLOT( openNetDialog() ) ); \
459     openmenu->addAction( qtr("Open &Capture Device..." ), THEDP, \
460             SLOT( openCaptureDialog() ) ); \
461     menu->addMenu( openmenu ); \
462     \
463     menu->addSeparator(); \
464     QMenu *helpmenu = HelpMenu(); \
465     helpmenu->setTitle( qtr("Help") ); \
466     menu->addMenu( helpmenu ); \
467     \
468     DP_SADD( menu, qtr("Quit"), "", "", quit() , "Ctrl+Q" );
469
470 void QVLCMenu::VideoPopupMenu( intf_thread_t *p_intf )
471 {
472     POPUP_BOILERPLATE;
473     if( p_input )
474     {
475         vlc_object_yield( p_input );
476         varnames.push_back( "video-es" );
477         objects.push_back( p_input->i_object_id );
478         varnames.push_back( "spu-es" );
479         objects.push_back( p_input->i_object_id );
480         vlc_object_t *p_vout = (vlc_object_t *)vlc_object_find( p_input,
481                 VLC_OBJECT_VOUT, FIND_CHILD );
482         if( p_vout )
483         {
484             VideoAutoMenuBuilder( p_vout, objects, varnames );
485             vlc_object_release( p_vout );
486         }
487         vlc_object_release( p_input );
488     }
489     CREATE_POPUP;
490 }
491
492 void QVLCMenu::AudioPopupMenu( intf_thread_t *p_intf )
493 {
494     POPUP_BOILERPLATE;
495     if( p_input )
496     {
497         vlc_object_yield( p_input );
498         varnames.push_back( "audio-es" );
499         objects.push_back( p_input->i_object_id );
500         vlc_object_t *p_aout = (vlc_object_t *)vlc_object_find( p_input,
501                 VLC_OBJECT_AOUT, FIND_ANYWHERE );
502         if( p_aout )
503         {
504             AudioAutoMenuBuilder( p_aout, objects, varnames );
505             vlc_object_release( p_aout );
506         }
507         vlc_object_release( p_input );
508     }
509     CREATE_POPUP;
510 }
511
512 /* Navigation stuff, and general */
513 void QVLCMenu::MiscPopupMenu( intf_thread_t *p_intf )
514 {
515     POPUP_BOILERPLATE;
516     if( p_input )
517     {
518         vlc_object_yield( p_input );
519         varnames.push_back( "audio-es" );
520         InputAutoMenuBuilder( VLC_OBJECT(p_input), objects, varnames );
521         PUSH_SEPARATOR;
522     }
523
524     QMenu *menu = new QMenu();
525     Populate( p_intf, menu, varnames, objects );
526     menu->addSeparator();
527     POPUP_STATIC_ENTRIES;
528
529     p_intf->p_sys->p_popup_menu = menu;
530     menu->popup( QCursor::pos() );
531     p_intf->p_sys->p_popup_menu = NULL;
532 }
533
534 void QVLCMenu::PopupMenu( intf_thread_t *p_intf, bool show )
535 {
536     if( show )
537     {
538         // create a  popup if there is none
539         if( ! p_intf->p_sys->p_popup_menu )
540         {
541             POPUP_BOILERPLATE;
542             if( p_input )
543             {
544                 vlc_object_yield( p_input );
545                 InputAutoMenuBuilder( VLC_OBJECT(p_input), objects, varnames );
546
547                 /* Video menu */
548                 PUSH_SEPARATOR;
549                 varnames.push_back( "video-es" );
550                 objects.push_back( p_input->i_object_id );
551                 varnames.push_back( "spu-es" );
552                 objects.push_back( p_input->i_object_id );
553                 vlc_object_t *p_vout = (vlc_object_t *)vlc_object_find( p_input,
554                         VLC_OBJECT_VOUT, FIND_CHILD );
555                 if( p_vout )
556                 {
557                     VideoAutoMenuBuilder( p_vout, objects, varnames );
558                     vlc_object_release( p_vout );
559                 }
560                 /* Audio menu */
561                 PUSH_SEPARATOR
562                     varnames.push_back( "audio-es" );
563                 objects.push_back( p_input->i_object_id );
564                 vlc_object_t *p_aout = (vlc_object_t *)vlc_object_find( p_input,
565                         VLC_OBJECT_AOUT, FIND_ANYWHERE );
566                 if( p_aout )
567                 {
568                     AudioAutoMenuBuilder( p_aout, objects, varnames );
569                     vlc_object_release( p_aout );
570                 }
571             }
572
573             QMenu *menu = new QMenu();
574             Populate( p_intf, menu, varnames, objects );
575             menu->addSeparator();
576             POPUP_STATIC_ENTRIES;
577
578             p_intf->p_sys->p_popup_menu = menu;
579         }
580         p_intf->p_sys->p_popup_menu->popup( QCursor::pos() );
581     }
582     else
583     {
584         // destroy popup if there is one
585         delete p_intf->p_sys->p_popup_menu;
586         p_intf->p_sys->p_popup_menu = NULL;
587     }
588 }
589
590 /************************************************************************
591  * Systray Menu                                                         *
592  ************************************************************************/
593
594 void QVLCMenu::updateSystrayMenu( MainInterface *mi, intf_thread_t *p_intf,
595                                     bool b_force_visible )
596 {
597     POPUP_BOILERPLATE;
598     QMenu *sysMenu = mi->getSysTrayMenu();
599     sysMenu->clear();
600     DP_SADD( sysMenu, qtr("&About VLC media player" ), "", "",
601             aboutDialog(), "" );
602     sysMenu->addSeparator();
603     POPUP_PLAY_ENTRIES( sysMenu );
604     sysMenu->addSeparator();
605     DP_SADD( sysMenu, qtr("&Open" ), "", "", openFileDialog(), "" );
606     sysMenu->addSeparator();
607
608     if( !mi->isVisible() || b_force_visible )
609     {
610         sysMenu->addAction( qtr("Hide Interface"), mi,
611                 SLOT( toggleUpdateSystrayMenu() ) );
612     }
613     else
614     {
615         sysMenu->addAction( qtr("Show Interface"), mi,
616                 SLOT( toggleUpdateSystrayMenu() ) );
617     }
618     DP_SADD( sysMenu, qtr("&Quit") , "", "", quit(), "" );
619
620     mi->getSysTray()->setContextMenu( sysMenu );
621 }
622
623 #undef PUSH_VAR
624 #undef PUSH_SEPARATOR
625
626
627 /*************************************************************************
628  * Builders for automenus
629  *************************************************************************/
630 QMenu * QVLCMenu::Populate( intf_thread_t *p_intf, QMenu *current,
631         vector< const char *> & varnames,
632         vector<int> & objects, bool append )
633 {
634     QMenu *menu = current;
635     if( !menu )
636         menu = new QMenu();
637     else if( !append )
638         menu->clear();
639
640     currentGroup = NULL;
641
642     vlc_object_t *p_object;
643     vlc_bool_t b_section_empty = VLC_FALSE;
644     int i;
645
646 #define APPEND_EMPTY { QAction *action = menu->addAction( qtr("Empty" ) ); \
647     action->setEnabled( false ); }
648
649     for( i = 0; i < (int)objects.size() ; i++ )
650     {
651         if( !varnames[i] || !*varnames[i] )
652         {
653             if( b_section_empty )
654                 APPEND_EMPTY;
655             menu->addSeparator();
656             b_section_empty = VLC_TRUE;
657             continue;
658         }
659
660         if( objects[i] == 0  )
661         {
662             /// \bug What is this ?
663             // Append( menu, varnames[i], NULL );
664             b_section_empty = VLC_FALSE;
665             continue;
666         }
667
668         p_object = (vlc_object_t *)vlc_object_get( p_intf,
669                 objects[i] );
670         if( p_object == NULL ) continue;
671
672         b_section_empty = VLC_FALSE;
673         /* Ugly specific stuff */
674         if( strstr(varnames[i], "intf-add" ) )
675             CreateItem( menu, varnames[i], p_object, false );
676         else
677             CreateItem( menu, varnames[i], p_object, true );
678         vlc_object_release( p_object );
679     }
680
681     /* Special case for empty menus */
682     if( menu->actions().size() == 0 || b_section_empty )
683         APPEND_EMPTY
684
685             return menu;
686 }
687
688 /*****************************************************************************
689  * Private methods.
690  *****************************************************************************/
691
692 static bool IsMenuEmpty( const char *psz_var, vlc_object_t *p_object,
693         bool b_root = TRUE )
694 {
695     vlc_value_t val, val_list;
696     int i_type, i_result, i;
697
698     /* Check the type of the object variable */
699     i_type = var_Type( p_object, psz_var );
700
701     /* Check if we want to display the variable */
702     if( !(i_type & VLC_VAR_HASCHOICE) ) return FALSE;
703
704     var_Change( p_object, psz_var, VLC_VAR_CHOICESCOUNT, &val, NULL );
705     if( val.i_int == 0 ) return TRUE;
706
707     if( (i_type & VLC_VAR_TYPE) != VLC_VAR_VARIABLE )
708     {
709         /* Very evil hack ! intf-switch can have only one value */
710         if( !strcmp( psz_var, "intf-switch" ) ) return FALSE;
711         if( val.i_int == 1 && b_root ) return TRUE;
712         else return FALSE;
713     }
714
715     /* Check children variables in case of VLC_VAR_VARIABLE */
716     if( var_Change( p_object, psz_var, VLC_VAR_GETLIST, &val_list, NULL ) < 0 )
717     {
718         return TRUE;
719     }
720
721     for( i = 0, i_result = TRUE; i < val_list.p_list->i_count; i++ )
722     {
723         if( !IsMenuEmpty( val_list.p_list->p_values[i].psz_string,
724                     p_object, FALSE ) )
725         {
726             i_result = FALSE;
727             break;
728         }
729     }
730
731     /* clean up everything */
732     var_Change( p_object, psz_var, VLC_VAR_FREELIST, &val_list, NULL );
733
734     return i_result;
735 }
736
737 void QVLCMenu::CreateItem( QMenu *menu, const char *psz_var,
738         vlc_object_t *p_object, bool b_submenu )
739 {
740     vlc_value_t val, text;
741     int i_type;
742
743     /* Check the type of the object variable */
744     i_type = var_Type( p_object, psz_var );
745
746     switch( i_type & VLC_VAR_TYPE )
747     {
748         case VLC_VAR_VOID:
749         case VLC_VAR_BOOL:
750         case VLC_VAR_VARIABLE:
751         case VLC_VAR_STRING:
752         case VLC_VAR_INTEGER:
753         case VLC_VAR_FLOAT:
754             break;
755         default:
756             /* Variable doesn't exist or isn't handled */
757             return;
758     }
759
760     /* Make sure we want to display the variable */
761     if( IsMenuEmpty( psz_var, p_object ) )  return;
762
763     /* Get the descriptive name of the variable */
764     var_Change( p_object, psz_var, VLC_VAR_GETTEXT, &text, NULL );
765
766     if( i_type & VLC_VAR_HASCHOICE )
767     {
768         /* Append choices menu */
769         if( b_submenu )
770         {
771             QMenu *submenu = new QMenu();
772             submenu->setTitle( qfu( text.psz_string ?
773                         text.psz_string : psz_var ) );
774             if( CreateChoicesMenu( submenu, psz_var, p_object, true ) == 0)
775                 menu->addMenu( submenu );
776         }
777         else
778             CreateChoicesMenu( menu, psz_var, p_object, true );
779         FREENULL( text.psz_string );
780         return;
781     }
782
783 #define TEXT_OR_VAR qfu ( text.psz_string ? text.psz_string : psz_var )
784
785     switch( i_type & VLC_VAR_TYPE )
786     {
787         case VLC_VAR_VOID:
788             var_Get( p_object, psz_var, &val );
789             CreateAndConnect( menu, psz_var, TEXT_OR_VAR, "", ITEM_NORMAL,
790                     p_object->i_object_id, val, i_type );
791             break;
792
793         case VLC_VAR_BOOL:
794             var_Get( p_object, psz_var, &val );
795             val.b_bool = !val.b_bool;
796             CreateAndConnect( menu, psz_var, TEXT_OR_VAR, "", ITEM_CHECK,
797                     p_object->i_object_id, val, i_type, !val.b_bool );
798             break;
799     }
800     FREENULL( text.psz_string );
801 }
802
803
804 int QVLCMenu::CreateChoicesMenu( QMenu *submenu, const char *psz_var,
805         vlc_object_t *p_object, bool b_root )
806 {
807     vlc_value_t val, val_list, text_list;
808     int i_type, i;
809
810     /* Check the type of the object variable */
811     i_type = var_Type( p_object, psz_var );
812
813     /* Make sure we want to display the variable */
814     if( IsMenuEmpty( psz_var, p_object, b_root ) ) return VLC_EGENERIC;
815
816     switch( i_type & VLC_VAR_TYPE )
817     {
818         case VLC_VAR_VOID:
819         case VLC_VAR_BOOL:
820         case VLC_VAR_VARIABLE:
821         case VLC_VAR_STRING:
822         case VLC_VAR_INTEGER:
823         case VLC_VAR_FLOAT:
824             break;
825         default:
826             /* Variable doesn't exist or isn't handled */
827             return VLC_EGENERIC;
828     }
829
830     if( var_Change( p_object, psz_var, VLC_VAR_GETLIST,
831                 &val_list, &text_list ) < 0 )
832     {
833         return VLC_EGENERIC;
834     }
835 #define NORMAL_OR_RADIO i_type & VLC_VAR_ISCOMMAND ? ITEM_NORMAL: ITEM_RADIO
836 #define NOTCOMMAND !(i_type & VLC_VAR_ISCOMMAND)
837 #define CURVAL val_list.p_list->p_values[i]
838 #define CURTEXT text_list.p_list->p_values[i].psz_string
839
840     for( i = 0; i < val_list.p_list->i_count; i++ )
841     {
842         vlc_value_t another_val;
843         QString menutext;
844         QMenu *subsubmenu = new QMenu();
845
846         switch( i_type & VLC_VAR_TYPE )
847         {
848             case VLC_VAR_VARIABLE:
849                 CreateChoicesMenu( subsubmenu, CURVAL.psz_string, p_object, false );
850                 subsubmenu->setTitle( qfu( CURTEXT ? CURTEXT :CURVAL.psz_string ) );
851                 submenu->addMenu( subsubmenu );
852                 break;
853
854             case VLC_VAR_STRING:
855                 var_Get( p_object, psz_var, &val );
856                 another_val.psz_string = strdup( CURVAL.psz_string );
857                 menutext = qfu( CURTEXT ? CURTEXT : another_val.psz_string );
858                 CreateAndConnect( submenu, psz_var, menutext, "", NORMAL_OR_RADIO,
859                         p_object->i_object_id, another_val, i_type,
860                         NOTCOMMAND && val.psz_string &&
861                         !strcmp( val.psz_string, CURVAL.psz_string ) );
862
863                 if( val.psz_string ) free( val.psz_string );
864                 break;
865
866             case VLC_VAR_INTEGER:
867                 var_Get( p_object, psz_var, &val );
868                 if( CURTEXT ) menutext = qfu( CURTEXT );
869                 else menutext.sprintf( "%d", CURVAL.i_int);
870                 CreateAndConnect( submenu, psz_var, menutext, "", NORMAL_OR_RADIO,
871                         p_object->i_object_id, CURVAL, i_type,
872                         NOTCOMMAND && CURVAL.i_int == val.i_int );
873                 break;
874
875             case VLC_VAR_FLOAT:
876                 var_Get( p_object, psz_var, &val );
877                 if( CURTEXT ) menutext = qfu( CURTEXT );
878                 else menutext.sprintf( "%.2f", CURVAL.f_float );
879                 CreateAndConnect( submenu, psz_var, menutext, "", NORMAL_OR_RADIO,
880                         p_object->i_object_id, CURVAL, i_type,
881                         NOTCOMMAND && CURVAL.f_float == val.f_float );
882                 break;
883
884             default:
885                 break;
886         }
887     }
888     currentGroup = NULL;
889
890     /* clean up everything */
891     var_Change( p_object, psz_var, VLC_VAR_FREELIST, &val_list, &text_list );
892
893 #undef NORMAL_OR_RADIO
894 #undef NOTCOMMAND
895 #undef CURVAL
896 #undef CURTEXT
897     return VLC_SUCCESS;
898 }
899
900 void QVLCMenu::CreateAndConnect( QMenu *menu, const char *psz_var,
901         QString text, QString help,
902         int i_item_type, int i_object_id,
903         vlc_value_t val, int i_val_type,
904         bool checked )
905 {
906     QAction *action = new QAction( text, menu );
907     action->setText( text );
908     action->setToolTip( help );
909
910     if( i_item_type == ITEM_CHECK )
911     {
912         action->setCheckable( true );
913     }
914     else if( i_item_type == ITEM_RADIO )
915     {
916         action->setCheckable( true );
917         if( !currentGroup )
918             currentGroup = new QActionGroup(menu);
919         currentGroup->addAction( action );
920     }
921
922     if( checked )
923     {
924         action->setChecked( true );
925     }
926     MenuItemData *itemData = new MenuItemData( i_object_id, i_val_type,
927             val, psz_var );
928     CONNECT( action, triggered(), THEDP->menusMapper, map() );
929     THEDP->menusMapper->setMapping( action, itemData );
930     menu->addAction( action );
931 }
932
933 void QVLCMenu::DoAction( intf_thread_t *p_intf, QObject *data )
934 {
935     MenuItemData *itemData = qobject_cast<MenuItemData *>(data);
936     vlc_object_t *p_object = (vlc_object_t *)vlc_object_get( p_intf,
937             itemData->i_object_id );
938     if( p_object == NULL ) return;
939
940     var_Set( p_object, itemData->psz_var, itemData->val );
941     vlc_object_release( p_object );}