]> git.sesse.net Git - vlc/blob - modules/gui/qt4/components/extended_panels.hpp
Fix most of the issues of the Equalizer.
[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 #include <vlc_aout.h>
34 #include "../../audio_filter/equalizer_presets.h"
35
36 #include "ui/equalizer.h"
37 #include "ui/video_effects.h"
38 #include "ui/v4l2.h"
39
40
41 #include <QTabWidget>
42
43 #define BANDS EQZ_BANDS_MAX
44 #define NUM_SP_CTRL 5
45
46 class QSignalMapper;
47
48 class ExtVideo: public QObject
49 {
50     Q_OBJECT
51 public:
52     ExtVideo( intf_thread_t *, QTabWidget * );
53     virtual ~ExtVideo();
54     /*void gotoConf( QObject* );*/
55 private:
56     Ui::ExtVideoWidget ui;
57     QSignalMapper* filterMapper;
58     intf_thread_t *p_intf;
59     vout_thread_t *p_vout;
60     void initComboBoxItems( QObject* );
61     void setWidgetValue( QObject* );
62     void ChangeVFiltersString( char *psz_name, bool b_add );
63 private slots:
64     void updateFilters();
65     void updateFilterOptions();
66     void cropChange();
67 };
68
69 class ExtV4l2 : public QWidget
70 {
71     Q_OBJECT
72 public:
73     ExtV4l2( intf_thread_t *, QWidget * );
74     virtual ~ExtV4l2();
75
76     virtual void showEvent( QShowEvent *event );
77
78 private:
79     intf_thread_t *p_intf;
80     Ui::ExtV4l2Widget ui;
81     QGroupBox *box;
82
83 private slots:
84     void Refresh( void );
85     void ValueChange( int value );
86     void ValueChange( bool value );
87 };
88
89 class Equalizer: public QWidget
90 {
91     Q_OBJECT
92 public:
93     Equalizer( intf_thread_t *, QWidget * );
94     virtual ~Equalizer();
95     QComboBox *presetsComboBox;
96
97     char * createValuesFromPreset( int i_preset );
98     void updateUIFromCore();
99 private:
100     Ui::EqualizerWidget ui;
101     QSlider *bands[BANDS];
102     QLabel *band_texts[BANDS];
103
104     void delCallbacks( aout_instance_t * );
105     void addCallbacks( aout_instance_t * );
106
107     intf_thread_t *p_intf;
108 private slots:
109     void enable(bool);
110     void enable();
111     void set2Pass();
112     void setPreamp();
113     void setCoreBands();
114     void setCorePreset(int);
115     void updateUISliderValues( int );
116 };
117
118 class Spatializer: public QWidget
119 {
120     Q_OBJECT
121 public:
122     Spatializer( intf_thread_t *, QWidget * );
123     virtual ~Spatializer();
124
125 private:
126     QSlider *spatCtrl[NUM_SP_CTRL];
127     QLabel *ctrl_texts[NUM_SP_CTRL];
128     QLabel *ctrl_readout[NUM_SP_CTRL];
129     float controlVars[5];
130     float oldControlVars[5];
131
132     QCheckBox *enableCheck;
133
134     void delCallbacks( aout_instance_t * );
135     void addCallbacks( aout_instance_t * );
136     intf_thread_t *p_intf;
137 private slots:
138     void enable(bool);
139     void enable();
140     void setValues(float *);
141     void setInitValues();
142 };
143
144 class ExtendedControls: public QWidget
145 {
146     Q_OBJECT
147 public:
148     ExtendedControls( intf_thread_t *, QWidget * ) {};
149     virtual ~ExtendedControls() {};
150
151 private:
152     intf_thread_t *p_intf;
153 private slots:
154     void slower() {};
155     void faster() {};
156     void normal() {};
157     void snapshot() {};
158 };
159
160 class SyncControls : public QWidget
161 {
162     Q_OBJECT
163 public:
164     SyncControls( intf_thread_t *, QWidget * );
165     virtual ~SyncControls() {};
166 private:
167     intf_thread_t *p_intf;
168     QDoubleSpinBox *AVSpin;
169     QDoubleSpinBox *subsSpin;
170     QDoubleSpinBox *subSpeedSpin;
171 public slots:
172     void update();
173 private slots:
174     void advanceAudio( double );
175     void advanceSubs( double );
176     void adjustSubsSpeed( double );
177 };
178
179 #endif