Merge pull request #2455 from lioncash/config
configuration/config: Move config loading and saving to functions based off groups
This commit is contained in:
commit
9ffc60b5b3
2 changed files with 595 additions and 337 deletions
File diff suppressed because it is too large
Load diff
|
@ -37,12 +37,46 @@ private:
|
||||||
void ReadTouchscreenValues();
|
void ReadTouchscreenValues();
|
||||||
void ApplyDefaultProfileIfInputInvalid();
|
void ApplyDefaultProfileIfInputInvalid();
|
||||||
|
|
||||||
|
// Read functions bases off the respective config section names.
|
||||||
|
void ReadAudioValues();
|
||||||
|
void ReadControlValues();
|
||||||
|
void ReadCoreValues();
|
||||||
|
void ReadDataStorageValues();
|
||||||
|
void ReadDebuggingValues();
|
||||||
|
void ReadDisabledAddOnValues();
|
||||||
|
void ReadMiscellaneousValues();
|
||||||
|
void ReadPathValues();
|
||||||
|
void ReadRendererValues();
|
||||||
|
void ReadShortcutValues();
|
||||||
|
void ReadSystemValues();
|
||||||
|
void ReadUIValues();
|
||||||
|
void ReadUIGamelistValues();
|
||||||
|
void ReadUILayoutValues();
|
||||||
|
void ReadWebServiceValues();
|
||||||
|
|
||||||
void SaveValues();
|
void SaveValues();
|
||||||
void SavePlayerValues();
|
void SavePlayerValues();
|
||||||
void SaveDebugValues();
|
void SaveDebugValues();
|
||||||
void SaveMouseValues();
|
void SaveMouseValues();
|
||||||
void SaveTouchscreenValues();
|
void SaveTouchscreenValues();
|
||||||
|
|
||||||
|
// Save functions based off the respective config section names.
|
||||||
|
void SaveAudioValues();
|
||||||
|
void SaveControlValues();
|
||||||
|
void SaveCoreValues();
|
||||||
|
void SaveDataStorageValues();
|
||||||
|
void SaveDebuggingValues();
|
||||||
|
void SaveDisabledAddOnValues();
|
||||||
|
void SaveMiscellaneousValues();
|
||||||
|
void SavePathValues();
|
||||||
|
void SaveRendererValues();
|
||||||
|
void SaveShortcutValues();
|
||||||
|
void SaveSystemValues();
|
||||||
|
void SaveUIValues();
|
||||||
|
void SaveUIGamelistValues();
|
||||||
|
void SaveUILayoutValues();
|
||||||
|
void SaveWebServiceValues();
|
||||||
|
|
||||||
QVariant ReadSetting(const QString& name) const;
|
QVariant ReadSetting(const QString& name) const;
|
||||||
QVariant ReadSetting(const QString& name, const QVariant& default_value) 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);
|
||||||
|
|
Loading…
Reference in a new issue