Sayonara Player
src
Gui
Plugins
Engine
GUI_Equalizer.h
1
/* GUI_Equalizer.h */
2
3
/* Copyright (C) 2011-2019 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 "Gui/Plugins/PlayerPluginBase.h"
33
#include "Utils/Pimpl.h"
34
35
UI_FWD(
GUI_Equalizer
)
36
37
41
class
GUI_Equalizer
:
42
public
PlayerPlugin
::Base
43
{
44
Q_OBJECT
45
UI_CLASS(
GUI_Equalizer
)
46
PIMPL(
GUI_Equalizer
)
47
48
public
:
49
explicit
GUI_Equalizer
(QWidget* parent=
nullptr
);
50
virtual
~
GUI_Equalizer
();
51
52
QString get_name()
const override
;
53
QString get_display_name()
const override
;
54
55
public
slots:
56
void
fill_eq_presets();
57
58
private
:
59
void
init_ui()
override
;
60
void
retranslate_ui()
override
;
61
void
save_current_preset(
const
QString& name);
62
63
private
slots:
64
void
sli_changed(
int
idx,
int
value);
65
void
sli_pressed();
66
void
sli_released();
67
68
void
preset_changed(
int
);
69
void
cb_gauss_toggled(
bool
);
70
71
void
btn_default_clicked();
72
void
btn_save_clicked();
73
void
btn_save_as_clicked();
74
void
btn_delete_clicked();
75
void
btn_undo_clicked();
76
77
void
save_as_ok_clicked();
78
};
79
80
#endif
/* GUI_EQUALIZER_H_ */
GUI_Equalizer
The GUI_Equalizer class.
Definition:
GUI_Equalizer.h:41
PlayerPlugin
Interface for PlayerPlugin classes. get_name() and language_changed() must be overwritten.
Definition:
GUI_Player.h:41
Generated on Sun Nov 17 2019 00:00:00 for Sayonara Player by
1.8.16