]> git.sesse.net Git - vlc/blob - modules/gui/qt4/menus.hpp
- Qt4: fix popup menu
[vlc] / modules / gui / qt4 / menus.hpp
1 /*****************************************************************************
2  * menus.hpp : Menus handling
3  ****************************************************************************
4  * Copyright (C) 2006 the VideoLAN team
5  * $Id$
6  *
7  * Authors: ClĂ©ment Stenac <zorglub@videolan.org>
8  *
9  * This program is free software; you can redistribute it and/or modify
10  * it under the terms of the GNU General Public License as published by
11  * the Free Software Foundation; either version 2 of the License, or
12  * (at your option) any later version.
13  *
14  * This program is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17  * GNU General Public License for more details.
18  *
19  * You should have received a copy of the GNU General Public License
20  * along with this program; if not, write to the Free Software
21  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA. *****************************************************************************/
22
23 #ifndef _MENUS_H_
24 #define _MENUS_H_
25
26 #include "qt4.hpp"
27 #include <QObject>
28 #include <vector>
29
30 using namespace std;
31
32 class QMenu;
33 class QMenuBar;
34
35 class MenuItemData : public QObject
36 {
37
38 Q_OBJECT
39
40 public:
41     MenuItemData( int i_id, int _i_type, vlc_value_t _val, const char *_var )
42     {
43         i_object_id = i_id;
44         i_val_type = _i_type;
45         val = _val;
46         psz_var = strdup( _var );
47     }
48     virtual ~MenuItemData()
49     {
50         if( psz_var ) free( psz_var );
51         if( ((i_val_type & VLC_VAR_TYPE) == VLC_VAR_STRING)
52             && val.psz_string ) free( val.psz_string );
53     }
54     int i_object_id;
55     int i_val_type;
56     vlc_value_t val;
57     char *psz_var;
58 };
59
60 class QVLCMenu : public QObject
61 {
62     Q_OBJECT;
63 public:
64     static void createMenuBar( MainInterface *mi, intf_thread_t *, bool, bool, bool );
65
66     /* Menus */
67     static QMenu *FileMenu();
68     static QMenu *SDMenu( intf_thread_t * );
69     static QMenu *PlaylistMenu( MainInterface *, intf_thread_t *);
70     static QMenu *ToolsMenu( intf_thread_t *, MainInterface *, bool, bool,
71                              bool with = true );
72     static QMenu *NavigMenu( intf_thread_t * , QMenu * );
73     static QMenu *VideoMenu( intf_thread_t * , QMenu * );
74     static QMenu *AudioMenu( intf_thread_t * , QMenu * );
75     static QMenu *InterfacesMenu( intf_thread_t *p_intf, QMenu * );
76     static QMenu *HelpMenu();
77
78     /* Popups */
79     static void AudioPopupMenu( intf_thread_t * );
80     static void VideoPopupMenu( intf_thread_t * );
81     static void MiscPopupMenu( intf_thread_t * );
82     static void PopupMenu( intf_thread_t *, bool );
83
84     static void DoAction( intf_thread_t *, QObject * );
85 private:
86     /* Generic automenu methods */
87     static QMenu * Populate( intf_thread_t *, QMenu *current,
88                              vector<const char*>&, vector<int>&,
89                              bool append = false );
90
91     static void CreateAndConnect( QMenu *, const char *, QString, QString,
92                                   int, int, vlc_value_t, int, bool c = false );
93     static void CreateItem( QMenu *, const char *, vlc_object_t *, bool );
94     static int CreateChoicesMenu( QMenu *,const char *, vlc_object_t *, bool );
95
96 };
97
98 class MenuFunc : public QObject
99 {
100 Q_OBJECT
101
102 public:
103     MenuFunc( QMenu *_menu, int _id ) { menu = _menu; id = _id; };
104     void doFunc( intf_thread_t *p_intf)
105     {
106         switch( id )
107         {
108         case 1: QVLCMenu::VideoMenu( p_intf, menu ); break;
109         case 2: QVLCMenu::AudioMenu( p_intf, menu ); break;
110         case 3: QVLCMenu::NavigMenu( p_intf, menu ); break;
111         case 4: QVLCMenu::InterfacesMenu( p_intf, menu ); break;
112         }
113     };
114     int id; QMenu *menu;
115 };
116
117 #endif