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