]> git.sesse.net Git - vlc/blob - modules/gui/qt4/components/simple_preferences.hpp
[Qt] SPrefs, activate the headphone filter correctly.
[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$
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 #ifdef HAVE_CONFIG_H
28 # include "config.h"
29 #endif
30
31 #include <vlc_common.h>
32 #include <vlc_interface.h>
33 #include <QWidget>
34
35 #include "ui/sprefs_input.h"
36 #include "ui/sprefs_audio.h"
37 #include "ui/sprefs_video.h"
38 #include "ui/sprefs_subtitles.h"
39 #include "ui/sprefs_interface.h"
40 #ifdef WIN32
41 #include "util/registry.hpp"
42 #endif
43
44 enum {
45     SPrefsInterface = 0,
46     SPrefsAudio,
47     SPrefsVideo,
48     SPrefsSubtitles,
49     SPrefsInputAndCodecs,
50     SPrefsHotkeys,
51     SPrefsMax
52 };
53 #define SPrefsDefaultCat SPrefsInterface
54
55 enum {
56     CachingCustom = 0,
57     CachingLowest = 100,
58     CachingLow    = 200,
59     CachingNormal = 300,
60     CachingHigh   = 750,
61     CachingHigher = 2500
62 };
63
64 enum {
65 #ifdef WIN32
66        directxW,
67 #else
68        alsaW,
69        ossW,
70 #endif
71        fileW,
72        audioOutCoB,
73        normalizerChB,
74        volLW,
75        headphoneB,
76 };
77 enum { inputLE, cachingCoB };
78 enum { skinRB, qtRB };
79
80 class ConfigControl;
81 class QComboBox;
82 class QLineEdit;
83 class QRadioButton;
84 class QCheckBox;
85 class QString;
86
87 #ifdef WIN32
88 class QTreeWidgetItem;
89 #endif
90
91 class SPrefsCatList : public QWidget
92 {
93     Q_OBJECT;
94 public:
95     SPrefsCatList( intf_thread_t *, QWidget *);
96     virtual ~SPrefsCatList() {};
97 private:
98     intf_thread_t *p_intf;
99 signals:
100     void currentItemChanged( int );
101 public slots:
102     void switchPanel( int );
103 };
104
105 class SPrefsPanel : public QWidget
106 {
107     Q_OBJECT
108 public:
109     SPrefsPanel( intf_thread_t *, QWidget *, int );
110     virtual ~SPrefsPanel();
111     void apply();
112     void clean();
113 private:
114     intf_thread_t *p_intf;
115     QList<ConfigControl *> controls;
116
117     int number;
118
119     QList<QWidget *> optionWidgets;
120     QStringList qs_filter;
121
122 #ifdef WIN32
123     QList<QTreeWidgetItem *> listAsso;
124     bool addType( const char * psz_ext, QTreeWidgetItem*, QTreeWidgetItem*, QVLCRegistry* );
125 #endif
126
127 /* Display only the options for the selected audio output */
128 private slots:
129     void lastfm_Changed( int );
130     void updateAudioOptions( int );
131     void updateAudioVolume( int );
132 #ifdef SYS_MINGW32
133     void assoDialog();
134     void saveAsso();
135 #endif
136 };
137
138 #endif