]> git.sesse.net Git - vlc/blob - modules/gui/qt4/components/simple_preferences.hpp
Fix memleaks: Fill in the destructor of simple preference.
[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 = 400,
61     CachingHigher = 500
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 enum { recordChB, dumpChB, bandwidthChB, timeshiftChB, inputLE, cachingCoB };
76 enum { skinRB, qtRB };
77
78 class ConfigControl;
79 class QComboBox;
80 class QLineEdit;
81 class QRadioButton;
82 class QCheckBox;
83 class QString;
84
85 #ifdef WIN32
86 class QTreeWidgetItem;
87 #endif
88
89 class SPrefsCatList : public QWidget
90 {
91     Q_OBJECT;
92 public:
93     SPrefsCatList( intf_thread_t *, QWidget *);
94     virtual ~SPrefsCatList() {};
95 private:
96     intf_thread_t *p_intf;
97 signals:
98     void currentItemChanged( int );
99 public slots:
100     void switchPanel( int );
101 };
102
103 class SPrefsPanel : public QWidget
104 {
105     Q_OBJECT
106 public:
107     SPrefsPanel( intf_thread_t *, QWidget *, int );
108     virtual ~SPrefsPanel();
109     void apply();
110     void clean();
111 private:
112     intf_thread_t *p_intf;
113     QList<ConfigControl *> controls;
114
115     int number;
116
117     QList<QWidget *> optionWidgets;
118     QString qs_filter;
119
120 #ifdef WIN32
121     QList<QTreeWidgetItem *> listAsso;
122     bool addType( const char * psz_ext, QTreeWidgetItem*, QTreeWidgetItem*, QVLCRegistry* );
123 #endif
124
125 /* Display only the options for the selected audio output */
126 private slots:
127     void lastfm_Changed( int );
128     void updateAudioOptions( int );
129     void updateAudioVolume( int );
130 #ifdef SYS_MINGW32
131     void assoDialog();
132     void saveAsso();
133 #endif
134 };
135
136 #endif