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