]> git.sesse.net Git - vlc/blob - modules/gui/qt4/components/simple_preferences.hpp
Preferences, audio, save the normalizer activation and clean.
[vlc] / modules / gui / qt4 / components / simple_preferences.hpp
1 /*****************************************************************************
2  * simple_preferences.hpp : Simple prefs
3  ****************************************************************************
4  * Copyright (C) 2006 the VideoLAN team
5  * $Id: preferences.hpp 16348 2006-08-25 21:10:10Z zorglub $
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 _SIMPLEPREFS_H_
25 #define _SIMPLEPREFS_H_
26
27 #include <vlc/vlc.h>
28 #include <vlc_interface.h>
29 #include <QWidget>
30
31 enum {
32     SPrefsInterface = 0,
33     SPrefsAudio,
34     SPrefsVideo,
35     SPrefsSubtitles,
36     SPrefsInputAndCodecs,
37     SPrefsHotkeys,
38     SPrefsMax
39 };
40 #define SPrefsDefaultCat SPrefsInterface
41
42 class ConfigControl;
43 class QComboBox;
44 class QLineEdit;
45 class QRadioButton;
46 class QCheckBox;
47 class QString;
48
49 class SPrefsCatList : public QWidget
50 {
51     Q_OBJECT;
52 public:
53     SPrefsCatList( intf_thread_t *, QWidget *);
54     virtual ~SPrefsCatList() {};
55 private:
56     intf_thread_t *p_intf;
57 signals:
58     void currentItemChanged( int );
59 public slots:
60     void switchPanel( int );
61 };
62
63 class SPrefsPanel : public QWidget
64 {
65     Q_OBJECT
66 public:
67     SPrefsPanel( intf_thread_t *, QWidget *, int );
68     virtual ~SPrefsPanel() {};
69     void apply();
70     void clean();
71 private:
72     intf_thread_t *p_intf;
73     QList<ConfigControl *> controls;
74
75     int number;
76
77     /* this is ugly and bad until I found a new solution */
78     QWidget *alsa_options;
79     QWidget *oss_options;
80     QWidget *directx_options;
81     QWidget *file_options;
82     QComboBox *audioOutput;
83     QLineEdit *inputDevice;
84     QRadioButton *skinInterfaceButton;
85     QRadioButton *qtInterfaceButton;
86     QString qs_filter;
87     QCheckBox *normalizerBox;
88
89 /* Display only the options for the selected audio output */
90 private slots:
91     void lastfm_Changed( int );
92     void updateAudioOptions( int );
93 };
94
95 #endif