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