2021-01-18 07:28:54 +00:00
|
|
|
/* Copyright 2013-2021 MultiMC Contributors
|
2013-02-25 22:36:27 +00:00
|
|
|
*
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
2013-11-04 01:53:05 +00:00
|
|
|
*
|
2013-02-25 22:36:27 +00:00
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
|
|
|
*/
|
|
|
|
|
2013-11-04 01:53:05 +00:00
|
|
|
#pragma once
|
2013-02-25 22:36:27 +00:00
|
|
|
|
|
|
|
#include <QObject>
|
|
|
|
|
2015-02-09 00:51:14 +00:00
|
|
|
#include "settings/INIFile.h"
|
2013-02-25 22:36:27 +00:00
|
|
|
|
2015-02-09 00:51:14 +00:00
|
|
|
#include "settings/SettingsObject.h"
|
2013-02-25 22:36:27 +00:00
|
|
|
|
|
|
|
/*!
|
|
|
|
* \brief A settings object that stores its settings in an INIFile.
|
|
|
|
*/
|
2023-08-02 17:35:35 +01:00
|
|
|
class INISettingsObject : public SettingsObject {
|
2013-02-25 22:36:27 +00:00
|
|
|
Q_OBJECT
|
2023-08-02 17:35:35 +01:00
|
|
|
public:
|
2022-10-18 15:00:28 +01:00
|
|
|
/** 'paths' is a list of INI files to try, in order, for fallback support. */
|
|
|
|
explicit INISettingsObject(QStringList paths, QObject* parent = nullptr);
|
|
|
|
|
2023-08-02 17:35:35 +01:00
|
|
|
explicit INISettingsObject(QString path, QObject* parent = nullptr);
|
2013-11-04 01:53:05 +00:00
|
|
|
|
2013-02-25 22:36:27 +00:00
|
|
|
/*!
|
|
|
|
* \brief Gets the path to the INI file.
|
|
|
|
* \return The path to the INI file.
|
|
|
|
*/
|
2023-08-02 17:35:35 +01:00
|
|
|
virtual QString filePath() const { return m_filePath; }
|
2013-11-04 01:53:05 +00:00
|
|
|
|
2013-02-25 22:36:27 +00:00
|
|
|
/*!
|
|
|
|
* \brief Sets the path to the INI file and reloads it.
|
|
|
|
* \param filePath The INI file's new path.
|
|
|
|
*/
|
2023-08-02 17:35:35 +01:00
|
|
|
virtual void setFilePath(const QString& filePath);
|
2013-11-04 01:53:05 +00:00
|
|
|
|
2014-03-09 07:43:08 +00:00
|
|
|
bool reload() override;
|
|
|
|
|
2015-09-26 03:04:09 +01:00
|
|
|
void suspendSave() override;
|
|
|
|
void resumeSave() override;
|
2015-05-23 15:07:47 +01:00
|
|
|
|
2023-08-02 17:35:35 +01:00
|
|
|
protected slots:
|
|
|
|
virtual void changeSetting(const Setting& setting, QVariant value) override;
|
|
|
|
virtual void resetSetting(const Setting& setting) override;
|
2013-11-04 01:53:05 +00:00
|
|
|
|
2023-08-02 17:35:35 +01:00
|
|
|
protected:
|
|
|
|
virtual QVariant retrieveValue(const Setting& setting) override;
|
2015-05-23 15:07:47 +01:00
|
|
|
void doSave();
|
2013-11-04 01:53:05 +00:00
|
|
|
|
2023-08-02 17:35:35 +01:00
|
|
|
protected:
|
2013-02-25 22:36:27 +00:00
|
|
|
INIFile m_ini;
|
|
|
|
QString m_filePath;
|
|
|
|
};
|