]> git.sesse.net Git - vlc/blob - modules/gui/qt4/dialogs/preferences.hpp
Qt: toolbar editor: make it easier for small narrow screens
[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 class QSplitter;
44
45 class PrefsDialog : public QVLCDialog
46 {
47     Q_OBJECT
48 public:
49     PrefsDialog( QWidget *, intf_thread_t * );
50     virtual ~PrefsDialog() {}
51 #if 0
52     /*Called from extended settings, is not used anymore, but could be useful one day*/
53     void showModulePrefs( char* );
54 #endif
55
56 private:
57     enum { SIMPLE, ADVANCED };
58     QStackedWidget *stack;
59
60     QWidget *simple_split_widget;
61     QSplitter *advanced_split_widget;
62
63     QStackedWidget *advanced_panels_stack;
64     QStackedWidget *simple_panels_stack;
65     SPrefsPanel *simple_panels[SPrefsMax];
66
67     QWidget *simple_tree_panel;
68     QWidget *advanced_tree_panel;
69
70     SPrefsCatList *simple_tree;
71     PrefsTree *advanced_tree;
72     SearchLineEdit *tree_filter;
73     QCheckBox *current_filter;
74
75     QGroupBox *types;
76     QRadioButton *simple,*all;
77
78     bool b_small;
79
80 private slots:
81     void setAdvanced();
82     void setSimple();
83
84     void changeAdvPanel( QTreeWidgetItem * );
85     void changeSimplePanel( int );
86     void advancedTreeFilterChanged( const QString & );
87     void onlyLoadedToggled();
88
89     void save();
90     void cancel();
91     void reset();
92     void close() { save(); };
93 };
94
95 #endif