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