]> git.sesse.net Git - vlc/blob - modules/gui/qt4/components/simple_preferences.hpp
Qt4 - Windows. Put the file extensions in a tree and in categories. Various checks...
[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 #ifdef HAVE_CONFIG_H
28 # include "config.h"
29 #endif
30
31 #include <vlc/vlc.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 { alsaW = 0, ossW, directxW, fileW, audioOutCoB, normalizerChB };
65 enum { recordChB, dumpChB, bandwidthChB, timeshiftChB, inputLE, cachingCoB };
66 enum { skinRB, qtRB };
67
68 class ConfigControl;
69 class QComboBox;
70 class QLineEdit;
71 class QRadioButton;
72 class QCheckBox;
73 class QString;
74
75 #ifdef WIN32
76 class QTreeWidgetItem;
77 #endif
78
79 class SPrefsCatList : public QWidget
80 {
81     Q_OBJECT;
82 public:
83     SPrefsCatList( intf_thread_t *, QWidget *);
84     virtual ~SPrefsCatList() {};
85 private:
86     intf_thread_t *p_intf;
87 signals:
88     void currentItemChanged( int );
89 public slots:
90     void switchPanel( int );
91 };
92
93 class SPrefsPanel : public QWidget
94 {
95     Q_OBJECT
96 public:
97     SPrefsPanel( intf_thread_t *, QWidget *, int );
98     virtual ~SPrefsPanel() {};
99     void apply();
100     void clean();
101 private:
102     intf_thread_t *p_intf;
103     QList<ConfigControl *> controls;
104
105     int number;
106
107     QList<QWidget *> optionWidgets;
108     QString qs_filter;
109
110 #ifdef WIN32
111     QList<QTreeWidgetItem *> listAsso;
112     bool addType( const char * psz_ext, QTreeWidgetItem*, QTreeWidgetItem*, QVLCRegistry* );
113 #endif
114
115 /* Display only the options for the selected audio output */
116 private slots:
117     void lastfm_Changed( int );
118     void updateAudioOptions( int ); 
119 #ifdef SYS_MINGW32
120     void assoDialog();
121     void saveAsso();
122 #endif
123 };
124
125 #endif