]> git.sesse.net Git - vlc/blob - modules/gui/qt4/dialogs/preferences.hpp
Qt: preferences: use StackedWidget for simple layout
[vlc] / modules / gui / qt4 / dialogs / preferences.hpp
1 /*****************************************************************************
2  * preferences.hpp : Preferences
3  *****************************************************************************
4  * Copyright (C) 2006-2007 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 QVLC_PREFS_DIALOG_H_
25 #define QVLC_PREFS_DIALOG_H_ 1
26
27 #include "util/qvlcframe.hpp"
28 #include "components/simple_preferences.hpp"
29
30 class PrefsTree;
31 class SPrefsCatList;
32 class AdvPrefsPanel;
33 class SPrefsPanel;
34 class QTreeWidgetItem;
35 class QTreeWidget;
36 class QGroupBox;
37 class QRadioButton;
38 class QWidget;
39 class QCheckBox;
40 class QLabel;
41 class SearchLineEdit;
42 class QStackedWidget;
43
44 class PrefsDialog : public QVLCDialog
45 {
46     Q_OBJECT
47 public:
48     PrefsDialog( QWidget *, intf_thread_t * );
49     virtual ~PrefsDialog() {}
50 #if 0
51     /*Called from extended settings, is not used anymore, but could be useful one day*/
52     void showModulePrefs( char* );
53 #endif
54
55 private:
56     enum { SIMPLE, ADVANCED };
57     QStackedWidget *stack;
58
59     QWidget *advanced_main_panel;
60     QWidget *simple_split_widget, *advanced_split_widget;
61
62     AdvPrefsPanel *advanced_panel;
63     QStackedWidget *simple_panels_stack;
64     SPrefsPanel *simple_panels[SPrefsMax];
65
66     QWidget *simple_tree_panel;
67     QWidget *advanced_tree_panel;
68
69     SPrefsCatList *simple_tree;
70     PrefsTree *advanced_tree;
71     SearchLineEdit *tree_filter;
72
73     QGroupBox *types;
74     QRadioButton *small,*all;
75
76     bool b_small;
77
78 private slots:
79     void setAdvanced();
80     void setSmall();
81
82     void changeAdvPanel( QTreeWidgetItem * );
83     void changeSimplePanel( int );
84     void advancedTreeFilterChanged( const QString & );
85
86     void save();
87     void cancel();
88     void reset();
89     void close() { save(); };
90 };
91
92 #endif