]> git.sesse.net Git - vlc/blob - modules/gui/qt4/components/extended_panels.hpp
Qt4 - Extended Panels: add callback on audio-presets to fix the issue when the audio...
[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: preferences.hpp 16643 2006-09-13 12:45:46Z 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 _EQUALIZER_H_
25 #define _EQUALIZER_H_
26
27 #include <vlc/vlc.h>
28 #include <vlc_aout.h>
29
30 #include "ui/equalizer.h"
31 #include "ui/video_effects.h"
32 #include "ui/spatializer.h"
33
34 #define BANDS 10
35 #define NUM_SP_CTRL 5
36
37 class QSignalMapper;
38
39 class ExtVideo: public QWidget
40 {
41     Q_OBJECT
42 public:
43     ExtVideo( intf_thread_t *, QWidget * );
44     virtual ~ExtVideo();
45     /*void gotoConf( QObject* );*/
46 private:
47     Ui::ExtVideoWidget ui;
48     QSignalMapper* filterMapper;
49     intf_thread_t *p_intf;
50     void initComboBoxItems( QObject* );
51     void setWidgetValue( QObject* );
52     void ChangeVFiltersString( char *psz_name, vlc_bool_t b_add );
53 private slots:
54     void updateFilters();
55     void updateFilterOptions();
56 };
57
58 class Equalizer: public QWidget
59 {
60     Q_OBJECT
61 public:
62     Equalizer( intf_thread_t *, QWidget * );
63     virtual ~Equalizer();
64     QComboBox *presetsComboBox;
65
66 private:
67     Ui::EqualizerWidget ui;
68     QSlider *bands[BANDS];
69     QLabel *band_texts[BANDS];
70
71     void delCallbacks( aout_instance_t * );
72     void addCallbacks( aout_instance_t * );
73     void setValues( char *, float );
74
75     intf_thread_t *p_intf;
76 private slots:
77     void enable(bool);
78     void enable();
79     void set2Pass();
80     void setPreamp();
81     void setBand();
82     void setPreset(int);
83 };
84
85 class Spatializer: public QWidget
86 {
87     Q_OBJECT
88 public:
89     Spatializer( intf_thread_t *, QWidget * );
90     virtual ~Spatializer();
91
92 private:
93     Ui::SpatializerWidget ui;
94     QSlider *spatCtrl[NUM_SP_CTRL];
95     QLabel *ctrl_texts[NUM_SP_CTRL];
96     QLabel *ctrl_readout[NUM_SP_CTRL];
97     float controlVars[5];
98     float oldControlVars[5];
99
100     void delCallbacks( aout_instance_t * );
101     void addCallbacks( aout_instance_t * );
102     intf_thread_t *p_intf;
103 private slots:
104     void enable(bool);
105     void enable();
106     void setValues(float *);
107     void setInitValues();
108 };
109
110 class ExtendedControls: public QWidget
111 {
112     Q_OBJECT
113 public:
114     ExtendedControls( intf_thread_t *, QWidget * ) {};
115     virtual ~ExtendedControls() {};
116
117 private:
118     intf_thread_t *p_intf;
119 private slots:
120     void slower() {};
121     void faster() {};
122     void normal() {};
123     void snapshot() {};
124 };
125
126 #endif