]> git.sesse.net Git - vlc/blob - modules/gui/qt4/dialogs/prefs_dialog.hpp
06ab224c8bc2c510820bdc299df8c1bae7d5a12c
[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 private:
57     PrefsDialog( intf_thread_t * );
58
59     QWidget *main_panel;
60     QHBoxLayout *main_panel_l;
61     PrefsPanel *advanced_panel;
62     SPrefsPanel *simple_panel;
63     SPrefsPanel *simple_panels[SPrefsMax];
64
65     QWidget *tree_panel;
66     QHBoxLayout *tree_panel_l;
67     SPrefsCatList *simple_tree;
68     PrefsTree *advanced_tree;
69
70     QGroupBox *types;
71     QRadioButton *small,*all;
72
73     QGridLayout *main_layout;
74
75     static PrefsDialog *instance;
76 private slots:
77      void changePanel( QTreeWidgetItem *);
78      void changeSimplePanel( QListWidgetItem *);
79      void setAll();
80      void setSmall();
81      void save();
82      void cancel();
83 };
84
85 #endif