]> git.sesse.net Git - vlc/blob - modules/gui/qt4/components/extended_panels.hpp
35084d1ddb96658c34b7cc26436ca5dd424296cc
[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     void setWidgetValue( QObject* );
48     void ChangeVFiltersString( char *psz_name, vlc_bool_t b_add );
49 private slots:
50     void updateFilters();
51     void updateFilterOptions();
52 };
53
54 class Equalizer: public QWidget
55 {
56     Q_OBJECT
57 public:
58     Equalizer( intf_thread_t *, QWidget * );
59     virtual ~Equalizer();
60
61 private:
62     Ui::EqualizerWidget ui;
63     QSlider *bands[BANDS];
64     QLabel *band_texts[BANDS];
65
66     void delCallbacks( aout_instance_t * );
67     void addCallbacks( aout_instance_t * );
68     void setValues( char *, float );
69
70     intf_thread_t *p_intf;
71 private slots:
72     void enable(bool);
73     void enable();
74     void set2Pass();
75     void setPreamp();
76     void setBand();
77     void setPreset(int);
78 };
79
80 class ExtendedControls: public QWidget
81 {
82     Q_OBJECT
83 public:
84     ExtendedControls( intf_thread_t *, QWidget * ) {};
85     virtual ~ExtendedControls() {};
86
87 private:
88     intf_thread_t *p_intf;
89 private slots:
90     void slower() {};
91     void faster() {};
92     void normal() {};
93     void snapshot() {};
94 };
95
96 #endif