Program Listing for File live_config_ini_file.h¶
↰ Return to documentation for file (include/miral/miral/live_config_ini_file.h
)
/*
* Copyright © Canonical Ltd.
*
* This program is free software: you can redistribute it and/or modify it
* under the terms of the GNU General Public License version 2 or 3 as
* published by the Free Software Foundation.
*
* This program 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 this program. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef MIRAL_LIVE_CONFIG_INI_FILE_H
#define MIRAL_LIVE_CONFIG_INI_FILE_H
#include <miral/live_config.h>
#include <filesystem>
namespace miral::live_config
{
class IniFile : public Store
{
public:
IniFile();
~IniFile() override;
void add_int_attribute(Key const& key, std::string_view description, HandleInt handler) override;
void add_ints_attribute(Key const& key, std::string_view description, HandleInts handler) override;
void add_bool_attribute(Key const& key, std::string_view description, HandleBool handler) override;
void add_float_attribute(Key const& key, std::string_view description, HandleFloat handler) override;
void add_floats_attribute(Key const& key, std::string_view description, HandleFloats handler) override;
void add_string_attribute(Key const& key, std::string_view description, HandleString handler) override;
void add_strings_attribute(Key const& key, std::string_view description, HandleStrings handler) override;
void add_int_attribute(Key const& key, std::string_view description, int preset, HandleInt handler) override;
void add_ints_attribute(Key const& key, std::string_view description, std::span<int const> preset, HandleInts handler) override;
void add_bool_attribute(Key const& key, std::string_view description, bool preset, HandleBool handler) override;
void add_float_attribute(Key const& key, std::string_view description, float preset, HandleFloat handler) override;
void add_floats_attribute(Key const& key, std::string_view description, std::span<float const> preset, HandleFloats handler) override;
void add_string_attribute(Key const& key, std::string_view description, std::string_view preset, HandleString handler) override;
void add_strings_attribute(Key const& key, std::string_view description, std::span<std::string const> preset, HandleStrings handler) override;
void on_done(HandleDone handler) override;
void load_file(std::istream& istream, std::filesystem::path const& path);
private:
class Self;
std::shared_ptr<Self> self;
};
}
#endif //MIRAL_LIVE_CONFIG_INI_FILE_H