Qmmp
eqsettings.h
1 /***************************************************************************
2  * Copyright (C) 2010-2018 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 
24 #include "qmmp_export.h"
25 
29 class QMMP_EXPORT EqSettings
30 {
31 public:
35  EqSettings(const EqSettings &other);
40  EqSettings(int bands = EQ_BANDS_10);
44  bool isEnabled() const;
48  double gain(int chan) const;
52  double preamp() const;
56  int bands() const;
60  void setEnabled(bool enabled = true);
66  void setGain(int band, double gain);
70  void setPreamp(double preamp);
74  EqSettings &operator=(const EqSettings &s);
78  bool operator==(const EqSettings &s) const;
82  bool operator!=(const EqSettings &s) const;
86  enum BANDS
87  {
88  EQ_BANDS_10 = 10,
89  EQ_BANDS_15 = 15,
90  EQ_BANDS_25 = 25,
91  EQ_BANDS_31 = 31
92  };
93 
94 private:
95  double m_gains[31];
96  double m_preamp;
97  bool m_is_enabled;
98  int m_bands;
99 };
100 
101 #endif // EQSETTINGS_H
The EqSettings class helps to work with equalizer settings.
Definition: eqsettings.h:29
BANDS
Definition: eqsettings.h:86