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