2016-07-29 07:45:49 -05:00
|
|
|
|
// Copyright 2014 Citra Emulator Project
|
2014-12-16 23:38:14 -06:00
|
|
|
|
// Licensed under GPLv2 or any later version
|
2014-09-12 19:06:13 -05:00
|
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
2016-07-29 07:45:49 -05:00
|
|
|
|
#include <QVariant>
|
2016-09-17 19:38:01 -05:00
|
|
|
|
#include <string>
|
2016-07-29 07:45:49 -05:00
|
|
|
|
|
|
|
|
|
#include "core/settings.h"
|
2014-09-12 19:06:13 -05:00
|
|
|
|
|
2015-06-21 08:58:59 -05:00
|
|
|
|
class QSettings;
|
2014-09-12 19:06:13 -05:00
|
|
|
|
|
|
|
|
|
class Config {
|
|
|
|
|
QSettings* qt_config;
|
|
|
|
|
std::string qt_config_loc;
|
|
|
|
|
|
2014-11-15 13:56:18 -06:00
|
|
|
|
void ReadValues();
|
|
|
|
|
void SaveValues();
|
2016-09-17 19:38:01 -05:00
|
|
|
|
|
2014-09-12 19:06:13 -05:00
|
|
|
|
public:
|
|
|
|
|
Config();
|
|
|
|
|
~Config();
|
|
|
|
|
|
|
|
|
|
void Reload();
|
|
|
|
|
void Save();
|
2016-07-29 07:45:49 -05:00
|
|
|
|
static const std::array<QVariant, Settings::NativeInput::NUM_INPUTS> defaults;
|
2014-09-12 19:06:13 -05:00
|
|
|
|
};
|