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-24 09:22:49 +01:00
|
|
|
#include <string>
|
|
|
|
#include <utility>
|
2016-09-20 17:21:23 +02:00
|
|
|
#include <vector>
|
2016-01-24 21:23:55 +01:00
|
|
|
#include <QByteArray>
|
2018-04-20 02:56:24 +02:00
|
|
|
#include <QMetaType>
|
2016-01-24 21:23:55 +01:00
|
|
|
#include <QString>
|
2016-09-18 02:38:01 +02:00
|
|
|
#include <QStringList>
|
2018-08-31 08:16:16 +02:00
|
|
|
#include "common/common_types.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>;
|
2018-05-22 21:30:36 +02:00
|
|
|
|
|
|
|
struct Shortcut {
|
|
|
|
QString name;
|
|
|
|
QString group;
|
|
|
|
ContextualShortcut shortcut;
|
|
|
|
};
|
2016-01-24 21:23:55 +01:00
|
|
|
|
2018-10-04 12:33:17 +02:00
|
|
|
using Themes = std::array<std::pair<const char*, const char*>, 4>;
|
|
|
|
extern const Themes themes;
|
2017-06-24 02:35:17 +02:00
|
|
|
|
2018-04-20 02:56:24 +02: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);
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2018-10-12 16:30:08 +02:00
|
|
|
enum class GameListIconSize {
|
|
|
|
NoIcon, ///< Do not display icons
|
|
|
|
SmallIcon, ///< Display a small (24x24) icon
|
|
|
|
LargeIcon, ///< Display a large (48x48) icon
|
|
|
|
};
|
|
|
|
|
|
|
|
enum class GameListText {
|
|
|
|
NoText = -1, ///< No text
|
|
|
|
FileName, ///< Display the file name of the entry
|
|
|
|
FullPath, ///< Display the full path of the entry
|
|
|
|
TitleName, ///< Display the name of the title
|
|
|
|
TitleID, ///< Display the title ID
|
|
|
|
};
|
|
|
|
|
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;
|
|
|
|
bool microprofile_visible;
|
|
|
|
|
|
|
|
bool single_window_mode;
|
2017-10-11 20:21:09 +02:00
|
|
|
bool fullscreen;
|
2016-01-24 21:23:55 +01:00
|
|
|
bool display_titlebar;
|
2017-04-30 04:04:39 +02:00
|
|
|
bool show_filter_bar;
|
2017-02-18 21:09:14 +01:00
|
|
|
bool show_status_bar;
|
2016-01-24 21:23:55 +01:00
|
|
|
|
2016-01-24 21:54:04 +01:00
|
|
|
bool confirm_before_closing;
|
2016-01-24 21:23:55 +01:00
|
|
|
bool first_start;
|
|
|
|
|
2017-08-19 07:05:49 +02:00
|
|
|
bool updater_found;
|
|
|
|
bool update_on_close;
|
|
|
|
bool check_for_update_on_start;
|
|
|
|
|
2018-08-20 11:20:33 +02:00
|
|
|
// Discord RPC
|
|
|
|
bool enable_discord_presence;
|
|
|
|
|
2018-09-23 05:22:44 +02:00
|
|
|
// Game List
|
2018-10-12 16:30:08 +02:00
|
|
|
GameListIconSize game_list_icon_size;
|
|
|
|
GameListText game_list_row_1;
|
|
|
|
GameListText game_list_row_2;
|
2018-09-23 05:22:44 +02:00
|
|
|
bool game_list_hide_no_icon;
|
|
|
|
|
2018-08-31 08:16:16 +02:00
|
|
|
u16 screenshot_resolution_factor;
|
|
|
|
|
2016-01-24 21:23:55 +01:00
|
|
|
QString roms_path;
|
|
|
|
QString symbols_path;
|
2018-08-12 14:23:59 +02:00
|
|
|
QString movie_record_path;
|
|
|
|
QString movie_playback_path;
|
2018-08-31 08:16:16 +02:00
|
|
|
QString screenshot_path;
|
2018-04-20 02:56:24 +02:00
|
|
|
QString game_dir_deprecated;
|
|
|
|
bool game_dir_deprecated_deepscan;
|
|
|
|
QList<UISettings::GameDir> game_dirs;
|
2016-01-24 21:23:55 +01:00
|
|
|
QStringList recent_files;
|
2017-09-23 15:13:59 +02: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
|
|
|
|
|
|
|
uint32_t callout_flags;
|
2018-01-19 14:42:21 +01:00
|
|
|
|
|
|
|
// multiplayer settings
|
|
|
|
QString nickname;
|
|
|
|
QString ip;
|
|
|
|
QString port;
|
|
|
|
QString room_nickname;
|
|
|
|
QString room_name;
|
|
|
|
quint32 max_player;
|
|
|
|
QString room_port;
|
2018-04-18 07:06:02 +02:00
|
|
|
uint host_type;
|
2018-01-19 14:42:21 +01:00
|
|
|
qulonglong game_id;
|
2018-04-30 09:40:51 +02:00
|
|
|
QString room_description;
|
2018-11-24 09:22:49 +01:00
|
|
|
std::pair<std::vector<std::string>, std::vector<std::string>> ban_list;
|
2018-02-20 01:51:27 +01:00
|
|
|
|
|
|
|
// logging
|
|
|
|
bool show_console;
|
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;
|
2017-10-11 20:21:09 +02:00
|
|
|
} // namespace UISettings
|
2018-04-20 02:56:24 +02:00
|
|
|
|
|
|
|
Q_DECLARE_METATYPE(UISettings::GameDir*);
|