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