Qmmp
eqsettings.h
1 /***************************************************************************
2  * Copyright (C) 2010-2017 by Ilya Kotov *
3  * forkotov02@ya.ru *
4  * *
5  * This program is free software; you can redistribute it and/or modify *
6  * it under the terms of the GNU General Public License as published by *
7  * the Free Software Foundation; either version 2 of the License, or *
8  * (at your option) any later version. *
9  * *
10  * This program is distributed in the hope that it will be useful, *
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of *
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
13  * GNU General Public License for more details. *
14  * *
15  * You should have received a copy of the GNU General Public License *
16  * along with this program; if not, write to the *
17  * Free Software Foundation, Inc., *
18  * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. *
19  ***************************************************************************/
20 
21 #ifndef EQSETTINGS_H
22 #define EQSETTINGS_H
23 
28 {
29 public:
33  EqSettings(const EqSettings &other);
42  bool isEnabled() const;
46  double gain(int chan) const;
50  double preamp() const;
54  int bands() const;
58  void setEnabled(bool enabled = true);
64  void setGain(int band, double gain);
68  void setPreamp(double preamp);
72  EqSettings &operator=(const EqSettings &s);
76  bool operator==(const EqSettings &s) const;
80  bool operator!=(const EqSettings &s) const;
84  enum BANDS
85  {
86  EQ_BANDS_10 = 10,
87  EQ_BANDS_15 = 15,
88  EQ_BANDS_25 = 25,
90  };
91 
92 private:
93  double m_gains[31];
94  double m_preamp;
95  bool m_is_enabled;
96  int m_bands;
97 };
98 
99 #endif // EQSETTINGS_H
bool isEnabled() const
Definition: eqsettings.h:86
void setEnabled(bool enabled=true)
void setGain(int band, double gain)
EqSettings(const EqSettings &other)
bool operator==(const EqSettings &s) const
void setPreamp(double preamp)
Definition: eqsettings.h:87
bool operator!=(const EqSettings &s) const
EqSettings & operator=(const EqSettings &s)
Definition: eqsettings.h:88
double gain(int chan) const
Definition: eqsettings.h:89
The EqSettings class helps to work with equalizer settings.
Definition: eqsettings.h:27
BANDS
Definition: eqsettings.h:84
double preamp() const
int bands() const