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>
|
2018-11-03 21:38:39 -03:00
|
|
|
#include <atomic>
|
2016-09-20 12:21:23 -03:00
|
|
|
#include <vector>
|
2016-01-24 17:23:55 -03:00
|
|
|
#include <QByteArray>
|
2019-05-01 17:21:04 -04:00
|
|
|
#include <QMetaType>
|
2016-01-24 17:23:55 -03:00
|
|
|
#include <QString>
|
2016-09-17 21:38:01 -03:00
|
|
|
#include <QStringList>
|
2019-06-07 18:51:58 -04:00
|
|
|
#include <QVector>
|
2018-08-31 03:16:16 -03:00
|
|
|
#include "common/common_types.h"
|
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>;
|
2019-02-16 12:19:29 -03:00
|
|
|
|
|
|
|
struct Shortcut {
|
|
|
|
QString name;
|
|
|
|
QString group;
|
|
|
|
ContextualShortcut shortcut;
|
|
|
|
};
|
2016-01-24 17:23:55 -03:00
|
|
|
|
2019-09-22 11:42:00 -03:00
|
|
|
using Themes = std::array<std::pair<const char*, const char*>, 4>;
|
2018-10-04 07:33:17 -03:00
|
|
|
extern const Themes themes;
|
2018-03-30 06:50:10 -03:00
|
|
|
|
2019-05-01 17:21:04 -04:00
|
|
|
struct GameDir {
|
|
|
|
QString path;
|
|
|
|
bool deep_scan;
|
|
|
|
bool expanded;
|
|
|
|
bool operator==(const GameDir& rhs) const {
|
|
|
|
return path == rhs.path;
|
|
|
|
};
|
|
|
|
bool operator!=(const GameDir& rhs) const {
|
|
|
|
return !operator==(rhs);
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
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;
|
2019-09-26 09:54:31 -03:00
|
|
|
bool pause_when_in_background;
|
2016-01-24 17:23:55 -03:00
|
|
|
|
2018-12-25 12:42:02 -03:00
|
|
|
bool select_user_on_boot;
|
|
|
|
|
2018-09-16 15:05:51 -03:00
|
|
|
// Discord RPC
|
|
|
|
bool enable_discord_presence;
|
|
|
|
|
2018-08-31 03:16:16 -03:00
|
|
|
u16 screenshot_resolution_factor;
|
|
|
|
|
2016-01-24 17:23:55 -03:00
|
|
|
QString roms_path;
|
|
|
|
QString symbols_path;
|
2018-08-31 03:16:16 -03:00
|
|
|
QString screenshot_path;
|
2019-05-01 17:21:04 -04:00
|
|
|
QString game_dir_deprecated;
|
|
|
|
bool game_dir_deprecated_deepscan;
|
2019-06-07 18:51:58 -04:00
|
|
|
QVector<UISettings::GameDir> game_dirs;
|
2016-01-24 17:23:55 -03:00
|
|
|
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
|
|
|
|
2018-11-22 17:25:12 -03:00
|
|
|
// Controllers
|
2018-12-01 13:11:11 -03:00
|
|
|
int profile_index;
|
2018-11-22 17:25:12 -03:00
|
|
|
|
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;
|
2018-11-03 21:38:39 -03:00
|
|
|
std::atomic_bool is_game_list_reload_pending{false};
|
2019-04-23 09:07:31 -04:00
|
|
|
bool cache_game_list;
|
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
|
2019-05-01 17:21:04 -04:00
|
|
|
|
|
|
|
Q_DECLARE_METATYPE(UISettings::GameDir*);
|