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>
|
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>
|
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>;
|
2016-01-24 21:54:04 +01:00
|
|
|
using Shortcut = std::pair<QString, ContextualShortcut>;
|
2016-01-24 21:23:55 +01:00
|
|
|
|
2018-08-16 10:39:23 +02:00
|
|
|
static const std::array<std::pair<QString, QString>, 4> themes = {
|
2017-06-24 02:35:17 +02:00
|
|
|
{std::make_pair(QString("Default"), QString("default")),
|
2018-08-16 10:39:23 +02:00
|
|
|
std::make_pair(QString("Dark"), QString("qdarkstyle")),
|
|
|
|
std::make_pair(QString("Colorful"), QString("colorful")),
|
|
|
|
std::make_pair(QString("Colorful Dark"), QString("colorful_dark"))}};
|
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);
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
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;
|
|
|
|
|
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-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-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*);
|