]> git.sesse.net Git - vlc/blob - modules/gui/qt4/components/extended_panels.hpp
qt4 - fix temporary the compilation.
[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
65 private:
66     Ui::EqualizerWidget ui;
67     QSlider *bands[BANDS];
68     QLabel *band_texts[BANDS];
69
70     void delCallbacks( aout_instance_t * );
71     void addCallbacks( aout_instance_t * );
72     void setValues( char *, float );
73
74     intf_thread_t *p_intf;
75 private slots:
76     void enable(bool);
77     void enable();
78     void set2Pass();
79     void setPreamp();
80     void setBand();
81     void setPreset(int);
82 };
83
84 class Spatializer: public QWidget
85 {
86     Q_OBJECT
87 public:
88     Spatializer( intf_thread_t *, QWidget * );
89     virtual ~Spatializer();
90
91 private:
92     Ui::SpatializerWidget ui;
93     QSlider *spatCtrl[NUM_SP_CTRL];
94     QLabel *ctrl_texts[NUM_SP_CTRL];
95     QLabel *ctrl_readout[NUM_SP_CTRL];
96     float controlVars[5];
97     float oldControlVars[5];
98
99     void delCallbacks( aout_instance_t * );
100     void addCallbacks( aout_instance_t * );
101     intf_thread_t *p_intf;
102 private slots:
103     void enable(bool);
104     void enable();
105     void setValues(float *);
106     void setInitValues();
107 };
108
109 class ExtendedControls: public QWidget
110 {
111     Q_OBJECT
112 public:
113     ExtendedControls( intf_thread_t *, QWidget * ) {};
114     virtual ~ExtendedControls() {};
115
116 private:
117     intf_thread_t *p_intf;
118 private slots:
119     void slower() {};
120     void faster() {};
121     void normal() {};
122     void snapshot() {};
123 };
124
125 #endif