]> git.sesse.net Git - vlc/blob - modules/gui/qt4/dialogs/preferences.hpp
Qt4 - Fix Simple Preference saving...
[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 _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 class QLabel;
45
46 class PrefsDialog : public QVLCFrame
47 {
48     Q_OBJECT;
49 public:
50     static PrefsDialog * getInstance( intf_thread_t *_p_intf )
51     {
52         if( !instance )
53             instance = new PrefsDialog( _p_intf );
54         return instance;
55     }
56     virtual ~PrefsDialog() {};
57
58     void showModulePrefs( char* );
59 private:
60     PrefsDialog( intf_thread_t * );
61
62     QWidget *main_panel;
63     QHBoxLayout *main_panel_l;
64     PrefsPanel *advanced_panel;
65     SPrefsPanel *current_simple_panel;
66     SPrefsPanel *simple_panels[SPrefsMax];
67
68     QWidget *tree_panel;
69     QHBoxLayout *tree_panel_l;
70     SPrefsCatList *simple_tree;
71     PrefsTree *advanced_tree;
72
73     QGroupBox *types;
74     QRadioButton *small,*all;
75
76     QGridLayout *main_layout;
77
78     static PrefsDialog *instance;
79 private slots:
80      void changePanel( QTreeWidgetItem * );
81      void changeSimplePanel( int );
82      void setAll();
83      void setSmall();
84      void save();
85      void apply();
86      void cancel();
87      void reset();
88      void close(){ save(); };
89 };
90
91 #endif