]> git.sesse.net Git - vlc/blob - modules/gui/qt4/components/simple_preferences.hpp
Qt4 - Dialog implementation for registering the file association on Windows.
[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 #include "ui/sprefs_input.h"
32 #include "ui/sprefs_audio.h"
33 #include "ui/sprefs_video.h"
34 #include "ui/sprefs_subtitles.h"
35 #include "ui/sprefs_interface.h"
36
37 enum {
38     SPrefsInterface = 0,
39     SPrefsAudio,
40     SPrefsVideo,
41     SPrefsSubtitles,
42     SPrefsInputAndCodecs,
43     SPrefsHotkeys,
44     SPrefsMax
45 };
46 #define SPrefsDefaultCat SPrefsInterface
47
48 enum {
49     CachingCustom = 0,
50     CachingLowest = 100,
51     CachingLow = 200,
52     CachingNormal = 300,
53     CachingHigh = 400,
54     CachingHigher = 500
55 };
56
57 enum { alsaW = 0, ossW, directxW, fileW, audioOutCoB, normalizerChB };
58 enum { recordChB, dumpChB, bandwidthChB, timeshiftChB, inputLE, cachingCoB };
59 enum { skinRB, qtRB };
60
61 class ConfigControl;
62 class QComboBox;
63 class QLineEdit;
64 class QRadioButton;
65 class QCheckBox;
66 class QString;
67 #if WIN32
68 class QListWidgetItem;
69 #endif
70
71 class SPrefsCatList : public QWidget
72 {
73     Q_OBJECT;
74 public:
75     SPrefsCatList( intf_thread_t *, QWidget *);
76     virtual ~SPrefsCatList() {};
77 private:
78     intf_thread_t *p_intf;
79 signals:
80     void currentItemChanged( int );
81 public slots:
82     void switchPanel( int );
83 };
84
85 class SPrefsPanel : public QWidget
86 {
87     Q_OBJECT
88 public:
89     SPrefsPanel( intf_thread_t *, QWidget *, int );
90     virtual ~SPrefsPanel() {};
91     void apply();
92     void clean();
93 private:
94     intf_thread_t *p_intf;
95     QList<ConfigControl *> controls;
96
97     int number;
98
99     QList<QWidget *> optionWidgets;
100     QString qs_filter;
101
102 #if WIN32
103     QList<QListWidgetItem *> listAsso;
104 #endif
105
106 /* Display only the options for the selected audio output */
107 private slots:
108     void lastfm_Changed( int );
109     void updateAudioOptions( int );
110 #ifdef WIN32
111     void assoDialog();
112     void saveAsso();
113 #endif
114 };
115
116 #endif