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. *****************************************************************************/
32 /* Folder vs. Directory */
34 #define I_OPEN_FOLDER "Open &Folder..."
36 #define I_OPEN_FOLDER "Open D&irectory..."
43 class QSystemTrayIcon;
45 class MenuItemData : public QObject
51 MenuItemData( int i_id, int _i_type, vlc_value_t _val, const char *_var )
56 psz_var = strdup( _var );
58 virtual ~MenuItemData()
60 if( psz_var ) free( psz_var );
61 if( ((i_val_type & VLC_VAR_TYPE) == VLC_VAR_STRING)
62 && val.psz_string ) free( val.psz_string );
70 class QVLCMenu : public QObject
74 static void createMenuBar( MainInterface *mi, intf_thread_t *,
78 static QMenu *FileMenu();
79 static QMenu *SDMenu( intf_thread_t * );
80 static QMenu *PlaylistMenu( MainInterface *, intf_thread_t *);
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 );
95 static void updateSystrayMenu( MainInterface *,intf_thread_t *,
96 bool b_force_visible = false);
99 static void DoAction( intf_thread_t *, QObject * );
101 /* Generic automenu methods */
102 static QMenu * Populate( intf_thread_t *, QMenu *current,
103 vector<const char*>&, vector<int>&,
104 bool append = false );
106 static void CreateAndConnect( QMenu *, const char *, QString, QString,
107 int, int, vlc_value_t, int, bool c = false );
108 static void CreateItem( QMenu *, const char *, vlc_object_t *, bool );
109 static int CreateChoicesMenu( QMenu *,const char *, vlc_object_t *, bool );
112 class MenuFunc : public QObject
117 MenuFunc( QMenu *_menu, int _id ) { menu = _menu; id = _id; };
118 void doFunc( intf_thread_t *p_intf)
122 case 1: QVLCMenu::VideoMenu( p_intf, menu ); break;
123 case 2: QVLCMenu::AudioMenu( p_intf, menu ); break;
124 case 3: QVLCMenu::NavigMenu( p_intf, menu ); break;
125 case 4: QVLCMenu::InterfacesMenu( p_intf, menu ); break;