]> git.sesse.net Git - vlc/blob - modules/gui/qt4/components/extended_panels.hpp
8545d8ada39798e691b1e9f30ba8071d6db70999
[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 private:
98     Ui::EqualizerWidget ui;
99     QSlider *bands[BANDS];
100     QLabel *band_texts[BANDS];
101
102     void delCallbacks( aout_instance_t * );
103     void addCallbacks( aout_instance_t * );
104     void setValues( char *, float );
105
106     intf_thread_t *p_intf;
107 private slots:
108     void enable(bool);
109     void enable();
110     void set2Pass();
111     void setPreamp();
112     void setBand();
113     void setPreset(int);
114 };
115
116 class Spatializer: public QWidget
117 {
118     Q_OBJECT
119 public:
120     Spatializer( intf_thread_t *, QWidget * );
121     virtual ~Spatializer();
122
123 private:
124     QSlider *spatCtrl[NUM_SP_CTRL];
125     QLabel *ctrl_texts[NUM_SP_CTRL];
126     QLabel *ctrl_readout[NUM_SP_CTRL];
127     float controlVars[5];
128     float oldControlVars[5];
129
130     QCheckBox *enableCheck;
131
132     void delCallbacks( aout_instance_t * );
133     void addCallbacks( aout_instance_t * );
134     intf_thread_t *p_intf;
135 private slots:
136     void enable(bool);
137     void enable();
138     void setValues(float *);
139     void setInitValues();
140 };
141
142 class ExtendedControls: public QWidget
143 {
144     Q_OBJECT
145 public:
146     ExtendedControls( intf_thread_t *, QWidget * ) {};
147     virtual ~ExtendedControls() {};
148
149 private:
150     intf_thread_t *p_intf;
151 private slots:
152     void slower() {};
153     void faster() {};
154     void normal() {};
155     void snapshot() {};
156 };
157
158 class SyncControls : public QWidget
159 {
160     Q_OBJECT
161 public:
162     SyncControls( intf_thread_t *, QWidget * );
163     virtual ~SyncControls() {};
164 private:
165     intf_thread_t *p_intf;
166     QDoubleSpinBox *AVSpin;
167     QDoubleSpinBox *subsSpin;
168     QDoubleSpinBox *subSpeedSpin;
169 public slots:
170     void update();
171 private slots:
172     void advanceAudio( double );
173     void advanceSubs( double );
174     void adjustSubsSpeed( double );
175 };
176
177 #endif