menus.cpp
上传用户:kjfoods
上传日期:2020-07-06
资源大小:29949k
文件大小:44k
源码类别:

midi

开发平台:

Unix_Linux

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