mirror of
https://github.com/vcmi/vcmi.git
synced 2024-12-22 22:13:35 +02:00
30ed066cea
added more fields to translatable list
49 lines
1.2 KiB
C++
49 lines
1.2 KiB
C++
/*
|
|
* modstatemodel.h, part of VCMI engine
|
|
*
|
|
* Authors: listed in file AUTHORS in main folder
|
|
*
|
|
* License: GNU General Public License v2.0 or later
|
|
* Full text of license available in license.txt file, in main folder
|
|
*
|
|
*/
|
|
#pragma once
|
|
|
|
#include "modstate.h"
|
|
|
|
VCMI_LIB_NAMESPACE_BEGIN
|
|
class JsonNode;
|
|
class ModManager;
|
|
VCMI_LIB_NAMESPACE_END
|
|
|
|
/// Class that represent current state of available mods
|
|
/// Provides Qt-based interface to library class ModManager
|
|
class ModStateModel
|
|
{
|
|
std::unique_ptr<JsonNode> repositoryData;
|
|
std::unique_ptr<ModManager> modManager;
|
|
|
|
public:
|
|
ModStateModel();
|
|
~ModStateModel();
|
|
|
|
void appendRepositories(const JsonNode & repositoriesList);
|
|
void reloadLocalState();
|
|
const JsonNode & getRepositoryData() const;
|
|
|
|
ModState getMod(QString modName) const;
|
|
QStringList getAllMods() const;
|
|
|
|
QString getInstalledModSizeFormatted(QString modName) const;
|
|
double getInstalledModSizeMegabytes(QString modName) const;
|
|
|
|
bool isModExists(QString modName) const;
|
|
bool isModInstalled(QString modName) const;
|
|
bool isModEnabled(QString modName) const;
|
|
bool isModUpdateAvailable(QString modName) const;
|
|
bool isModVisible(QString modName) const;
|
|
|
|
void doEnableMod(QString modname);
|
|
void doDisableMod(QString modname);
|
|
};
|