Sayonara Player
GUI_Equalizer.h
1 /* GUI_Equalizer.h */
2 
3 /* Copyright (C) 2011-2017 Lucio Carreras
4  *
5  * This file is part of sayonara player
6  *
7  * This program is free software: you can redistribute it and/or modify
8  * it under the terms of the GNU General Public License as published by
9  * the Free Software Foundation, either version 3 of the License, or
10  * (at your option) any later version.
11 
12  * This program is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15  * GNU General Public License for more details.
16 
17  * You should have received a copy of the GNU General Public License
18  * along with this program. If not, see <http://www.gnu.org/licenses/>.
19  */
20 
21 
22 /*
23  * GUI_Equalizer.h
24  *
25  * Created on: May 18, 2011
26  * Author: Lucio Carreras
27  */
28 
29 #ifndef GUI_EQUALIZER_H_
30 #define GUI_EQUALIZER_H_
31 
32 #include "Interfaces/PlayerPlugin/PlayerPlugin.h"
33 
34 #include <QList>
35 #include <QMenu>
36 #include <QAction>
37 
38 class EQ_Setting;
39 
40 namespace Ui { class GUI_Equalizer; }
41 
42 class EqSlider;
43 class EngineHandler;
44 
51 {
52  Q_OBJECT
53 
54 public:
55  explicit GUI_Equalizer(QWidget* parent=nullptr);
56  virtual ~GUI_Equalizer();
57 
58  QString get_name() const override;
59  QString get_display_name() const override;
60 
61 public slots:
62  void fill_eq_presets();
63 
64 
65 private:
66  Ui::GUI_Equalizer* ui=nullptr;
67  EngineHandler* _engine=nullptr;
68  QList<EQ_Setting> _presets;
69  QList<EqSlider*> _sliders;
70 
71  int _old_val[10];
72  int _active_idx;
73 
74  int find_combo_text(QString txt);
75 
76 private:
77  void init_ui() override;
78  void retranslate_ui() override;
79 
80 private slots:
81  void sli_changed(int idx, int value);
82  void sli_pressed();
83  void sli_released();
84 
85  void preset_changed(int);
86  void cb_gauss_toggled(bool);
87 
88  void btn_default_clicked();
89  void btn_save_clicked();
90  void btn_delete_clicked();
91  void btn_undo_clicked();
92 
93  void text_changed(const QString&);
94 };
95 
96 #endif /* GUI_EQUALIZER_H_ */
The EqSlider class.
Definition: EqSlider.h:30
Definition: ui_GUI_SomaFM.h:216
The EQ_Setting class. Container for Equalizer configurations.
Definition: EqualizerPresets.h:32
Definition: ui_GUI_Equalizer.h:551
The GUI_Equalizer class.
Definition: GUI_Equalizer.h:49
The EngineHandler class.
Definition: EngineHandler.h:41
Interface for PlayerPlugin classes. get_name() and language_changed() must be overwritten.
Definition: PlayerPlugin.h:38