]> git.sesse.net Git - vlc/blob - modules/gui/qt4/components/extended_panels.hpp
Qt: v4l2 control: drop v4l2.ui. auto-detect instance.
[vlc] / modules / gui / qt4 / components / extended_panels.hpp
1 /*****************************************************************************
2  * extended_panels.hpp : Exentended Panels
3  ****************************************************************************
4  * Copyright (C) 2006 the VideoLAN team
5  * $Id$
6  *
7  * Authors: ClĂ©ment Stenac <zorglub@videolan.org>
8  *          Antoine Cellerier <dionoea at videolan dot org>
9  *
10  * This program is free software; you can redistribute it and/or modify
11  * it under the terms of the GNU General Public License as published by
12  * the Free Software Foundation; either version 2 of the License, or
13  * (at your option) any later version.
14  *
15  * This program is distributed in the hope that it will be useful,
16  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18  * GNU General Public License for more details.
19  *
20  * You should have received a copy of the GNU General Public License
21  * along with this program; if not, write to the Free Software
22  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
23  *****************************************************************************/
24
25 #ifndef _EQUALIZER_H_
26 #define _EQUALIZER_H_
27
28 #ifdef HAVE_CONFIG_H
29 # include "config.h"
30 #endif
31
32 #include <vlc_common.h>
33
34 #include "ui/equalizer.h"
35 #include "ui/video_effects.h"
36
37 #include <QTabWidget>
38
39 #define BANDS 10
40 #define NUM_CP_CTRL 7
41 #define NUM_SP_CTRL 5
42
43 class QSignalMapper;
44
45 class ExtVideo: public QObject
46 {
47     Q_OBJECT
48     friend class ExtendedDialog;
49 public:
50     ExtVideo( struct intf_thread_t *, QTabWidget * );
51     /*void gotoConf( QObject* );*/
52 private:
53     Ui::ExtVideoWidget ui;
54     QSignalMapper* filterMapper;
55     intf_thread_t *p_intf;
56     vout_thread_t *p_vout;
57     void initComboBoxItems( QObject* );
58     void setWidgetValue( QObject* );
59     void ChangeVFiltersString( const char *psz_name, bool b_add );
60     void clean();
61 private slots:
62     void updateFilters();
63     void updateFilterOptions();
64     void cropChange();
65 };
66
67 class ExtV4l2 : public QWidget
68 {
69     Q_OBJECT
70 public:
71     ExtV4l2( intf_thread_t *, QWidget * );
72
73     virtual void showEvent( QShowEvent *event );
74
75 private:
76     intf_thread_t *p_intf;
77     QGroupBox *box;
78     QLabel *help;
79
80 private slots:
81     void Refresh( void );
82     void ValueChange( int value );
83     void ValueChange( bool value );
84 };
85
86 class Equalizer: public QWidget
87 {
88     Q_OBJECT
89     friend class ExtendedDialog;
90 public:
91     Equalizer( intf_thread_t *, QWidget * );
92     QComboBox *presetsComboBox;
93
94     char * createValuesFromPreset( int i_preset );
95     void updateUIFromCore();
96 private:
97     Ui::EqualizerWidget ui;
98     QSlider *bands[BANDS];
99     QLabel *band_texts[BANDS];
100
101     void delCallbacks( aout_instance_t * );
102     void addCallbacks( aout_instance_t * );
103
104     intf_thread_t *p_intf;
105     void clean() { enable(); }
106 private slots:
107     void enable(bool);
108     void enable();
109     void set2Pass();
110     void setPreamp();
111     void setCoreBands();
112     void setCorePreset(int);
113 };
114
115 class Compressor: public QWidget
116 {
117     Q_OBJECT
118 public:
119     Compressor( intf_thread_t *, QWidget * );
120
121 private:
122     QSlider *compCtrl[NUM_CP_CTRL];
123     QLabel *ctrl_texts[NUM_CP_CTRL];
124     QLabel *ctrl_readout[NUM_CP_CTRL];
125     float controlVars[NUM_CP_CTRL];
126     float oldControlVars[NUM_CP_CTRL];
127
128     QCheckBox *enableCheck;
129
130     intf_thread_t *p_intf;
131
132     void delCallbacks( aout_instance_t * );
133     void addCallbacks( aout_instance_t * );
134
135     void updateSliders(float *);
136     void setValues(float *);
137
138 private slots:
139     void enable(bool);
140     void enable();
141     void setInitValues();
142 };
143
144 class Spatializer: public QWidget
145 {
146     Q_OBJECT
147 public:
148     Spatializer( intf_thread_t *, QWidget * );
149
150 private:
151     QSlider *spatCtrl[NUM_SP_CTRL];
152     QLabel *ctrl_texts[NUM_SP_CTRL];
153     QLabel *ctrl_readout[NUM_SP_CTRL];
154     float controlVars[5];
155     float oldControlVars[5];
156
157     QCheckBox *enableCheck;
158
159     void delCallbacks( aout_instance_t * );
160     void addCallbacks( aout_instance_t * );
161     intf_thread_t *p_intf;
162
163     void setValues(float *);
164
165 private slots:
166     void enable(bool);
167     void enable();
168     void setInitValues();
169 };
170
171 class SyncControls : public QWidget
172 {
173     Q_OBJECT
174     friend class ExtendedDialog;
175 public:
176     SyncControls( intf_thread_t *, QWidget * );
177     virtual ~SyncControls() {};
178 private:
179     intf_thread_t *p_intf;
180     QDoubleSpinBox *AVSpin;
181     QDoubleSpinBox *subsSpin;
182     QDoubleSpinBox *subSpeedSpin;
183
184     bool b_userAction;
185
186     void clean();
187 public slots:
188     void update();
189 private slots:
190     void advanceAudio( double );
191     void advanceSubs( double );
192     void adjustSubsSpeed( double );
193 };
194
195 #endif