]> git.sesse.net Git - vlc/blob - modules/gui/qt4/components/extended_panels.hpp
Fix a huge bunch of things in the video effects panel. Implement combo box options.
[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
33 #define BANDS 10
34
35 class QSignalMapper;
36
37 class ExtVideo: public QWidget
38 {
39     Q_OBJECT
40 public:
41     ExtVideo( intf_thread_t *, QWidget * );
42     virtual ~ExtVideo();
43     /*void gotoConf( QObject* );*/
44 private:
45     Ui::ExtVideoWidget ui;
46     QSignalMapper* filterMapper;
47     intf_thread_t *p_intf;
48     void initComboBoxItems( QObject* );
49     void setWidgetValue( QObject* );
50     void ChangeVFiltersString( char *psz_name, vlc_bool_t b_add );
51 private slots:
52     void updateFilters();
53     void updateFilterOptions();
54 };
55
56 class Equalizer: public QWidget
57 {
58     Q_OBJECT
59 public:
60     Equalizer( intf_thread_t *, QWidget * );
61     virtual ~Equalizer();
62
63 private:
64     Ui::EqualizerWidget ui;
65     QSlider *bands[BANDS];
66     QLabel *band_texts[BANDS];
67
68     void delCallbacks( aout_instance_t * );
69     void addCallbacks( aout_instance_t * );
70     void setValues( char *, float );
71
72     intf_thread_t *p_intf;
73 private slots:
74     void enable(bool);
75     void enable();
76     void set2Pass();
77     void setPreamp();
78     void setBand();
79     void setPreset(int);
80 };
81
82 class ExtendedControls: public QWidget
83 {
84     Q_OBJECT
85 public:
86     ExtendedControls( intf_thread_t *, QWidget * ) {};
87     virtual ~ExtendedControls() {};
88
89 private:
90     intf_thread_t *p_intf;
91 private slots:
92     void slower() {};
93     void faster() {};
94     void normal() {};
95     void snapshot() {};
96 };
97
98 #endif