blob: 70e429ad7f25a199b2c7068038792e7db99279a4 (
plain)
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
|
/*
* SPDX-FileCopyrightText: 2025 Felix Morgner <felix.morgner@gmail.com>
* SPDX-License-Identifier: LGPL-2.1-only
*/
#ifndef TURNS_CORE_SETTINGS_HPP
#define TURNS_CORE_SETTINGS_HPP
#include <glibmm/refptr.h>
#include <giomm/settings.h>
namespace turns::core
{
namespace settings::key
{
auto constexpr disposition_friendly_color = "disposition-color-friendly";
auto constexpr disposition_hostile_color = "disposition-color-hostile";
auto constexpr disposition_secret_color = "disposition-color-secret";
auto constexpr skip_defeated = "skip-defeated";
} // namespace settings::key
auto get_settings() -> Glib::RefPtr<Gio::Settings>;
} // namespace turns::core
#endif
|