]> git.sesse.net Git - vlc/blob - modules/gui/qt4/components/extended_panels.hpp
Add video filters panel
[vlc] / modules / gui / qt4 / components / extended_panels.hpp
1 /*****************************************************************************
2  * preferences_tree.hpp : Tree of modules for preferences
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 #include "ui/equalizer.h"
30 #include "ui/video_effects.h"
31
32 #define BANDS 10
33
34 class QSignalMapper;
35
36 class ExtVideo: public QWidget
37 {
38     Q_OBJECT
39 public:
40     ExtVideo(  intf_thread_t *, QWidget * );
41     virtual ~ExtVideo();
42     void gotoConf( QObject* );
43 private:
44     Ui::ExtVideoWidget ui;
45     QSignalMapper* filterMapper;
46     intf_thread_t *p_intf;
47 private slots:
48     void updateFilters( );
49 };
50
51 class Equalizer: public QWidget
52 {
53     Q_OBJECT
54 public:
55     Equalizer( intf_thread_t *, QWidget * );
56     virtual ~Equalizer();
57
58 private:
59     Ui::EqualizerWidget ui;
60     QSlider *bands[BANDS];
61     QLabel *band_texts[BANDS];
62
63     void delCallbacks( aout_instance_t * );
64     void addCallbacks( aout_instance_t * );
65     void setValues( char *, float );
66
67     intf_thread_t *p_intf;
68 private slots:
69     void enable(bool);
70     void enable();
71     void set2Pass();
72     void setPreamp();
73     void setBand();
74     void setPreset(int);
75 };
76
77 class ExtendedControls: public QWidget
78 {
79     Q_OBJECT
80 public:
81     ExtendedControls( intf_thread_t *, QWidget * ) {};
82     virtual ~ExtendedControls() {};
83
84 private:
85     intf_thread_t *p_intf;
86 private slots:
87     void slower() {};
88     void faster() {};
89     void normal() {};
90     void snapshot() {};
91 };
92
93 #endif