2016-01-24 17:34:05 +00:00
|
|
|
// Copyright 2016 Citra Emulator Project
|
|
|
|
// Licensed under GPLv2 or any later version
|
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
2016-01-24 20:54:04 +00:00
|
|
|
#pragma once
|
2016-01-24 17:34:05 +00:00
|
|
|
|
2017-06-24 00:35:17 +00:00
|
|
|
#include <array>
|
2018-11-04 00:38:39 +00:00
|
|
|
#include <atomic>
|
2016-09-20 15:21:23 +00:00
|
|
|
#include <vector>
|
2016-01-24 20:23:55 +00:00
|
|
|
#include <QByteArray>
|
|
|
|
#include <QString>
|
2016-09-18 00:38:01 +00:00
|
|
|
#include <QStringList>
|
2016-01-24 20:23:55 +00:00
|
|
|
|
2016-01-24 17:34:05 +00:00
|
|
|
namespace UISettings {
|
|
|
|
|
2016-09-18 00:38:01 +00:00
|
|
|
using ContextualShortcut = std::pair<QString, int>;
|
2016-01-24 20:54:04 +00:00
|
|
|
using Shortcut = std::pair<QString, ContextualShortcut>;
|
2016-01-24 20:23:55 +00:00
|
|
|
|
2018-10-04 10:33:17 +00:00
|
|
|
using Themes = std::array<std::pair<const char*, const char*>, 2>;
|
|
|
|
extern const Themes themes;
|
2018-03-30 09:50:10 +00:00
|
|
|
|
2016-01-24 17:34:05 +00:00
|
|
|
struct Values {
|
2016-01-24 20:23:55 +00:00
|
|
|
QByteArray geometry;
|
|
|
|
QByteArray state;
|
|
|
|
|
|
|
|
QByteArray renderwindow_geometry;
|
|
|
|
|
|
|
|
QByteArray gamelist_header_state;
|
|
|
|
|
|
|
|
QByteArray microprofile_geometry;
|
|
|
|
bool microprofile_visible;
|
|
|
|
|
|
|
|
bool single_window_mode;
|
2018-01-16 14:50:33 +00:00
|
|
|
bool fullscreen;
|
2016-01-24 20:23:55 +00:00
|
|
|
bool display_titlebar;
|
2017-04-30 02:04:39 +00:00
|
|
|
bool show_filter_bar;
|
2017-02-18 20:09:14 +00:00
|
|
|
bool show_status_bar;
|
2016-01-24 20:23:55 +00:00
|
|
|
|
2016-01-24 20:54:04 +00:00
|
|
|
bool confirm_before_closing;
|
2016-01-24 20:23:55 +00:00
|
|
|
bool first_start;
|
|
|
|
|
2018-09-16 18:05:51 +00:00
|
|
|
// Discord RPC
|
|
|
|
bool enable_discord_presence;
|
|
|
|
|
2016-01-24 20:23:55 +00:00
|
|
|
QString roms_path;
|
|
|
|
QString symbols_path;
|
2016-01-24 20:54:04 +00:00
|
|
|
QString gamedir;
|
2016-01-24 20:23:55 +00:00
|
|
|
bool gamedir_deepscan;
|
|
|
|
QStringList recent_files;
|
|
|
|
|
2017-06-24 00:35:17 +00:00
|
|
|
QString theme;
|
|
|
|
|
2016-01-24 20:23:55 +00:00
|
|
|
// Shortcut name <Shortcut, context>
|
|
|
|
std::vector<Shortcut> shortcuts;
|
2017-08-09 00:06:25 +00:00
|
|
|
|
|
|
|
uint32_t callout_flags;
|
2018-07-02 17:10:41 +00:00
|
|
|
|
|
|
|
// logging
|
|
|
|
bool show_console;
|
2018-07-28 16:32:16 +00:00
|
|
|
|
2018-11-22 20:25:12 +00:00
|
|
|
// Controllers
|
|
|
|
uint32_t profile_index;
|
|
|
|
|
2018-07-28 16:32:16 +00:00
|
|
|
// Game List
|
|
|
|
bool show_unknown;
|
2018-11-02 00:27:12 +00:00
|
|
|
bool show_add_ons;
|
2018-07-28 16:32:16 +00:00
|
|
|
uint32_t icon_size;
|
|
|
|
uint8_t row_1_text_id;
|
|
|
|
uint8_t row_2_text_id;
|
2018-11-04 00:38:39 +00:00
|
|
|
std::atomic_bool is_game_list_reload_pending{false};
|
2016-01-24 20:54:04 +00:00
|
|
|
};
|
2016-01-24 17:34:05 +00:00
|
|
|
|
2016-01-24 20:54:04 +00:00
|
|
|
extern Values values;
|
2018-01-20 07:48:02 +00:00
|
|
|
} // namespace UISettings
|