mirror of
https://github.com/citra-emu/citra.git
synced 2024-11-23 23:10:10 +00:00
e58a805a22
Allows the configuration code to build successfully with implicit string conversions disabled. Also makes default_hotkeys internally linked: Given the array is a private static array, we can just make it internally linked to hide it from external code. This also allows us to remove an inclusion within the header.
37 lines
978 B
C++
37 lines
978 B
C++
// Copyright 2014 Citra Emulator Project
|
|
// Licensed under GPLv2 or any later version
|
|
// Refer to the license.txt file included.
|
|
|
|
#pragma once
|
|
|
|
#include <array>
|
|
#include <memory>
|
|
#include <string>
|
|
#include <QVariant>
|
|
#include "core/settings.h"
|
|
|
|
class QSettings;
|
|
|
|
class Config {
|
|
public:
|
|
Config();
|
|
~Config();
|
|
|
|
void Reload();
|
|
void Save();
|
|
|
|
static const std::array<int, Settings::NativeButton::NumButtons> default_buttons;
|
|
static const std::array<std::array<int, 5>, Settings::NativeAnalog::NumAnalogs> default_analogs;
|
|
|
|
private:
|
|
void ReadValues();
|
|
void SaveValues();
|
|
QVariant ReadSetting(const QString& name) const;
|
|
QVariant ReadSetting(const QString& name, const QVariant& default_value) const;
|
|
void WriteSetting(const QString& name, const QVariant& value);
|
|
void WriteSetting(const QString& name, const QVariant& value, const QVariant& default_value);
|
|
|
|
std::unique_ptr<QSettings> qt_config;
|
|
std::string qt_config_loc;
|
|
};
|