]> git.sesse.net Git - vlc/blob - modules/gui/qt4/menus.hpp
Beginning of menus implementation
[vlc] / modules / gui / qt4 / menus.hpp
1 /*****************************************************************************
2  * menus.hpp : Menus handling
3  ****************************************************************************
4  * Copyright (C) 2000-2005 the VideoLAN team
5  * $Id: wxwidgets.cpp 15731 2006-05-25 14:43:53Z zorglub $
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 QPoint;
34
35 class MenuItemData : public QObject
36 {
37 public:
38     MenuItemData( int i_id, int _i_type, vlc_value_t _val, const char *_var )
39     {
40         i_object_id = i_id;
41         i_val_type = _i_type;
42         val = _val;
43         psz_var = strdup( _var );
44     }
45     virtual ~MenuItemData()
46     {
47         if( psz_var ) free( psz_var );
48         if( ((i_val_type & VLC_VAR_TYPE) == VLC_VAR_STRING)
49             && val.psz_string ) free( val.psz_string );
50     }
51     int i_object_id;
52     int i_val_type;
53     vlc_value_t val;
54     char *psz_var;
55 };
56
57 class QVLCMenu : public QObject
58 {
59     Q_OBJECT;
60 public:
61
62     /* Individual menu builders */
63     static QMenu *FileMenu();
64
65     static void AudioPopupMenu( intf_thread_t *, const QPoint& );
66     static void VideoPopupMenu( intf_thread_t *, const QPoint& );
67
68     static QMenu *NavigMenu( intf_thread_t * , QMenu * );
69     static QMenu *VideoMenu( intf_thread_t * , QMenu * );
70     static QMenu *AudioMenu( intf_thread_t * , QMenu * );
71
72     /* Generic automenu methods */
73     static QMenu * Populate( intf_thread_t *, QMenu *current,
74                              vector<const char*>&, vector<int>& );
75
76     static void CreateAndConnect( QMenu *, const char *, QString, QString,
77                                   int, int, vlc_value_t, int, bool c = false );
78     static void CreateItem( QMenu *, const char *, vlc_object_t * );
79     static QMenu *CreateChoicesMenu( const char *, vlc_object_t *, bool );
80
81     static void DoAction( intf_thread_t *, QObject * );
82 };
83
84 #endif