2016-01-24 18:34:05 +01:00
|
|
|
// Copyright 2016 Citra Emulator Project
|
|
|
|
// Licensed under GPLv2 or any later version
|
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
2016-01-24 21:54:04 +01:00
|
|
|
#pragma once
|
2016-01-24 18:34:05 +01:00
|
|
|
|
2017-06-24 02:35:17 +02:00
|
|
|
#include <array>
|
2018-11-04 01:38:39 +01:00
|
|
|
#include <atomic>
|
2016-09-20 17:21:23 +02:00
|
|
|
#include <vector>
|
2016-01-24 21:23:55 +01:00
|
|
|
#include <QByteArray>
|
2019-05-01 23:21:04 +02:00
|
|
|
#include <QMetaType>
|
2016-01-24 21:23:55 +01:00
|
|
|
#include <QString>
|
2016-09-18 02:38:01 +02:00
|
|
|
#include <QStringList>
|
2019-06-08 00:51:58 +02:00
|
|
|
#include <QVector>
|
2018-08-31 08:16:16 +02:00
|
|
|
#include "common/common_types.h"
|
2021-06-28 23:32:24 +02:00
|
|
|
#include "common/settings.h"
|
2016-01-24 21:23:55 +01:00
|
|
|
|
2016-01-24 18:34:05 +01:00
|
|
|
namespace UISettings {
|
|
|
|
|
2016-09-18 02:38:01 +02:00
|
|
|
using ContextualShortcut = std::pair<QString, int>;
|
2019-02-16 16:19:29 +01:00
|
|
|
|
|
|
|
struct Shortcut {
|
|
|
|
QString name;
|
|
|
|
QString group;
|
|
|
|
ContextualShortcut shortcut;
|
|
|
|
};
|
2016-01-24 21:23:55 +01:00
|
|
|
|
2020-07-18 15:23:20 +02:00
|
|
|
using Themes = std::array<std::pair<const char*, const char*>, 6>;
|
2018-10-04 12:33:17 +02:00
|
|
|
extern const Themes themes;
|
2018-03-30 11:50:10 +02:00
|
|
|
|
2019-05-01 23:21:04 +02:00
|
|
|
struct GameDir {
|
|
|
|
QString path;
|
2020-08-15 17:14:09 +02:00
|
|
|
bool deep_scan = false;
|
|
|
|
bool expanded = false;
|
2019-05-01 23:21:04 +02:00
|
|
|
bool operator==(const GameDir& rhs) const {
|
|
|
|
return path == rhs.path;
|
2020-08-15 17:14:09 +02:00
|
|
|
}
|
2019-05-01 23:21:04 +02:00
|
|
|
bool operator!=(const GameDir& rhs) const {
|
|
|
|
return !operator==(rhs);
|
2020-08-15 17:14:09 +02:00
|
|
|
}
|
2019-05-01 23:21:04 +02:00
|
|
|
};
|
|
|
|
|
2016-01-24 18:34:05 +01:00
|
|
|
struct Values {
|
2016-01-24 21:23:55 +01:00
|
|
|
QByteArray geometry;
|
|
|
|
QByteArray state;
|
|
|
|
|
|
|
|
QByteArray renderwindow_geometry;
|
|
|
|
|
|
|
|
QByteArray gamelist_header_state;
|
|
|
|
|
|
|
|
QByteArray microprofile_geometry;
|
2021-06-28 23:32:24 +02:00
|
|
|
Settings::BasicSetting<bool> microprofile_visible{false, "microProfileDialogVisible"};
|
2016-01-24 21:23:55 +01:00
|
|
|
|
2021-06-28 23:32:24 +02:00
|
|
|
Settings::BasicSetting<bool> single_window_mode{true, "singleWindowMode"};
|
|
|
|
Settings::BasicSetting<bool> fullscreen{false, "fullscreen"};
|
|
|
|
Settings::BasicSetting<bool> display_titlebar{true, "displayTitleBars"};
|
|
|
|
Settings::BasicSetting<bool> show_filter_bar{true, "showFilterBar"};
|
|
|
|
Settings::BasicSetting<bool> show_status_bar{true, "showStatusBar"};
|
2016-01-24 21:23:55 +01:00
|
|
|
|
2021-06-28 23:32:24 +02:00
|
|
|
Settings::BasicSetting<bool> confirm_before_closing{true, "confirmClose"};
|
|
|
|
Settings::BasicSetting<bool> first_start{true, "firstStart"};
|
|
|
|
Settings::BasicSetting<bool> pause_when_in_background{false, "pauseWhenInBackground"};
|
|
|
|
Settings::BasicSetting<bool> hide_mouse{false, "hideInactiveMouse"};
|
2016-01-24 21:23:55 +01:00
|
|
|
|
2021-06-28 23:32:24 +02:00
|
|
|
Settings::BasicSetting<bool> select_user_on_boot{false, "select_user_on_boot"};
|
2018-12-25 16:42:02 +01:00
|
|
|
|
2018-09-16 20:05:51 +02:00
|
|
|
// Discord RPC
|
2021-06-28 23:32:24 +02:00
|
|
|
Settings::BasicSetting<bool> enable_discord_presence{true, "enable_discord_presence"};
|
2018-09-16 20:05:51 +02:00
|
|
|
|
2021-06-28 23:32:24 +02:00
|
|
|
Settings::BasicSetting<bool> enable_screenshot_save_as{true, "enable_screenshot_save_as"};
|
|
|
|
Settings::BasicSetting<u16> screenshot_resolution_factor{0, "screenshot_resolution_factor"};
|
2018-08-31 08:16:16 +02:00
|
|
|
|
2016-01-24 21:23:55 +01:00
|
|
|
QString roms_path;
|
|
|
|
QString symbols_path;
|
2019-05-01 23:21:04 +02:00
|
|
|
QString game_dir_deprecated;
|
|
|
|
bool game_dir_deprecated_deepscan;
|
2019-06-08 00:51:58 +02:00
|
|
|
QVector<UISettings::GameDir> game_dirs;
|
2021-04-10 11:09:01 +02:00
|
|
|
QVector<u64> favorited_ids;
|
2016-01-24 21:23:55 +01:00
|
|
|
QStringList recent_files;
|
2020-01-26 00:26:07 +01:00
|
|
|
QString language;
|
2016-01-24 21:23:55 +01:00
|
|
|
|
2017-06-24 02:35:17 +02:00
|
|
|
QString theme;
|
|
|
|
|
2016-01-24 21:23:55 +01:00
|
|
|
// Shortcut name <Shortcut, context>
|
|
|
|
std::vector<Shortcut> shortcuts;
|
2017-08-09 02:06:25 +02:00
|
|
|
|
2021-06-28 23:32:24 +02:00
|
|
|
Settings::BasicSetting<uint32_t> callout_flags{0, "calloutFlags"};
|
2018-07-02 19:10:41 +02:00
|
|
|
|
|
|
|
// logging
|
2021-06-28 23:32:24 +02:00
|
|
|
Settings::BasicSetting<bool> show_console{false, "showConsole"};
|
2018-07-28 18:32:16 +02:00
|
|
|
|
|
|
|
// Game List
|
2021-06-28 23:32:24 +02:00
|
|
|
Settings::BasicSetting<bool> show_add_ons{true, "show_add_ons"};
|
|
|
|
Settings::BasicSetting<uint32_t> icon_size{64, "icon_size"};
|
|
|
|
Settings::BasicSetting<uint8_t> row_1_text_id{3, "row_1_text_id"};
|
|
|
|
Settings::BasicSetting<uint8_t> row_2_text_id{2, "row_2_text_id"};
|
2018-11-04 01:38:39 +01:00
|
|
|
std::atomic_bool is_game_list_reload_pending{false};
|
2021-06-28 23:32:24 +02:00
|
|
|
Settings::BasicSetting<bool> cache_game_list{true, "cache_game_list"};
|
2021-05-17 22:13:39 +02:00
|
|
|
|
|
|
|
bool configuration_applied;
|
2021-05-26 02:49:42 +02:00
|
|
|
bool reset_to_defaults;
|
2016-01-24 21:54:04 +01:00
|
|
|
};
|
2016-01-24 18:34:05 +01:00
|
|
|
|
2016-01-24 21:54:04 +01:00
|
|
|
extern Values values;
|
2020-07-22 16:39:53 +02:00
|
|
|
|
2018-01-20 08:48:02 +01:00
|
|
|
} // namespace UISettings
|
2019-05-01 23:21:04 +02:00
|
|
|
|
|
|
|
Q_DECLARE_METATYPE(UISettings::GameDir*);
|