1 /*****************************************************************************
2 * menus.hpp : Menus handling
3 ****************************************************************************
4 * Copyright (C) 2006 the VideoLAN team
7 * Authors: Clément Stenac <zorglub@videolan.org>
8 * Jean-Baptiste Kempf <jb@videolan.org>
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License as published by
12 * the Free Software Foundation; either version 2 of the License, or
13 * (at your option) any later version.
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU General Public License for more details.
20 * You should have received a copy of the GNU General Public License
21 * along with this program; if not, write to the Free Software
22 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
23 *****************************************************************************/
33 /* Folder vs. Directory */
34 #if defined( WIN32 ) || defined(__APPLE__)
35 #define I_OPEN_FOLDER "Open &Folder..."
37 #define I_OPEN_FOLDER "Open D&irectory..."
44 class QSystemTrayIcon;
46 class MenuItemData : public QObject
52 MenuItemData( int i_id, int _i_type, vlc_value_t _val, const char *_var )
57 psz_var = strdup( _var );
59 virtual ~MenuItemData()
62 if( ( i_val_type & VLC_VAR_TYPE) == VLC_VAR_STRING )
63 free( val.psz_string );
71 class QVLCMenu : public QObject
75 static void createMenuBar( MainInterface *mi, intf_thread_t *, bool );
78 static QMenu *FileMenu();
79 static QMenu *SDMenu( intf_thread_t * );
80 static QMenu *PlaylistMenu( intf_thread_t *, MainInterface * );
81 static QMenu *ToolsMenu( intf_thread_t *, MainInterface *, bool, bool with = true );
82 static QMenu *NavigMenu( intf_thread_t * , QMenu * );
83 static QMenu *VideoMenu( intf_thread_t * , QMenu * );
84 static QMenu *AudioMenu( intf_thread_t * , QMenu * );
85 static QMenu *InterfacesMenu( intf_thread_t *p_intf, QMenu * );
86 static QMenu *HelpMenu();
89 static void AudioPopupMenu( intf_thread_t * );
90 static void VideoPopupMenu( intf_thread_t * );
91 static void MiscPopupMenu( intf_thread_t * );
92 static void PopupMenu( intf_thread_t *, bool );
93 static void PopupMenuStaticEntries( intf_thread_t *p_intf, QMenu *menu );
94 static void PopupMenuControlEntries( QMenu *menu, intf_thread_t *p_intf,
95 input_thread_t *p_input );
97 static void updateSystrayMenu( MainInterface *,intf_thread_t *,
98 bool b_force_visible = false);
101 static void DoAction( intf_thread_t *, QObject * );
103 /* Generic automenu methods */
104 static QMenu * Populate( intf_thread_t *, QMenu *current,
105 vector<const char*>&, vector<int>&,
106 bool append = false );
108 static void CreateAndConnect( QMenu *, const char *, QString, QString,
109 int, int, vlc_value_t, int, bool c = false );
110 static void CreateItem( QMenu *, const char *, vlc_object_t *, bool );
111 static int CreateChoicesMenu( QMenu *,const char *, vlc_object_t *, bool );
114 class MenuFunc : public QObject
119 MenuFunc( QMenu *_menu, int _id ) { menu = _menu; id = _id; };
120 void doFunc( intf_thread_t *p_intf)
124 case 1: QVLCMenu::VideoMenu( p_intf, menu ); break;
125 case 2: QVLCMenu::AudioMenu( p_intf, menu ); break;
126 case 3: QVLCMenu::NavigMenu( p_intf, menu ); break;
127 case 4: QVLCMenu::InterfacesMenu( p_intf, menu ); break;