]> git.sesse.net Git - vlc/blob - modules/gui/qt4/menus.cpp
Add a podcast configuration dialog to the Qt4 interface/dialogs provider.
[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, bool adv_controls_enabled,
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, adv_controls_enabled,
177                 visual_selector_enabled ), qtr("&Tools") );
178     BAR_DADD( VideoMenu( p_intf, NULL ), qtr("&Video"), 1 );
179     BAR_DADD( AudioMenu( p_intf, NULL ), qtr("&Audio"), 2 );
180     BAR_DADD( NavigMenu( p_intf, NULL ), qtr("&Navigation"), 3 );
181
182     BAR_ADD( HelpMenu(), qtr("&Help" ) );
183 }
184
185 /**
186  * Media (File) Menu
187  * Opening, streaming and quit
188  **/
189 QMenu *QVLCMenu::FileMenu()
190 {
191     QMenu *menu = new QMenu();
192     DP_SADD( menu, qtr("Open &File..." ), "",
193             ":/pixmaps/vlc_file-asym_16px.png", openFileDialog(), "Ctrl+O" );
194
195     /* Folder vs. Directory */
196 #ifdef WIN32
197     DP_SADD( menu, qtr( "Open Folder..." ), "",
198             ":/pixmaps/vlc_folder-grey_16px.png", openDirDialog(), "Ctrl+F" );
199 #else
200     DP_SADD( menu, qtr( "Open Directory..." ), "",
201             ":/pixmaps/vlc_folder-grey_16px.png", openDirDialog(), "Ctrl+F" );
202 #endif /* WIN32 */
203
204     DP_SADD( menu, qtr("Open &Disc..." ), "", ":/pixmaps/vlc_disc_16px.png",
205              openDiscDialog(), "Ctrl+D" );
206     DP_SADD( menu, qtr("Open &Network..." ), "",
207                 ":/pixmaps/vlc_network_16px.png", openNetDialog(), "Ctrl+N" );
208     DP_SADD( menu, qtr("Open &Capture Device..." ), "",
209             ":/pixmaps/vlc_capture-card_16px.png", openCaptureDialog(),
210             "Ctrl+C" );
211     menu->addSeparator();
212     DP_SADD( menu, qtr("&Streaming..."), "", ":/pixmaps/vlc_stream_16px.png",
213             openThenStreamingDialogs(), "Ctrl+S" );
214     DP_SADD( menu, qtr("Conve&rt / Save..."), "", "",
215             openThenTranscodingDialogs(), "Ctrl+R" );
216     menu->addSeparator();
217     DP_SADD( menu, qtr("&Quit") , "", ":/pixmaps/vlc_quit_16px.png", quit(),
218             "Ctrl+Q");
219     return menu;
220 }
221
222 /* Playlist Menu, undocked when playlist is undocked */
223 QMenu *QVLCMenu::PlaylistMenu( MainInterface *mi, intf_thread_t *p_intf )
224 {
225     QMenu *menu = new QMenu();
226     menu->addMenu( SDMenu( p_intf ) );
227     menu->addAction ( QIcon(":/pixmaps/vlc_playlist_16px.png"),
228                       qtr( "Show Playlist"), mi, SLOT( togglePlaylist() ) );
229     menu->addSeparator();
230
231     DP_SADD( menu, qtr( I_PL_LOAD ), "", "", openPlaylist(), "Ctrl+X" );
232     DP_SADD( menu, qtr( I_PL_SAVE ), "", "", savePlaylist(), "Ctrl+Y" );
233     menu->addSeparator();
234     menu->addAction( qtr("Undock from interface"), mi,
235             SLOT( undockPlaylist() ), qtr("Ctrl+U") );
236     return menu;
237 }
238
239 /**
240  * Tools/View Menu
241  * This is kept in the same menu for now, but could change if it gets much
242  * longer.
243  **/
244 QMenu *QVLCMenu::ToolsMenu( intf_thread_t *p_intf, MainInterface *mi,
245         bool adv_controls_enabled,
246         bool visual_selector_enabled, bool with_intf )
247 {
248     QMenu *menu = new QMenu();
249     if( with_intf )
250     {
251         QMenu *intfmenu = InterfacesMenu( p_intf, NULL );
252         intfmenu->setTitle( qtr("Interfaces" ) );
253         menu->addMenu( intfmenu );
254         menu->addSeparator();
255     }
256     DP_SADD( menu, qtr( I_MENU_MSG ), "", ":/pixmaps/vlc_messages_16px.png",
257              messagesDialog(), "Ctrl+M" );
258     DP_SADD( menu, qtr( I_MENU_INFO ) , "", "", mediaInfoDialog(), "Ctrl+J" );
259     DP_SADD( menu, qtr( I_MENU_CODECINFO ) , "", ":/pixmaps/vlc_info_16px.png",
260              mediaCodecDialog(), "Ctrl+I" );
261     DP_SADD( menu, qtr( I_MENU_GOTOTIME ), "","", gotoTimeDialog(), "Ctrl+T" );
262 #if 0 /* Not Implemented yet */
263     DP_SADD( menu, qtr( I_MENU_BOOKMARK ), "","", bookmarksDialog(), "Ctrl+B" );
264     DP_SADD( menu, qtr( I_MENU_VLM ), "","", vlmDialog(), "Ctrl+V" );
265 #endif
266
267     menu->addSeparator();
268     if( mi )
269     {
270         QAction *adv = menu->addAction( qtr("Advanced controls" ),
271                 mi, SLOT( toggleAdvanced() ) );
272         adv->setCheckable( true );
273         if( adv_controls_enabled ) adv->setChecked( true );
274
275         menu->addAction( qtr( "Hide Menus..." ), mi, SLOT( toggleMenus() ),
276                 qtr( "Ctrl+H") );
277         menu->addSeparator();
278
279 #if 0 /* For Visualisations. Not yet working */
280         adv = menu->addAction( qtr("Visualizations selector" ),
281                 mi, SLOT( visual() ) );
282         adv->setCheckable( true );
283         if( visual_selector_enabled ) adv->setChecked( true );
284 #endif
285         menu->addAction ( QIcon(":/pixmaps/vlc_playlist_16px.png"),
286                           qtr( "Playlist"), mi, SLOT( togglePlaylist() ),
287                           qtr( "Ctrl+L") );
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 Menu
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, 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                 /* Video menu */
612                 PUSH_SEPARATOR;
613                 varnames.push_back( "video-es" );
614                 objects.push_back( p_input->i_object_id );
615                 varnames.push_back( "spu-es" );
616                 objects.push_back( p_input->i_object_id );
617                 vlc_object_t *p_vout = (vlc_object_t *)vlc_object_find( p_input,
618                         VLC_OBJECT_VOUT, FIND_CHILD );
619                 if( p_vout )
620                 {
621                     VideoAutoMenuBuilder( p_vout, objects, varnames );
622                     vlc_object_release( p_vout );
623                 }
624                 /* Audio menu */
625                 PUSH_SEPARATOR
626                     varnames.push_back( "audio-es" );
627                 objects.push_back( p_input->i_object_id );
628                 vlc_object_t *p_aout = (vlc_object_t *)vlc_object_find( p_input,
629                         VLC_OBJECT_AOUT, FIND_ANYWHERE );
630                 if( p_aout )
631                 {
632                     AudioAutoMenuBuilder( p_aout, objects, varnames );
633                     vlc_object_release( p_aout );
634                 }
635             }
636
637             QMenu *menu = new QMenu();
638             Populate( p_intf, menu, varnames, objects );
639             menu->addSeparator();
640             POPUP_PLAY_ENTRIES( menu );
641             menu->addSeparator();
642             POPUP_STATIC_ENTRIES( menu );
643
644             p_intf->p_sys->p_popup_menu = menu;
645         }
646         p_intf->p_sys->p_popup_menu->popup( QCursor::pos() );
647     }
648     else
649     {
650         // destroy popup if there is one
651         delete p_intf->p_sys->p_popup_menu;
652         p_intf->p_sys->p_popup_menu = NULL;
653     }
654 }
655
656 /************************************************************************
657  * Systray Menu                                                         *
658  ************************************************************************/
659
660 void QVLCMenu::updateSystrayMenu( MainInterface *mi,
661                                   intf_thread_t *p_intf,
662                                   bool b_force_visible )
663 {
664     POPUP_BOILERPLATE;
665
666     /* Get the systray menu and clean it */
667     QMenu *sysMenu = mi->getSysTrayMenu();
668     sysMenu->clear();
669
670     /* Hide / Show VLC and cone */
671     if( mi->isVisible() || b_force_visible )
672     {
673         sysMenu->addAction( QIcon( ":/vlc16.png" ),
674                 qtr("Hide VLC media player"), mi,
675                 SLOT( toggleUpdateSystrayMenu() ) );
676     }
677     else
678     {
679         sysMenu->addAction( QIcon( ":/vlc16.png" ),
680                 qtr("Show VLC media player"), mi,
681                 SLOT( toggleUpdateSystrayMenu() ) );
682     }
683
684     sysMenu->addSeparator();
685     POPUP_PLAY_ENTRIES( sysMenu );
686
687     sysMenu->addSeparator();
688     DP_SADD( sysMenu, qtr("&Open Media" ), "",
689             ":/pixmaps/vlc_file-wide_16px.png", openFileDialog(), "" );
690     DP_SADD( sysMenu, qtr("&Quit") , "", ":/pixmaps/vlc_quit_16px.png",
691              quit(), "" );
692
693     /* Set the menu */
694     mi->getSysTray()->setContextMenu( sysMenu );
695 }
696
697 #undef PUSH_VAR
698 #undef PUSH_SEPARATOR
699
700
701 /*************************************************************************
702  * Builders for automenus
703  *************************************************************************/
704 QMenu * QVLCMenu::Populate( intf_thread_t *p_intf, QMenu *current,
705         vector< const char *> & varnames,
706         vector<int> & objects, bool append )
707 {
708     QMenu *menu = current;
709     if( !menu )
710         menu = new QMenu();
711     else if( !append )
712         menu->clear();
713
714     currentGroup = NULL;
715
716     vlc_object_t *p_object;
717     vlc_bool_t b_section_empty = VLC_FALSE;
718     int i;
719
720 #define APPEND_EMPTY { QAction *action = menu->addAction( qtr("Empty" ) ); \
721     action->setEnabled( false ); }
722
723     for( i = 0; i < (int)objects.size() ; i++ )
724     {
725         if( !varnames[i] || !*varnames[i] )
726         {
727             if( b_section_empty )
728                 APPEND_EMPTY;
729             menu->addSeparator();
730             b_section_empty = VLC_TRUE;
731             continue;
732         }
733
734         if( objects[i] == 0  )
735         {
736             /// \bug What is this ?
737             // Append( menu, varnames[i], NULL );
738             b_section_empty = VLC_FALSE;
739             continue;
740         }
741
742         p_object = (vlc_object_t *)vlc_object_get( p_intf,
743                 objects[i] );
744         if( p_object == NULL ) continue;
745
746         b_section_empty = VLC_FALSE;
747         /* Ugly specific stuff */
748         if( strstr(varnames[i], "intf-add" ) )
749             CreateItem( menu, varnames[i], p_object, false );
750         else
751             CreateItem( menu, varnames[i], p_object, true );
752         vlc_object_release( p_object );
753     }
754
755     /* Special case for empty menus */
756     if( menu->actions().size() == 0 || b_section_empty )
757         APPEND_EMPTY
758
759             return menu;
760 }
761
762 /*****************************************************************************
763  * Private methods.
764  *****************************************************************************/
765
766 static bool IsMenuEmpty( const char *psz_var, vlc_object_t *p_object,
767         bool b_root = TRUE )
768 {
769     vlc_value_t val, val_list;
770     int i_type, i_result, i;
771
772     /* Check the type of the object variable */
773     i_type = var_Type( p_object, psz_var );
774
775     /* Check if we want to display the variable */
776     if( !(i_type & VLC_VAR_HASCHOICE) ) return FALSE;
777
778     var_Change( p_object, psz_var, VLC_VAR_CHOICESCOUNT, &val, NULL );
779     if( val.i_int == 0 ) return TRUE;
780
781     if( (i_type & VLC_VAR_TYPE) != VLC_VAR_VARIABLE )
782     {
783         /* Very evil hack ! intf-switch can have only one value */
784         if( !strcmp( psz_var, "intf-switch" ) ) return FALSE;
785         if( val.i_int == 1 && b_root ) return TRUE;
786         else return FALSE;
787     }
788
789     /* Check children variables in case of VLC_VAR_VARIABLE */
790     if( var_Change( p_object, psz_var, VLC_VAR_GETLIST, &val_list, NULL ) < 0 )
791     {
792         return TRUE;
793     }
794
795     for( i = 0, i_result = TRUE; i < val_list.p_list->i_count; i++ )
796     {
797         if( !IsMenuEmpty( val_list.p_list->p_values[i].psz_string,
798                     p_object, FALSE ) )
799         {
800             i_result = FALSE;
801             break;
802         }
803     }
804
805     /* clean up everything */
806     var_Change( p_object, psz_var, VLC_VAR_FREELIST, &val_list, NULL );
807
808     return i_result;
809 }
810
811 void QVLCMenu::CreateItem( QMenu *menu, const char *psz_var,
812         vlc_object_t *p_object, bool b_submenu )
813 {
814     vlc_value_t val, text;
815     int i_type;
816
817     /* Check the type of the object variable */
818     i_type = var_Type( p_object, psz_var );
819
820     switch( i_type & VLC_VAR_TYPE )
821     {
822         case VLC_VAR_VOID:
823         case VLC_VAR_BOOL:
824         case VLC_VAR_VARIABLE:
825         case VLC_VAR_STRING:
826         case VLC_VAR_INTEGER:
827         case VLC_VAR_FLOAT:
828             break;
829         default:
830             /* Variable doesn't exist or isn't handled */
831             return;
832     }
833
834     /* Make sure we want to display the variable */
835     if( IsMenuEmpty( psz_var, p_object ) )  return;
836
837     /* Get the descriptive name of the variable */
838     var_Change( p_object, psz_var, VLC_VAR_GETTEXT, &text, NULL );
839
840     if( i_type & VLC_VAR_HASCHOICE )
841     {
842         /* Append choices menu */
843         if( b_submenu )
844         {
845             QMenu *submenu = new QMenu();
846             submenu->setTitle( qfu( text.psz_string ?
847                         text.psz_string : psz_var ) );
848             if( CreateChoicesMenu( submenu, psz_var, p_object, true ) == 0)
849                 menu->addMenu( submenu );
850         }
851         else
852             CreateChoicesMenu( menu, psz_var, p_object, true );
853         FREENULL( text.psz_string );
854         return;
855     }
856
857 #define TEXT_OR_VAR qfu ( text.psz_string ? text.psz_string : psz_var )
858
859     switch( i_type & VLC_VAR_TYPE )
860     {
861         case VLC_VAR_VOID:
862             var_Get( p_object, psz_var, &val );
863             CreateAndConnect( menu, psz_var, TEXT_OR_VAR, "", ITEM_NORMAL,
864                     p_object->i_object_id, val, i_type );
865             break;
866
867         case VLC_VAR_BOOL:
868             var_Get( p_object, psz_var, &val );
869             val.b_bool = !val.b_bool;
870             CreateAndConnect( menu, psz_var, TEXT_OR_VAR, "", ITEM_CHECK,
871                     p_object->i_object_id, val, i_type, !val.b_bool );
872             break;
873     }
874     FREENULL( text.psz_string );
875 }
876
877
878 int QVLCMenu::CreateChoicesMenu( QMenu *submenu, const char *psz_var,
879         vlc_object_t *p_object, bool b_root )
880 {
881     vlc_value_t val, val_list, text_list;
882     int i_type, i;
883
884     /* Check the type of the object variable */
885     i_type = var_Type( p_object, psz_var );
886
887     /* Make sure we want to display the variable */
888     if( IsMenuEmpty( psz_var, p_object, b_root ) ) return VLC_EGENERIC;
889
890     switch( i_type & VLC_VAR_TYPE )
891     {
892         case VLC_VAR_VOID:
893         case VLC_VAR_BOOL:
894         case VLC_VAR_VARIABLE:
895         case VLC_VAR_STRING:
896         case VLC_VAR_INTEGER:
897         case VLC_VAR_FLOAT:
898             break;
899         default:
900             /* Variable doesn't exist or isn't handled */
901             return VLC_EGENERIC;
902     }
903
904     if( var_Change( p_object, psz_var, VLC_VAR_GETLIST,
905                 &val_list, &text_list ) < 0 )
906     {
907         return VLC_EGENERIC;
908     }
909 #define NORMAL_OR_RADIO i_type & VLC_VAR_ISCOMMAND ? ITEM_NORMAL: ITEM_RADIO
910 #define NOTCOMMAND !(i_type & VLC_VAR_ISCOMMAND)
911 #define CURVAL val_list.p_list->p_values[i]
912 #define CURTEXT text_list.p_list->p_values[i].psz_string
913
914     for( i = 0; i < val_list.p_list->i_count; i++ )
915     {
916         vlc_value_t another_val;
917         QString menutext;
918         QMenu *subsubmenu = new QMenu();
919
920         switch( i_type & VLC_VAR_TYPE )
921         {
922             case VLC_VAR_VARIABLE:
923                 CreateChoicesMenu( subsubmenu, CURVAL.psz_string, p_object, false );
924                 subsubmenu->setTitle( qfu( CURTEXT ? CURTEXT :CURVAL.psz_string ) );
925                 submenu->addMenu( subsubmenu );
926                 break;
927
928             case VLC_VAR_STRING:
929                 var_Get( p_object, psz_var, &val );
930                 another_val.psz_string = strdup( CURVAL.psz_string );
931                 menutext = qfu( CURTEXT ? CURTEXT : another_val.psz_string );
932                 CreateAndConnect( submenu, psz_var, menutext, "", NORMAL_OR_RADIO,
933                         p_object->i_object_id, another_val, i_type,
934                         NOTCOMMAND && val.psz_string &&
935                         !strcmp( val.psz_string, CURVAL.psz_string ) );
936
937                 if( val.psz_string ) free( val.psz_string );
938                 break;
939
940             case VLC_VAR_INTEGER:
941                 var_Get( p_object, psz_var, &val );
942                 if( CURTEXT ) menutext = qfu( CURTEXT );
943                 else menutext.sprintf( "%d", CURVAL.i_int);
944                 CreateAndConnect( submenu, psz_var, menutext, "", NORMAL_OR_RADIO,
945                         p_object->i_object_id, CURVAL, i_type,
946                         NOTCOMMAND && CURVAL.i_int == val.i_int );
947                 break;
948
949             case VLC_VAR_FLOAT:
950                 var_Get( p_object, psz_var, &val );
951                 if( CURTEXT ) menutext = qfu( CURTEXT );
952                 else menutext.sprintf( "%.2f", CURVAL.f_float );
953                 CreateAndConnect( submenu, psz_var, menutext, "", NORMAL_OR_RADIO,
954                         p_object->i_object_id, CURVAL, i_type,
955                         NOTCOMMAND && CURVAL.f_float == val.f_float );
956                 break;
957
958             default:
959                 break;
960         }
961     }
962     currentGroup = NULL;
963
964     /* clean up everything */
965     var_Change( p_object, psz_var, VLC_VAR_FREELIST, &val_list, &text_list );
966
967 #undef NORMAL_OR_RADIO
968 #undef NOTCOMMAND
969 #undef CURVAL
970 #undef CURTEXT
971     return VLC_SUCCESS;
972 }
973
974 void QVLCMenu::CreateAndConnect( QMenu *menu, const char *psz_var,
975         QString text, QString help,
976         int i_item_type, int i_object_id,
977         vlc_value_t val, int i_val_type,
978         bool checked )
979 {
980     QAction *action = new QAction( text, menu );
981     action->setText( text );
982     action->setToolTip( help );
983
984     if( i_item_type == ITEM_CHECK )
985     {
986         action->setCheckable( true );
987     }
988     else if( i_item_type == ITEM_RADIO )
989     {
990         action->setCheckable( true );
991         if( !currentGroup )
992             currentGroup = new QActionGroup( menu );
993         currentGroup->addAction( action );
994     }
995
996     if( checked )
997     {
998         action->setChecked( true );
999     }
1000     MenuItemData *itemData = new MenuItemData( i_object_id, i_val_type,
1001             val, psz_var );
1002     CONNECT( action, triggered(), THEDP->menusMapper, map() );
1003     THEDP->menusMapper->setMapping( action, itemData );
1004     menu->addAction( action );
1005 }
1006
1007 void QVLCMenu::DoAction( intf_thread_t *p_intf, QObject *data )
1008 {
1009     MenuItemData *itemData = qobject_cast<MenuItemData *>(data);
1010     vlc_object_t *p_object = (vlc_object_t *)vlc_object_get( p_intf,
1011             itemData->i_object_id );
1012     if( p_object == NULL ) return;
1013
1014     var_Set( p_object, itemData->psz_var, itemData->val );
1015     vlc_object_release( p_object );
1016 }
1017