1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58
|
/*
* Copyright © 2017-2020 Wellington Wallace
*
* This file is part of PulseEffects.
*
* PulseEffects is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* PulseEffects is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with PulseEffects. If not, see <https://www.gnu.org/licenses/>.
*/
#ifndef EQUALIZER_PRESET_HPP
#define EQUALIZER_PRESET_HPP
#include "plugin_preset_base.hpp"
class EqualizerPreset : public PluginPresetBase {
public:
EqualizerPreset();
void write(PresetType preset_type, boost::property_tree::ptree& root) override;
void read(PresetType preset_type, const boost::property_tree::ptree& root) override;
private:
std::string log_tag = "equalizer_preset: ";
Glib::RefPtr<Gio::Settings> input_settings, input_settings_left, input_settings_right, output_settings,
output_settings_left, output_settings_right;
void save(boost::property_tree::ptree& root,
const std::string& section,
const Glib::RefPtr<Gio::Settings>& settings) override;
void load(const boost::property_tree::ptree& root,
const std::string& section,
const Glib::RefPtr<Gio::Settings>& settings) override;
static void save_channel(boost::property_tree::ptree& root,
const std::string& section,
const Glib::RefPtr<Gio::Settings>& settings,
const int& nbands);
void load_channel(const boost::property_tree::ptree& root,
const std::string& section,
const Glib::RefPtr<Gio::Settings>& settings,
const int& nbands);
void load_legacy_preset();
};
#endif
|