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