]> git.sesse.net Git - vlc/blob - modules/gui/qt4/menus.cpp
Qt: memory leak
[vlc] / modules / gui / qt4 / menus.cpp
1 /*****************************************************************************
2  * menus.cpp : Qt menus
3  *****************************************************************************
4  * Copyright © 2006-2009 the VideoLAN team
5  * $Id$
6  *
7  * Authors: Clément Stenac <zorglub@videolan.org>
8  *          Jean-Baptiste Kempf <jb@videolan.org>
9  *          Jean-Philippe André <jpeg@videolan.org>
10  *
11  * This program is free software; you can redistribute it and/or modify
12  * it under the terms of the GNU General Public License as published by
13  * the Free Software Foundation; either version 2 of the License, or
14  * ( at your option ) any later version.
15  *
16  * This program is distributed in the hope that it will be useful,
17  * but WITHOUT ANY WARRANTY; without even the implied warranty of
18  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
19  * GNU General Public License for more details.
20  *
21  * You should have received a copy of the GNU General Public License
22  * along with this program; if not, write to the Free Software
23  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
24  *****************************************************************************/
25
26 /** \todo
27  * - Remove static currentGroup
28  */
29
30 #ifdef HAVE_CONFIG_H
31 # include "config.h"
32 #endif
33
34 #include <vlc_intf_strings.h>
35 #include <vlc_services_discovery.h>
36 #include <vlc_aout.h>
37 #include <vlc_vout.h>
38
39 #include "menus.hpp"
40
41 #include "main_interface.hpp"    /* View modifications */
42 #include "dialogs_provider.hpp"  /* Dialogs display */
43 #include "input_manager.hpp"     /* Input Management */
44 #include "recents.hpp"           /* Recent Items */
45 #include "actions_manager.hpp"
46 #include "extensions_manager.hpp"
47
48 #include <QMenu>
49 #include <QMenuBar>
50 #include <QAction>
51 #include <QActionGroup>
52 #include <QSignalMapper>
53 #include <QSystemTrayIcon>
54 #include <QList>
55
56 /*
57   This file defines the main menus and the pop-up menu (right-click menu)
58   and the systray menu (in that order in the file)
59
60   There are 3 menus that have to be rebuilt everytime there are called:
61   Audio, Video, Navigation
62   3 functions are building those menus: AudioMenu, VideoMenu, NavigMenu
63   and 3 functions associated are collecting the objects :
64   InputAutoMenuBuilder, AudioAutoMenuBuilder, VideoAutoMenuBuilder.
65
66   A QSignalMapper decides when to rebuild those menus cf MenuFunc in the .hpp
67   Just before one of those menus are aboutToShow(), they are rebuild.
68   */
69
70 #define STATIC_ENTRY "__static__"
71 #define ENTRY_ALWAYS_ENABLED "__ignore__"
72
73 enum
74 {
75     ITEM_NORMAL,
76     ITEM_CHECK,
77     ITEM_RADIO
78 };
79
80 static QActionGroup *currentGroup;
81
82 QMenu *QVLCMenu::recentsMenu = NULL;
83
84 /****************************************************************************
85  * Menu code helpers:
86  ****************************************************************************
87  * Add static entries to DP in menus
88  ***************************************************************************/
89 void addDPStaticEntry( QMenu *menu,
90                        const QString& text,
91                        const char *icon,
92                        const char *member,
93                        const char *shortcut = NULL )
94 {
95     QAction *action = NULL;
96     if( !EMPTY_STR( icon ) )
97     {
98         if( !EMPTY_STR( shortcut ) )
99             action = menu->addAction( QIcon( icon ), text, THEDP,
100                                       member, qtr( shortcut ) );
101         else
102             action = menu->addAction( QIcon( icon ), text, THEDP, member );
103     }
104     else
105     {
106         if( !EMPTY_STR( shortcut ) )
107             action = menu->addAction( text, THEDP, member, qtr( shortcut ) );
108         else
109             action = menu->addAction( text, THEDP, member );
110     }
111     action->setData( STATIC_ENTRY );
112 }
113
114 /***
115  * Same for MIM
116  ***/
117 QAction* addMIMStaticEntry( intf_thread_t *p_intf,
118                             QMenu *menu,
119                             const QString& text,
120                             const char *icon,
121                             const char *member,
122                             bool bStatic = false )
123 {
124     QAction *action;
125     if( strlen( icon ) > 0 )
126     {
127         action = menu->addAction( text, THEMIM,  member );
128         action->setIcon( QIcon( icon ) );
129     }
130     else
131     {
132         action = menu->addAction( text, THEMIM, member );
133     }
134     action->setData( bStatic ? STATIC_ENTRY : ENTRY_ALWAYS_ENABLED );
135     return action;
136 }
137
138 /**
139  * @brief Enable all static entries, disable the others
140  * @param enable if false, disable all entries
141  */
142 void EnableStaticEntries( QMenu *menu, bool enable = true )
143 {
144     if( !menu ) return;
145
146     QList< QAction* > actions = menu->actions();
147     for( int i = 0; i < actions.size(); ++i )
148     {
149         actions[i]->setEnabled( actions[i]->data().toString()
150                                 == ENTRY_ALWAYS_ENABLED ||
151             /* Be careful here, because data("string").toBool is true */
152             ( enable && (actions[i]->data().toString() == STATIC_ENTRY ) ) );
153     }
154 }
155
156 /**
157  * \return Number of static entries
158  */
159 int DeleteNonStaticEntries( QMenu *menu )
160 {
161     if( !menu ) return VLC_EGENERIC;
162
163     int i_ret = 0;
164
165     QList< QAction* > actions = menu->actions();
166     for( int i = 0; i < actions.size(); ++i )
167     {
168         if( actions[i]->data().toString() != STATIC_ENTRY )
169             delete actions[i];
170         else
171             i_ret++;
172     }
173     return i_ret;
174 }
175
176 /**
177  * \return QAction associated to psz_var variable
178  **/
179 static QAction * FindActionWithVar( QMenu *menu, const char *psz_var )
180 {
181     QList< QAction* > actions = menu->actions();
182     for( int i = 0; i < actions.size(); ++i )
183     {
184         if( actions[i]->data().toString() == psz_var )
185             return actions[i];
186     }
187     return NULL;
188 }
189
190 /*****************************************************************************
191  * Definitions of variables for the dynamic menus
192  *****************************************************************************/
193 #define PUSH_VAR( var ) varnames.push_back( var ); \
194     objects.push_back( VLC_OBJECT(p_object) )
195
196 #define PUSH_INPUTVAR( var ) varnames.push_back( var ); \
197     objects.push_back( VLC_OBJECT(p_input) );
198
199 #define PUSH_SEPARATOR if( objects.size() != i_last_separator ) { \
200     objects.push_back( 0 ); varnames.push_back( "" ); \
201     i_last_separator = objects.size(); }
202
203 static int InputAutoMenuBuilder( input_thread_t *p_object,
204         vector<vlc_object_t *> &objects,
205         vector<const char *> &varnames )
206 {
207     PUSH_VAR( "bookmark" );
208     PUSH_VAR( "title" );
209     PUSH_VAR( "chapter" );
210     PUSH_VAR( "navigation" );
211     PUSH_VAR( "program" );
212     return VLC_SUCCESS;
213 }
214
215 static int VideoAutoMenuBuilder( vout_thread_t *p_object,
216         input_thread_t *p_input,
217         vector<vlc_object_t *> &objects,
218         vector<const char *> &varnames )
219 {
220     PUSH_INPUTVAR( "video-es" );
221     PUSH_INPUTVAR( "spu-es" );
222     PUSH_VAR( "fullscreen" );
223     PUSH_VAR( "video-on-top" );
224     PUSH_VAR( "video-wallpaper" );
225 #ifdef WIN32
226     PUSH_VAR( "direct3d-desktop" );
227 #endif
228     PUSH_VAR( "video-snapshot" );
229     PUSH_VAR( "zoom" );
230     PUSH_VAR( "autoscale" );
231     PUSH_VAR( "aspect-ratio" );
232     PUSH_VAR( "crop" );
233     PUSH_VAR( "deinterlace" );
234     PUSH_VAR( "deinterlace-mode" );
235     PUSH_VAR( "postprocess" );
236
237     return VLC_SUCCESS;
238 }
239
240 static int AudioAutoMenuBuilder( aout_instance_t *p_object,
241         input_thread_t *p_input,
242         vector<vlc_object_t *> &objects,
243         vector<const char *> &varnames )
244 {
245     PUSH_INPUTVAR( "audio-es" );
246     PUSH_VAR( "audio-channels" );
247     PUSH_VAR( "audio-device" );
248     PUSH_VAR( "visual" );
249     return VLC_SUCCESS;
250 }
251
252 /*****************************************************************************
253  * All normal menus
254  * Simple Code
255  *****************************************************************************/
256
257 #define BAR_ADD( func, title ) { \
258     QMenu *_menu = func; _menu->setTitle( title ); bar->addMenu( _menu ); }
259
260 #define BAR_DADD( func, title, id ) { \
261     QMenu *_menu = func; _menu->setTitle( title ); bar->addMenu( _menu ); \
262     MenuFunc *f = new MenuFunc( _menu, id ); \
263     CONNECT( _menu, aboutToShow(), THEDP->menusUpdateMapper, map() ); \
264     THEDP->menusUpdateMapper->setMapping( _menu, f ); }
265
266 #define ACT_ADD( _menu, val, title ) { \
267     QAction *_action = new QAction( title, _menu ); _action->setData( val ); \
268     _menu->addAction( _action ); }
269
270 #define ACT_ADDMENU( _menu, val, title ) { \
271     QAction *_action = new QAction( title, _menu ); _action->setData( val ); \
272     _action->setMenu( new QMenu( _menu ) ); _menu->addAction( _action ); }
273
274 #define ACT_ADDCHECK( _menu, val, title ) { \
275     QAction *_action = new QAction( title, _menu ); _action->setData( val ); \
276     _action->setCheckable( true ); _menu->addAction( _action ); }
277
278 /**
279  * Main Menu Bar Creation
280  **/
281 void QVLCMenu::createMenuBar( MainInterface *mi,
282                               intf_thread_t *p_intf )
283 {
284     /* QMainWindows->menuBar()
285        gives the QProcess::destroyed timeout issue on Cleanlooks style with
286        setDesktopAware set to false */
287     QMenuBar *bar = mi->menuBar();
288
289     BAR_ADD( FileMenu( p_intf, bar ), qtr( "&Media" ) );
290
291     /* Dynamic menus, rebuilt before being showed */
292     BAR_DADD( NavigMenu( p_intf, bar ), qtr( "P&layback" ), 3 );
293     BAR_DADD( AudioMenu( p_intf, bar ), qtr( "&Audio" ), 1 );
294     BAR_DADD( VideoMenu( p_intf, bar ), qtr( "&Video" ), 2 );
295
296     BAR_ADD( ToolsMenu( bar ), qtr( "&Tools" ) );
297     QMenu *_menu = ViewMenu( p_intf, bar );
298     _menu->setTitle( qtr( "V&iew" ) );
299     bar->addMenu( _menu );
300     ViewMenu( p_intf, _menu, mi );
301     BAR_ADD( HelpMenu( bar ), qtr( "&Help" ) );
302
303 }
304 #undef BAR_ADD
305 #undef BAR_DADD
306
307 /**
308  * Media ( File ) Menu
309  * Opening, streaming and quit
310  **/
311 QMenu *QVLCMenu::FileMenu( intf_thread_t *p_intf, QWidget *parent )
312 {
313     QMenu *menu = new QMenu( parent );
314
315     addDPStaticEntry( menu, qtr( "&Open File..." ),
316         ":/type/file-asym", SLOT( simpleOpenDialog() ), "Ctrl+O" );
317     addDPStaticEntry( menu, qtr( "Advanced Open File..." ),
318         ":/type/file-asym", SLOT( openFileDialog() ), "Ctrl+Shift+O" );
319     addDPStaticEntry( menu, qtr( I_OP_OPDIR ),
320         ":/type/folder-grey", SLOT( PLOpenDir() ), "Ctrl+F" );
321     addDPStaticEntry( menu, qtr( "Open &Disc..." ),
322         ":/type/disc", SLOT( openDiscDialog() ), "Ctrl+D" );
323     addDPStaticEntry( menu, qtr( "Open &Network Stream..." ),
324         ":/type/network", SLOT( openNetDialog() ), "Ctrl+N" );
325     addDPStaticEntry( menu, qtr( "Open &Capture Device..." ),
326         ":/type/capture-card", SLOT( openCaptureDialog() ),
327         "Ctrl+C" );
328
329     menu->addSeparator();
330     addDPStaticEntry( menu, qtr( "Open &Location from clipboard" ),
331                       NULL, SLOT( openUrlDialog() ), "Ctrl+V" );
332
333     if( var_InheritBool( p_intf, "qt-recentplay" ) )
334     {
335         recentsMenu = new QMenu( qtr( "&Recent Media" ), menu );
336         updateRecents( p_intf );
337         menu->addMenu( recentsMenu );
338     }
339     menu->addSeparator();
340
341     addDPStaticEntry( menu, qtr( I_PL_SAVE ), "", SLOT( saveAPlaylist() ),
342         "Ctrl+Y" );
343     menu->addSeparator();
344
345 #ifdef ENABLE_SOUT
346     addDPStaticEntry( menu, qtr( "Conve&rt / Save..." ), "",
347         SLOT( openAndTranscodingDialogs() ), "Ctrl+R" );
348     addDPStaticEntry( menu, qtr( "&Streaming..." ),
349         ":/menu/stream", SLOT( openAndStreamingDialogs() ),
350         "Ctrl+S" );
351     menu->addSeparator();
352 #endif
353
354     addDPStaticEntry( menu, qtr( "&Quit" ) ,
355         ":/menu/quit", SLOT( quit() ), "Ctrl+Q" );
356     return menu;
357 }
358
359 /**
360  * Tools, like Media Information, Preferences or Messages
361  **/
362 QMenu *QVLCMenu::ToolsMenu( QMenu *menu )
363 {
364     addDPStaticEntry( menu, qtr( "&Effects and Filters"), ":/menu/settings",
365             SLOT( extendedDialog() ), "Ctrl+E" );
366
367     addDPStaticEntry( menu, qtr( "&Track Synchronization"), ":/menu/settings",
368             SLOT( synchroDialog() ), "" );
369
370     addDPStaticEntry( menu, qtr( I_MENU_INFO ) , ":/menu/info",
371         SLOT( mediaInfoDialog() ), "Ctrl+I" );
372     addDPStaticEntry( menu, qtr( I_MENU_CODECINFO ) ,
373         ":/menu/info", SLOT( mediaCodecDialog() ), "Ctrl+J" );
374
375     addDPStaticEntry( menu, qtr( I_MENU_BOOKMARK ),"",
376                       SLOT( bookmarksDialog() ), "Ctrl+B" );
377 #ifdef ENABLE_VLM
378     addDPStaticEntry( menu, qtr( I_MENU_VLM ), "", SLOT( vlmDialog() ),
379         "Ctrl+W" );
380 #endif
381
382     addDPStaticEntry( menu, qtr( "Program Guide" ), "", SLOT( epgDialog() ),
383         "" );
384
385     addDPStaticEntry( menu, qtr( I_MENU_MSG ),
386         ":/menu/messages", SLOT( messagesDialog() ),
387         "Ctrl+M" );
388
389     addDPStaticEntry( menu, qtr( "Plu&gins and extensions" ),
390         "", SLOT( pluginDialog() ) );
391     menu->addSeparator();
392
393     addDPStaticEntry( menu, qtr( "&Preferences" ),
394         ":/menu/preferences", SLOT( prefsDialog() ), "Ctrl+P" );
395
396     return menu;
397 }
398
399 QMenu *QVLCMenu::ToolsMenu( QWidget *parent )
400 {
401     return ToolsMenu( new QMenu( parent ) );
402 }
403
404 /**
405  * Dynamic View Menu
406  * Connect signal "aboutToShow" to the creation of the View Menu
407  **/
408 QMenu *QVLCMenu::ViewMenu( intf_thread_t *p_intf, QWidget* parent )
409 {
410     QMenu *viewMenu = new QMenu( parent );
411     MenuFunc *f = new MenuFunc( viewMenu, 4 );
412     CONNECT( viewMenu, aboutToShow(), THEDP->menusUpdateMapper, map() );
413     THEDP->menusUpdateMapper->setMapping( viewMenu, f );
414     return viewMenu;
415 }
416
417 /**
418  * View Menu
419  * Interface modification, load other interfaces, activate Extensions
420  **/
421 QMenu *QVLCMenu::ViewMenu( intf_thread_t *p_intf, QMenu *current, MainInterface *_mi )
422 {
423     QAction *action;
424     QMenu *menu;
425
426     if( !current )
427     {
428         menu = new QMenu( qtr( "&View" ) );
429     }
430     else
431     {
432         menu = current;
433         menu->clear();
434     }
435
436     MainInterface *mi = _mi ? _mi : p_intf->p_sys->p_mi;
437     assert( mi );
438
439     menu->addAction( QIcon( ":/menu/playlist_menu" ),
440             qtr( "Play&list" ), mi,
441             SLOT( togglePlaylist() ), qtr( "Ctrl+L" ) );
442
443     menu->addSeparator();
444
445     QMenu *intfmenu = InterfacesMenu( p_intf, menu );
446     menu->addSeparator();
447
448     /* Minimal View */
449     action = menu->addAction( qtr( "Mi&nimal View" ) );
450     action->setShortcut( qtr( "Ctrl+H" ) );
451     action->setCheckable( true );
452     action->setChecked( !current && (mi->getControlsVisibilityStatus() & CONTROLS_HIDDEN ) );
453
454     CONNECT( action, triggered( bool ), mi, toggleMinimalView( bool ) );
455     CONNECT( mi, minimalViewToggled( bool ), action, setChecked( bool ) );
456
457     /* FullScreen View */
458     action = menu->addAction( qtr( "&Fullscreen Interface" ), mi,
459             SLOT( toggleFullScreen() ), QString( "F11" ) );
460     action->setCheckable( true );
461     action->setChecked( mi->isFullScreen() );
462     CONNECT( mi, fullscreenInterfaceToggled( bool ),
463              action, setChecked( bool ) );
464
465     /* Advanced Controls */
466     action = menu->addAction( qtr( "&Advanced Controls" ), mi,
467             SLOT( toggleAdvancedButtons() ) );
468     action->setCheckable( true );
469     if( mi->getControlsVisibilityStatus() & CONTROLS_ADVANCED )
470         action->setChecked( true );
471
472     /* Docked Playlist */
473     action = menu->addAction( qtr( "Docked Playlist" ) );
474     action->setCheckable( true );
475     action->setChecked( mi->isPlDocked() );
476     CONNECT( action, triggered( bool ), mi, dockPlaylist( bool ) );
477
478     if( !current )
479     // I don't want to manage consistency between menus, so no popup-menu
480     {
481         action = menu->addAction( qtr( "Quit after Playback" ) );
482         action->setCheckable( true );
483         CONNECT( action, triggered( bool ), THEMIM, activatePlayQuit( bool ) );
484     }
485
486 #if 0 /* For Visualisations. Not yet working */
487     adv = menu->addAction( qtr( "Visualizations selector" ),
488             mi, SLOT( visual() ) );
489     adv->setCheckable( true );
490     if( visual_selector_enabled ) adv->setChecked( true );
491 #endif
492
493     menu->addSeparator();
494     addDPStaticEntry( menu, qtr( "Customi&ze Interface..." ),
495         ":/menu/preferences", SLOT( toolbarDialog() ) );
496
497     /* Extensions */
498     ExtensionsMenu( p_intf, menu );
499
500     return menu;
501 }
502
503 /**
504  * Interface Sub-Menu, to list extras interface and skins
505  **/
506 QMenu *QVLCMenu::InterfacesMenu( intf_thread_t *p_intf, QMenu *current )
507 {
508     vector<vlc_object_t *> objects;
509     vector<const char *> varnames;
510     varnames.push_back( "intf-add" );
511     objects.push_back( VLC_OBJECT(p_intf) );
512
513     return Populate( p_intf, current, varnames, objects );
514 }
515
516 /**
517  * Extensions menu: populate the current menu with extensions
518  **/
519 void QVLCMenu::ExtensionsMenu( intf_thread_t *p_intf, QMenu *extMenu )
520 {
521     /* Get ExtensionsManager and load extensions if needed */
522     ExtensionsManager *extMgr = ExtensionsManager::getInstance( p_intf );
523
524     if( !var_InheritBool( p_intf, "qt-autoload-extensions")
525         && !extMgr->isLoaded() )
526     {
527         return;
528     }
529
530     if( !extMgr->isLoaded() && !extMgr->cannotLoad() )
531     {
532         extMgr->loadExtensions();
533     }
534
535     /* Let the ExtensionsManager build itself the menu */
536     extMenu->addSeparator();
537     extMgr->menu( extMenu );
538 }
539
540 /**
541  * Main Audio Menu
542  **/
543 QMenu *QVLCMenu::AudioMenu( intf_thread_t *p_intf, QMenu * current )
544 {
545     vector<vlc_object_t *> objects;
546     vector<const char *> varnames;
547     aout_instance_t *p_aout;
548     input_thread_t *p_input;
549
550     if( current->isEmpty() )
551     {
552         ACT_ADDMENU( current, "audio-es", qtr( "Audio &Track" ) );
553         ACT_ADDMENU( current, "audio-channels", qtr( "Audio &Channels" ) );
554         ACT_ADDMENU( current, "audio-device", qtr( "Audio &Device" ) );
555         current->addSeparator();
556
557         ACT_ADDMENU( current, "visual", qtr( "&Visualizations" ) );
558         current->addSeparator();
559
560         QAction *action = current->addAction( qtr( "Increase Volume" ),
561                 ActionsManager::getInstance( p_intf ), SLOT( AudioUp() ) );
562         action->setData( STATIC_ENTRY );
563         action = current->addAction( qtr( "Decrease Volume" ),
564                 ActionsManager::getInstance( p_intf ), SLOT( AudioDown() ) );
565         action->setData( STATIC_ENTRY );
566         action = current->addAction( qtr( "Mute" ),
567                 ActionsManager::getInstance( p_intf ), SLOT( toggleMuteAudio() ) );
568         action->setData( STATIC_ENTRY );
569     }
570
571     p_input = THEMIM->getInput();
572     p_aout = THEMIM->getAout();
573     EnableStaticEntries( current, ( p_aout != NULL ) );
574     AudioAutoMenuBuilder( p_aout, p_input, objects, varnames );
575     if( p_aout )
576     {
577         vlc_object_release( p_aout );
578     }
579
580     return Populate( p_intf, current, varnames, objects );
581 }
582
583 QMenu *QVLCMenu::AudioMenu( intf_thread_t *p_intf, QWidget *parent )
584 {
585     return AudioMenu( p_intf, new QMenu( parent ) );
586 }
587
588 /**
589  * Main Video Menu
590  * Subtitles are part of Video.
591  **/
592 QMenu *QVLCMenu::VideoMenu( intf_thread_t *p_intf, QMenu *current )
593 {
594     vout_thread_t *p_vout;
595     input_thread_t *p_input;
596     vector<vlc_object_t *> objects;
597     vector<const char *> varnames;
598
599     if( current->isEmpty() )
600     {
601         ACT_ADDMENU( current, "video-es", qtr( "Video &Track" ) );
602
603         QAction *action;
604         QMenu *submenu = new QMenu( qtr( "&Subtitles Track" ), current );
605         action = current->addMenu( submenu );
606         action->setData( "spu-es" );
607         addDPStaticEntry( submenu, qtr( "Open File..." ), "",
608                           SLOT( loadSubtitlesFile() ) );
609         submenu->addSeparator();
610         current->addSeparator();
611
612         ACT_ADDCHECK( current, "fullscreen", qtr( "&Fullscreen" ) );
613         ACT_ADDCHECK( current, "video-on-top", qtr( "Always &On Top" ) );
614         ACT_ADDCHECK( current, "video-wallpaper", qtr( "DirectX Wallpaper" ) );
615 #ifdef WIN32
616         ACT_ADDCHECK( current, "direct3d-desktop", qtr( "Direct3D Desktop mode" ) );
617 #endif
618         ACT_ADD( current, "video-snapshot", qtr( "Sna&pshot" ) );
619
620         current->addSeparator();
621
622         ACT_ADDMENU( current, "zoom", qtr( "&Zoom" ) );
623         ACT_ADDCHECK( current, "autoscale", qtr( "Sca&le" ) );
624         ACT_ADDMENU( current, "aspect-ratio", qtr( "&Aspect Ratio" ) );
625         ACT_ADDMENU( current, "crop", qtr( "&Crop" ) );
626         ACT_ADDMENU( current, "deinterlace", qtr( "&Deinterlace" ) );
627         ACT_ADDMENU( current, "deinterlace-mode", qtr( "&Deinterlace mode" ) );
628         ACT_ADDMENU( current, "postprocess", qtr( "&Post processing" ) );
629     }
630
631     p_input = THEMIM->getInput();
632
633     p_vout = THEMIM->getVout();
634     VideoAutoMenuBuilder( p_vout, p_input, objects, varnames );
635
636     if( p_vout )
637         vlc_object_release( p_vout );
638
639     return Populate( p_intf, current, varnames, objects );
640 }
641
642 QMenu *QVLCMenu::VideoMenu( intf_thread_t *p_intf, QWidget *parent )
643 {
644     return VideoMenu( p_intf, new QMenu( parent ) );
645 }
646
647 /**
648  * Navigation Menu
649  * For DVD, MP4, MOV and other chapter based format
650  **/
651 QMenu *QVLCMenu::NavigMenu( intf_thread_t *p_intf, QMenu *menu )
652 {
653     QAction *action;
654
655     QMenu *submenu = new QMenu( qtr( "&Bookmarks" ), menu );
656     addDPStaticEntry( submenu, qtr( "Manage &bookmarks" ), "",
657                       SLOT( bookmarksDialog() ) );
658     submenu->addSeparator();
659     action = menu->addMenu( submenu );
660     action->setData( "bookmark" );
661
662     ACT_ADDMENU( menu, "title", qtr( "T&itle" ) );
663     ACT_ADDMENU( menu, "chapter", qtr( "&Chapter" ) );
664     ACT_ADDMENU( menu, "navigation", qtr( "&Navigation" ) );
665     ACT_ADDMENU( menu, "program", qtr( "&Program" ) );
666
667     menu->addSeparator();
668     PopupMenuPlaylistControlEntries( menu, p_intf );
669     PopupMenuControlEntries( menu, p_intf );
670
671     EnableStaticEntries( menu, ( THEMIM->getInput() != NULL ) );
672     return RebuildNavigMenu( p_intf, menu );
673 }
674
675 QMenu *QVLCMenu::RebuildNavigMenu( intf_thread_t *p_intf, QMenu *menu )
676 {
677     /* */
678     input_thread_t *p_object;
679     vector<vlc_object_t *> objects;
680     vector<const char *> varnames;
681
682     /* Get the input and hold it */
683     p_object = THEMIM->getInput();
684
685     InputAutoMenuBuilder( p_object, objects, varnames );
686
687     menu->addSeparator();
688
689     /* Title and so on */
690     PUSH_VAR( "prev-title" );
691     PUSH_VAR( "next-title" );
692     PUSH_VAR( "prev-chapter" );
693     PUSH_VAR( "next-chapter" );
694
695     EnableStaticEntries( menu, (p_object != NULL ) );
696     return Populate( p_intf, menu, varnames, objects );
697 }
698
699 QMenu *QVLCMenu::NavigMenu( intf_thread_t *p_intf, QWidget *parent )
700 {
701     return NavigMenu( p_intf, new QMenu( parent ) );
702 }
703
704 /**
705  * Service Discovery SubMenu
706  **/
707 QMenu *QVLCMenu::SDMenu( intf_thread_t *p_intf, QWidget *parent )
708 {
709     QMenu *menu = new QMenu( parent );
710     menu->setTitle( qtr( I_PL_SD ) );
711
712     char **ppsz_longnames;
713     char **ppsz_names = vlc_sd_GetNames( p_intf, &ppsz_longnames, NULL );
714     if( !ppsz_names )
715         return menu;
716
717     char **ppsz_name = ppsz_names, **ppsz_longname = ppsz_longnames;
718     for( ; *ppsz_name; ppsz_name++, ppsz_longname++ )
719     {
720         if( !strcmp( *ppsz_name, "podcast" ) )
721         {
722             QAction *b = new QAction( qtr( "Configure podcasts..." ), menu );
723             //b->setEnabled( a->isChecked() );
724             menu->addAction( b );
725             CONNECT( b, triggered(), THEDP, podcastConfigureDialog() );
726         }
727         free( *ppsz_name );
728         free( *ppsz_longname );
729     }
730     free( ppsz_names );
731     free( ppsz_longnames );
732     return menu;
733 }
734
735 /**
736  * Help/About Menu
737 **/
738 QMenu *QVLCMenu::HelpMenu( QWidget *parent )
739 {
740     QMenu *menu = new QMenu( parent );
741     addDPStaticEntry( menu, qtr( "&Help..." ) ,
742         ":/menu/help", SLOT( helpDialog() ), "F1" );
743 #ifdef UPDATE_CHECK
744     addDPStaticEntry( menu, qtr( "Check for &Updates..." ) , "",
745                       SLOT( updateDialog() ) );
746 #endif
747     menu->addSeparator();
748     addDPStaticEntry( menu, qtr( I_MENU_ABOUT ), ":/menu/info",
749             SLOT( aboutDialog() ), "Shift+F1" );
750     return menu;
751 }
752
753 /*****************************************************************************
754  * Popup menus - Right Click menus                                           *
755  *****************************************************************************/
756 #define POPUP_BOILERPLATE \
757     unsigned int i_last_separator = 0; \
758     vector<vlc_object_t *> objects; \
759     vector<const char *> varnames; \
760     input_thread_t *p_input = THEMIM->getInput();
761
762 #define CREATE_POPUP \
763     Populate( p_intf, menu, varnames, objects ); \
764     p_intf->p_sys->p_popup_menu = menu; \
765     menu->popup( QCursor::pos() ); \
766     p_intf->p_sys->p_popup_menu = NULL; \
767     i_last_separator = 0;
768
769 void QVLCMenu::PopupPlayEntries( QMenu *menu,
770                                         intf_thread_t *p_intf,
771                                         input_thread_t *p_input )
772 {
773     QAction *action;
774
775     /* Play or Pause action and icon */
776     if( !p_input || var_GetInteger( p_input, "state" ) != PLAYING_S )
777     {
778         action = menu->addAction( qtr( "Play" ),
779                 ActionsManager::getInstance( p_intf ), SLOT( play() ) );
780         action->setIcon( QIcon( ":/menu/play" ) );
781     }
782     else
783     {
784          addMIMStaticEntry( p_intf, menu, qtr( "Pause" ),
785                     ":/menu/pause", SLOT( togglePlayPause() ) );
786     }
787 }
788
789 void QVLCMenu::PopupMenuControlEntries( QMenu *menu, intf_thread_t *p_intf )
790 {
791     QAction *action;
792
793     /* Faster/Slower */
794     action = menu->addAction( qtr( "&Faster" ), THEMIM->getIM(),
795                               SLOT( faster() ) );
796     action->setIcon( QIcon( ":/toolbar/faster") );
797     action->setData( STATIC_ENTRY );
798
799     action = menu->addAction( qtr( "Faster (fine)" ), THEMIM->getIM(),
800                               SLOT( littlefaster() ) );
801     action->setData( STATIC_ENTRY );
802
803     action = menu->addAction( qtr( "N&ormal Speed" ), THEMIM->getIM(),
804                               SLOT( normalRate() ) );
805     action->setData( STATIC_ENTRY );
806
807     action = menu->addAction( qtr( "Slower (fine)" ), THEMIM->getIM(),
808                               SLOT( littleslower() ) );
809     action->setData( STATIC_ENTRY );
810
811     action = menu->addAction( qtr( "Slo&wer" ), THEMIM->getIM(),
812                               SLOT( slower() ) );
813     action->setIcon( QIcon( ":/toolbar/slower") );
814     action->setData( STATIC_ENTRY );
815
816     menu->addSeparator();
817
818     action = menu->addAction( qtr( "&Jump Forward" ), THEMIM->getIM(),
819              SLOT( jumpFwd() ) );
820     action->setIcon( QIcon( ":/toolbar/skip_fw") );
821     action->setData( STATIC_ENTRY );
822
823     action = menu->addAction( qtr( "Jump Bac&kward" ), THEMIM->getIM(),
824              SLOT( jumpBwd() ) );
825     action->setIcon( QIcon( ":/toolbar/skip_back") );
826     action->setData( STATIC_ENTRY );
827     addDPStaticEntry( menu, qtr( I_MENU_GOTOTIME ),"",
828                       SLOT( gotoTimeDialog() ), "Ctrl+T" );
829     menu->addSeparator();
830 }
831
832
833 void QVLCMenu::PopupMenuPlaylistControlEntries( QMenu *menu,
834                                                 intf_thread_t *p_intf )
835 {
836     bool bEnable = THEMIM->getInput() != NULL;
837     QAction *action =
838             addMIMStaticEntry( p_intf, menu, qtr( "&Stop" ), ":/menu/stop",
839                                SLOT( stop() ), true );
840     /* Disable Stop in the right-click popup menu */
841     if( !bEnable )
842         action->setEnabled( false );
843
844     /* Next / Previous */
845     addMIMStaticEntry( p_intf, menu, qtr( "Pre&vious" ),
846         ":/menu/previous", SLOT( prev() ) );
847     addMIMStaticEntry( p_intf, menu, qtr( "Ne&xt" ),
848         ":/menu/next", SLOT( next() ) );
849     menu->addSeparator();
850 }
851
852 void QVLCMenu::PopupMenuStaticEntries( QMenu *menu )
853 {
854     QMenu *openmenu = new QMenu( qtr( "Open Media" ), menu );
855     addDPStaticEntry( openmenu, qtr( "&Open File..." ),
856         ":/type/file-asym", SLOT( openFileDialog() ) );
857     addDPStaticEntry( openmenu, qtr( I_OP_OPDIR ),
858         ":/type/folder-grey", SLOT( PLOpenDir() ) );
859     addDPStaticEntry( openmenu, qtr( "Open &Disc..." ),
860         ":/type/disc", SLOT( openDiscDialog() ) );
861     addDPStaticEntry( openmenu, qtr( "Open &Network..." ),
862         ":/type/network", SLOT( openNetDialog() ) );
863     addDPStaticEntry( openmenu, qtr( "Open &Capture Device..." ),
864         ":/type/capture-card", SLOT( openCaptureDialog() ) );
865     menu->addMenu( openmenu );
866
867     menu->addSeparator();
868 #if 0
869     QMenu *helpmenu = HelpMenu( menu );
870     helpmenu->setTitle( qtr( "Help" ) );
871     menu->addMenu( helpmenu );
872 #endif
873
874     addDPStaticEntry( menu, qtr( "Quit" ), ":/menu/quit",
875                       SLOT( quit() ), "Ctrl+Q" );
876 }
877
878 /* Video Tracks and Subtitles tracks */
879 void QVLCMenu::VideoPopupMenu( intf_thread_t *p_intf )
880 {
881     POPUP_BOILERPLATE;
882     if( p_input )
883     {
884         vout_thread_t *p_vout = THEMIM->getVout();
885         if( p_vout )
886         {
887             VideoAutoMenuBuilder( p_vout, p_input, objects, varnames );
888             vlc_object_release( p_vout );
889         }
890     }
891     QMenu *menu = new QMenu();
892     CREATE_POPUP;
893 }
894
895 /* Audio Tracks */
896 void QVLCMenu::AudioPopupMenu( intf_thread_t *p_intf )
897 {
898     POPUP_BOILERPLATE;
899     if( p_input )
900     {
901         aout_instance_t *p_aout = THEMIM->getAout();
902         AudioAutoMenuBuilder( p_aout, p_input, objects, varnames );
903         if( p_aout )
904             vlc_object_release( p_aout );
905     }
906     QMenu *menu = new QMenu();
907     CREATE_POPUP;
908 }
909
910 /* Navigation stuff, and general menus ( open ), used only for skins */
911 void QVLCMenu::MiscPopupMenu( intf_thread_t *p_intf )
912 {
913     POPUP_BOILERPLATE;
914
915     if( p_input )
916     {
917         varnames.push_back( "audio-es" );
918         InputAutoMenuBuilder( p_input, objects, varnames );
919         PUSH_SEPARATOR;
920     }
921
922     QMenu *menu = new QMenu();
923     Populate( p_intf, menu, varnames, objects );
924
925     menu->addSeparator();
926     PopupPlayEntries( menu, p_intf, p_input );
927     PopupMenuPlaylistControlEntries( menu, p_intf);
928
929     menu->addSeparator();
930     PopupMenuControlEntries( menu, p_intf );
931
932     menu->addSeparator();
933     PopupMenuStaticEntries( menu );
934
935     p_intf->p_sys->p_popup_menu = menu;
936     menu->popup( QCursor::pos() );
937     p_intf->p_sys->p_popup_menu = NULL;
938 }
939
940 /* Main Menu that sticks everything together  */
941 void QVLCMenu::PopupMenu( intf_thread_t *p_intf, bool show )
942 {
943     /* Delete old popup if there is one */
944     delete p_intf->p_sys->p_popup_menu;
945
946     if( !show )
947     {
948         p_intf->p_sys->p_popup_menu = NULL;
949         return;
950     }
951
952     /* */
953     QMenu *menu = new QMenu();
954     QAction *action;
955     bool b_isFullscreen = false;
956     MainInterface *mi = p_intf->p_sys->p_mi;
957
958     POPUP_BOILERPLATE;
959
960     PopupPlayEntries( menu, p_intf, p_input );
961     PopupMenuPlaylistControlEntries( menu, p_intf );
962     menu->addSeparator();
963
964     if( p_input )
965     {
966         QMenu *submenu;
967         vout_thread_t *p_vout = THEMIM->getVout();
968
969         /* Add a fullscreen switch button, since it is the most used function */
970         if( p_vout )
971         {
972             vlc_value_t val; var_Get( p_vout, "fullscreen", &val );
973
974             b_isFullscreen = !( !val.b_bool );
975             if( b_isFullscreen )
976                 CreateAndConnect( menu, "fullscreen",
977                         qtr( "Leave Fullscreen" ),"" , ITEM_NORMAL,
978                         VLC_OBJECT(p_vout), val, VLC_VAR_BOOL, b_isFullscreen );
979             vlc_object_release( p_vout );
980
981             menu->addSeparator();
982         }
983
984         /* Input menu */
985         InputAutoMenuBuilder( p_input, objects, varnames );
986
987         /* Audio menu */
988         submenu = new QMenu( menu );
989         action = menu->addMenu( AudioMenu( p_intf, submenu ) );
990         action->setText( qtr( "&Audio" ) );
991         if( action->menu()->isEmpty() )
992             action->setEnabled( false );
993
994         /* Video menu */
995         submenu = new QMenu( menu );
996         action = menu->addMenu( VideoMenu( p_intf, submenu ) );
997         action->setText( qtr( "&Video" ) );
998         if( action->menu()->isEmpty() )
999             action->setEnabled( false );
1000
1001         /* Playback menu for chapters */
1002         submenu = new QMenu( menu );
1003         action = menu->addMenu( NavigMenu( p_intf, submenu ) );
1004         action->setText( qtr( "&Playback" ) );
1005         if( action->menu()->isEmpty() )
1006             action->setEnabled( false );
1007     }
1008
1009     menu->addSeparator();
1010
1011     /* Add some special entries for windowed mode: Interface Menu */
1012     if( !b_isFullscreen )
1013     {
1014         QMenu *submenu = new QMenu( qtr( "Interface" ), menu );
1015         /*QMenu *tools =*/ ToolsMenu( submenu );
1016         submenu->addSeparator();
1017
1018         /* In skins interface, append some items */
1019         if( !mi )
1020         {
1021             if( p_intf->p_sys->b_isDialogProvider )
1022             {
1023                 vlc_object_t* p_object = p_intf->p_parent;
1024
1025                 objects.clear(); varnames.clear();
1026                 objects.push_back( p_object );
1027                 varnames.push_back( "intf-skins" );
1028                 Populate( p_intf, submenu, varnames, objects );
1029
1030                 objects.clear(); varnames.clear();
1031                 objects.push_back( p_object );
1032                 varnames.push_back( "intf-skins-interactive" );
1033                 Populate( p_intf, submenu, varnames, objects );
1034             }
1035             else
1036                 msg_Warn( p_intf, "could not find parent interface" );
1037         }
1038         else
1039         {
1040             QMenu *viewmenu = menu->addMenu( qtr( "V&iew" ) );
1041             ViewMenu( p_intf, viewmenu );
1042         }
1043
1044         menu->addMenu( submenu );
1045     }
1046
1047     /* Static entries for ending, like open */
1048     PopupMenuStaticEntries( menu );
1049
1050     p_intf->p_sys->p_popup_menu = menu;
1051     p_intf->p_sys->p_popup_menu->popup( QCursor::pos() );
1052 }
1053
1054 #undef ACT_ADD
1055 #undef ACT_ADDMENU
1056 #undef ACT_ADDCHECK
1057
1058 #ifndef HAVE_MAEMO
1059 /************************************************************************
1060  * Systray Menu                                                         *
1061  ************************************************************************/
1062
1063 void QVLCMenu::updateSystrayMenu( MainInterface *mi,
1064                                   intf_thread_t *p_intf,
1065                                   bool b_force_visible )
1066 {
1067     POPUP_BOILERPLATE;
1068
1069     /* Get the systray menu and clean it */
1070     QMenu *sysMenu = mi->getSysTrayMenu();
1071     sysMenu->clear();
1072
1073     /* Hide / Show VLC and cone */
1074     if( mi->isVisible() || b_force_visible )
1075     {
1076         sysMenu->addAction( QIcon( ":/logo/vlc16.png" ),
1077                             qtr( "Hide VLC media player in taskbar" ), mi,
1078                             SLOT( toggleUpdateSystrayMenu() ) );
1079     }
1080     else
1081     {
1082         sysMenu->addAction( QIcon( ":/logo/vlc16.png" ),
1083                             qtr( "Show VLC media player" ), mi,
1084                             SLOT( toggleUpdateSystrayMenu() ) );
1085     }
1086
1087     sysMenu->addSeparator();
1088     PopupPlayEntries( sysMenu, p_intf, p_input );
1089     PopupMenuPlaylistControlEntries( sysMenu, p_intf);
1090     PopupMenuControlEntries( sysMenu, p_intf);
1091
1092     sysMenu->addSeparator();
1093     addDPStaticEntry( sysMenu, qtr( "&Open Media" ),
1094             ":/type/file-wide", SLOT( openFileDialog() ) );
1095     addDPStaticEntry( sysMenu, qtr( "&Quit" ) ,
1096             ":/menu/quit", SLOT( quit() ) );
1097
1098     /* Set the menu */
1099     mi->getSysTray()->setContextMenu( sysMenu );
1100 }
1101 #endif
1102
1103 #undef CREATE_POPUP
1104 #undef POPUP_BOILERPLATE
1105
1106 #undef PUSH_VAR
1107 #undef PUSH_SEPARATOR
1108
1109 /*************************************************************************
1110  * Builders for automenus
1111  *************************************************************************/
1112 QMenu * QVLCMenu::Populate( intf_thread_t *p_intf,
1113                             QMenu *current,
1114                             vector< const char *> & varnames,
1115                             vector<vlc_object_t *> & objects )
1116 {
1117     QMenu *menu = current;
1118     assert( menu );
1119
1120     currentGroup = NULL;
1121
1122     vlc_object_t *p_object;
1123
1124     for( int i = 0; i < ( int )objects.size() ; i++ )
1125     {
1126         if( !varnames[i] || !*varnames[i] )
1127         {
1128             menu->addSeparator();
1129             continue;
1130         }
1131         p_object = objects[i];
1132
1133         UpdateItem( p_intf, menu, varnames[i], p_object, true );
1134     }
1135     return menu;
1136 }
1137
1138 /*****************************************************************************
1139  * Private methods.
1140  *****************************************************************************/
1141
1142 static bool IsMenuEmpty( const char *psz_var,
1143                          vlc_object_t *p_object,
1144                          bool b_root = true )
1145 {
1146     vlc_value_t val, val_list;
1147     int i_type, i_result, i;
1148
1149     /* Check the type of the object variable */
1150     i_type = var_Type( p_object, psz_var );
1151
1152     /* Check if we want to display the variable */
1153     if( !( i_type & VLC_VAR_HASCHOICE ) ) return false;
1154
1155     var_Change( p_object, psz_var, VLC_VAR_CHOICESCOUNT, &val, NULL );
1156     if( val.i_int == 0 ) return true;
1157
1158     if( ( i_type & VLC_VAR_TYPE ) != VLC_VAR_VARIABLE )
1159     {
1160         if( val.i_int == 1 && b_root ) return true;
1161         else return false;
1162     }
1163
1164     /* Check children variables in case of VLC_VAR_VARIABLE */
1165     if( var_Change( p_object, psz_var, VLC_VAR_GETLIST, &val_list, NULL ) < 0 )
1166     {
1167         return true;
1168     }
1169
1170     for( i = 0, i_result = true; i < val_list.p_list->i_count; i++ )
1171     {
1172         if( !IsMenuEmpty( val_list.p_list->p_values[i].psz_string,
1173                     p_object, false ) )
1174         {
1175             i_result = false;
1176             break;
1177         }
1178     }
1179
1180     /* clean up everything */
1181     var_FreeList( &val_list, NULL );
1182
1183     return i_result;
1184 }
1185
1186 #define TEXT_OR_VAR qfu ( text.psz_string ? text.psz_string : psz_var )
1187
1188 void QVLCMenu::UpdateItem( intf_thread_t *p_intf, QMenu *menu,
1189         const char *psz_var, vlc_object_t *p_object, bool b_submenu )
1190 {
1191     vlc_value_t val, text;
1192     int i_type;
1193
1194     QAction *action = FindActionWithVar( menu, psz_var );
1195     if( action )
1196         DeleteNonStaticEntries( action->menu() );
1197
1198     if( !p_object )
1199     {
1200         if( action )
1201             action->setEnabled( false );
1202         return;
1203     }
1204
1205     /* Check the type of the object variable */
1206     /* This HACK is needed so we have a radio button for audio and video tracks
1207        instread of a checkbox */
1208     if( !strcmp( psz_var, "audio-es" )
1209      || !strcmp( psz_var, "video-es" ) )
1210         i_type = VLC_VAR_INTEGER | VLC_VAR_HASCHOICE;
1211     else
1212         i_type = var_Type( p_object, psz_var );
1213
1214     switch( i_type & VLC_VAR_TYPE )
1215     {
1216         case VLC_VAR_VOID:
1217         case VLC_VAR_BOOL:
1218         case VLC_VAR_VARIABLE:
1219         case VLC_VAR_STRING:
1220         case VLC_VAR_INTEGER:
1221         case VLC_VAR_FLOAT:
1222             break;
1223         default:
1224             /* Variable doesn't exist or isn't handled */
1225             if( action )
1226                 action->setEnabled( false );
1227             return;
1228     }
1229
1230     /* Make sure we want to display the variable */
1231     if( menu->isEmpty() && IsMenuEmpty( psz_var, p_object ) )
1232     {
1233         if( action )
1234             action->setEnabled( false );
1235         return;
1236     }
1237
1238     /* Get the descriptive name of the variable */
1239     int i_ret = var_Change( p_object, psz_var, VLC_VAR_GETTEXT, &text, NULL );
1240     if( i_ret != VLC_SUCCESS )
1241     {
1242         text.psz_string = NULL;
1243     }
1244
1245     if( !action )
1246     {
1247         action = new QAction( TEXT_OR_VAR, menu );
1248         menu->addAction( action );
1249         action->setData( psz_var );
1250     }
1251
1252     /* Some specific stuff */
1253     bool forceDisabled = false;
1254     if( !strcmp( psz_var, "spu-es" ) )
1255     {
1256         vout_thread_t *p_vout = THEMIM->getVout();
1257         forceDisabled = ( p_vout == NULL );
1258         if( p_vout )
1259             vlc_object_release( p_vout );
1260     }
1261
1262     if( i_type & VLC_VAR_HASCHOICE )
1263     {
1264         /* Append choices menu */
1265         if( b_submenu )
1266         {
1267             QMenu *submenu;
1268             submenu = action->menu();
1269             if( !submenu )
1270             {
1271                 submenu = new QMenu( menu );
1272                 action->setMenu( submenu );
1273             }
1274
1275             action->setEnabled(
1276                CreateChoicesMenu( submenu, psz_var, p_object, true ) == 0 );
1277             if( forceDisabled )
1278                 action->setEnabled( false );
1279         }
1280         else
1281         {
1282             action->setEnabled(
1283                 CreateChoicesMenu( menu, psz_var, p_object, true ) == 0 );
1284         }
1285         FREENULL( text.psz_string );
1286         return;
1287     }
1288
1289     switch( i_type & VLC_VAR_TYPE )
1290     {
1291         case VLC_VAR_VOID:
1292             val.i_int = 0;  // Prevent the copy of an uninitialized value
1293             CreateAndConnect( menu, psz_var, TEXT_OR_VAR, "", ITEM_NORMAL,
1294                     p_object, val, i_type );
1295             break;
1296
1297         case VLC_VAR_BOOL:
1298             var_Get( p_object, psz_var, &val );
1299             val.b_bool = !val.b_bool;
1300             CreateAndConnect( menu, psz_var, TEXT_OR_VAR, "", ITEM_CHECK,
1301                     p_object, val, i_type, !val.b_bool );
1302             break;
1303     }
1304     FREENULL( text.psz_string );
1305 }
1306
1307 #undef TEXT_OR_VAR
1308
1309 /** HACK for the navigation submenu:
1310  * "title %2i" variables take the value 0 if not set
1311  */
1312 static bool CheckTitle( vlc_object_t *p_object, const char *psz_var )
1313 {
1314     int i_title = 0;
1315     if( sscanf( psz_var, "title %2i", &i_title ) <= 0 )
1316         return true;
1317
1318     int i_current_title = var_GetInteger( p_object, "title" );
1319     return ( i_title == i_current_title );
1320 }
1321
1322
1323 int QVLCMenu::CreateChoicesMenu( QMenu *submenu, const char *psz_var,
1324         vlc_object_t *p_object, bool b_root )
1325 {
1326     vlc_value_t val, val_list, text_list;
1327     int i_type, i;
1328
1329     /* Check the type of the object variable */
1330     i_type = var_Type( p_object, psz_var );
1331
1332     /* Make sure we want to display the variable */
1333     if( submenu->isEmpty() && IsMenuEmpty( psz_var, p_object, b_root ) )
1334         return VLC_EGENERIC;
1335
1336     switch( i_type & VLC_VAR_TYPE )
1337     {
1338         case VLC_VAR_VOID:
1339         case VLC_VAR_BOOL:
1340         case VLC_VAR_VARIABLE:
1341         case VLC_VAR_STRING:
1342         case VLC_VAR_INTEGER:
1343         case VLC_VAR_FLOAT:
1344             break;
1345         default:
1346             /* Variable doesn't exist or isn't handled */
1347             return VLC_EGENERIC;
1348     }
1349
1350     if( var_Change( p_object, psz_var, VLC_VAR_GETLIST,
1351                     &val_list, &text_list ) < 0 )
1352     {
1353         return VLC_EGENERIC;
1354     }
1355
1356 #define CURVAL val_list.p_list->p_values[i]
1357 #define CURTEXT text_list.p_list->p_values[i].psz_string
1358
1359     for( i = 0; i < val_list.p_list->i_count; i++ )
1360     {
1361         vlc_value_t another_val;
1362         QString menutext;
1363         QMenu *subsubmenu = new QMenu( submenu );
1364
1365         switch( i_type & VLC_VAR_TYPE )
1366         {
1367             case VLC_VAR_VARIABLE:
1368                 CreateChoicesMenu( subsubmenu, CURVAL.psz_string, p_object, false );
1369                 subsubmenu->setTitle( qfu( CURTEXT ? CURTEXT :CURVAL.psz_string ) );
1370                 submenu->addMenu( subsubmenu );
1371                 break;
1372
1373             case VLC_VAR_STRING:
1374                 var_Get( p_object, psz_var, &val );
1375                 another_val.psz_string = strdup( CURVAL.psz_string );
1376                 menutext = qfu( CURTEXT ? CURTEXT : another_val.psz_string );
1377                 CreateAndConnect( submenu, psz_var, menutext, "", ITEM_RADIO,
1378                         p_object, another_val, i_type,
1379                         val.psz_string && !strcmp( val.psz_string, CURVAL.psz_string ) );
1380
1381                 free( val.psz_string );
1382                 break;
1383
1384             case VLC_VAR_INTEGER:
1385                 var_Get( p_object, psz_var, &val );
1386                 if( CURTEXT ) menutext = qfu( CURTEXT );
1387                 else menutext.sprintf( "%d", CURVAL.i_int );
1388                 CreateAndConnect( submenu, psz_var, menutext, "", ITEM_RADIO,
1389                         p_object, CURVAL, i_type,
1390                         ( CURVAL.i_int == val.i_int )
1391                         && CheckTitle( p_object, psz_var ) );
1392                 break;
1393
1394             case VLC_VAR_FLOAT:
1395                 var_Get( p_object, psz_var, &val );
1396                 if( CURTEXT ) menutext = qfu( CURTEXT );
1397                 else menutext.sprintf( "%.2f", CURVAL.f_float );
1398                 CreateAndConnect( submenu, psz_var, menutext, "", ITEM_RADIO,
1399                         p_object, CURVAL, i_type,
1400                         CURVAL.f_float == val.f_float );
1401                 break;
1402
1403             default:
1404                 break;
1405         }
1406     }
1407     currentGroup = NULL;
1408
1409     /* clean up everything */
1410     var_FreeList( &val_list, &text_list );
1411
1412 #undef CURVAL
1413 #undef CURTEXT
1414     return submenu->isEmpty() ? VLC_EGENERIC : VLC_SUCCESS;
1415 }
1416
1417 void QVLCMenu::CreateAndConnect( QMenu *menu, const char *psz_var,
1418         const QString& text, const QString& help,
1419         int i_item_type, vlc_object_t *p_obj,
1420         vlc_value_t val, int i_val_type,
1421         bool checked )
1422 {
1423     QAction *action = FindActionWithVar( menu, psz_var );
1424
1425     bool b_new = false;
1426     if( !action )
1427     {
1428         action = new QAction( text, menu );
1429         menu->addAction( action );
1430         b_new = true;
1431     }
1432
1433     action->setToolTip( help );
1434     action->setEnabled( p_obj != NULL );
1435
1436     if( i_item_type == ITEM_CHECK )
1437     {
1438         action->setCheckable( true );
1439     }
1440     else if( i_item_type == ITEM_RADIO )
1441     {
1442         action->setCheckable( true );
1443         if( !currentGroup )
1444             currentGroup = new QActionGroup( menu );
1445         currentGroup->addAction( action );
1446     }
1447
1448     action->setChecked( checked );
1449
1450     MenuItemData *itemData = new MenuItemData( THEDP->menusMapper, p_obj, i_val_type,
1451             val, psz_var );
1452
1453     /* remove previous signal-slot connection(s) if any */
1454     action->disconnect( );
1455
1456     CONNECT( action, triggered(), THEDP->menusMapper, map() );
1457     THEDP->menusMapper->setMapping( action, itemData );
1458
1459     if( b_new )
1460         menu->addAction( action );
1461 }
1462
1463 void QVLCMenu::DoAction( QObject *data )
1464 {
1465     MenuItemData *itemData = qobject_cast<MenuItemData *>( data );
1466     vlc_object_t *p_object = itemData->p_obj;
1467     if( p_object == NULL ) return;
1468
1469     /* Preserve settings across vouts via the playlist object: */
1470     if( !strcmp( itemData->psz_var, "fullscreen" )
1471      || !strcmp( itemData->psz_var, "video-on-top" ) )
1472         var_Set( pl_Get( p_object ), itemData->psz_var, itemData->val );
1473
1474     var_Set( p_object, itemData->psz_var, itemData->val );
1475 }
1476
1477 void QVLCMenu::updateRecents( intf_thread_t *p_intf )
1478 {
1479     if( recentsMenu )
1480     {
1481         QAction* action;
1482         RecentsMRL* rmrl = RecentsMRL::getInstance( p_intf );
1483         QStringList l = rmrl->recents();
1484
1485         recentsMenu->clear();
1486
1487         if( !l.size() )
1488         {
1489             action = recentsMenu->addAction( qtr(" - Empty - ") );
1490             action->setEnabled( false );
1491         }
1492         else
1493         {
1494             for( int i = 0; i < l.size(); ++i )
1495             {
1496                 action = recentsMenu->addAction(
1497                         QString( "&%1: " ).arg( i + 1 ) + l.at( i ),
1498                         rmrl->signalMapper, SLOT( map() ),
1499                         i <= 9 ? QString( "Ctrl+%1" ).arg( i + 1 ) : "" );
1500                 rmrl->signalMapper->setMapping( action, l.at( i ) );
1501             }
1502
1503             recentsMenu->addSeparator();
1504             recentsMenu->addAction( qtr("&Clear"), rmrl, SLOT( clear() ) );
1505         }
1506     }
1507 }