]> git.sesse.net Git - vlc/blob - modules/gui/qt4/dialogs/prefs_dialog.hpp
Add video filters panel
[vlc] / modules / gui / qt4 / dialogs / prefs_dialog.hpp
1 /*****************************************************************************
2  * prefs_dialog.hpp : Preferences
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
24 #ifndef _PREFS_DIALOG_H_
25 #define _PREFS_DIALOG_H_
26
27 #include "util/qvlcframe.hpp"
28 #include "components/simple_preferences.hpp"
29
30 class PrefsTree;
31 class SPrefsCatList;
32 class PrefsPanel;
33 class SPrefsPanel;
34 class QTreeWidgetItem;
35 class QTreeWidget;
36 class QHBoxLayout;
37 class QVBoxLayout;
38 class QGroupBox;
39 class QRadioButton;
40 class QWidget;
41 class QCheckBox;
42 class QListWidget;
43 class QListWidgetItem;
44
45 class PrefsDialog : public QVLCFrame
46 {
47     Q_OBJECT;
48 public:
49     static PrefsDialog * getInstance( intf_thread_t *_p_intf )
50     {
51         if( !instance )
52             instance = new PrefsDialog( _p_intf );
53         return instance;
54     }
55     virtual ~PrefsDialog() {};
56
57     void showModulePrefs( char* );
58 private:
59     PrefsDialog( intf_thread_t * );
60
61     QWidget *main_panel;
62     QHBoxLayout *main_panel_l;
63     PrefsPanel *advanced_panel;
64     SPrefsPanel *simple_panel;
65     SPrefsPanel *simple_panels[SPrefsMax];
66
67     QWidget *tree_panel;
68     QHBoxLayout *tree_panel_l;
69     SPrefsCatList *simple_tree;
70     PrefsTree *advanced_tree;
71
72     QGroupBox *types;
73     QRadioButton *small,*all;
74
75     QGridLayout *main_layout;
76
77     static PrefsDialog *instance;
78 private slots:
79      void changePanel( QTreeWidgetItem *);
80      void changeSimplePanel( QListWidgetItem *);
81      void setAll();
82      void setSmall();
83      void save();
84      void cancel();
85 };
86
87 #endif