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