summaryrefslogtreecommitdiffstats
path: root/api/logic/minecraft/ProfilePatch.h
diff options
context:
space:
mode:
Diffstat (limited to 'api/logic/minecraft/ProfilePatch.h')
-rw-r--r--api/logic/minecraft/ProfilePatch.h71
1 files changed, 0 insertions, 71 deletions
diff --git a/api/logic/minecraft/ProfilePatch.h b/api/logic/minecraft/ProfilePatch.h
deleted file mode 100644
index 80825342..00000000
--- a/api/logic/minecraft/ProfilePatch.h
+++ /dev/null
@@ -1,71 +0,0 @@
-#pragma once
-
-#include <memory>
-#include <QList>
-#include <QJsonDocument>
-#include <QDateTime>
-#include "ProblemProvider.h"
-
-class ComponentList;
-class LaunchProfile;
-namespace Meta
-{
- class Version;
- class VersionList;
-}
-class VersionFile;
-
-class ProfilePatch : public ProblemProvider
-{
-public:
- ProfilePatch(std::shared_ptr<Meta::Version> version);
- ProfilePatch(std::shared_ptr<VersionFile> file, const QString &filename = QString());
-
- virtual ~ProfilePatch(){};
- virtual void applyTo(LaunchProfile *profile);
-
- virtual bool isMoveable();
- virtual bool isCustomizable();
- virtual bool isRevertible();
- virtual bool isRemovable();
- virtual bool isCustom();
- virtual bool isVersionChangeable();
-
- virtual void setOrder(int order);
- virtual int getOrder();
-
- virtual QString getID();
- virtual QString getName();
- virtual QString getVersion();
- virtual std::shared_ptr<Meta::Version> getMeta();
- virtual QDateTime getReleaseDateTime();
-
- virtual QString getFilename();
-
- virtual std::shared_ptr<class VersionFile> getVersionFile() const;
- virtual std::shared_ptr<class Meta::VersionList> getVersionList() const;
-
- void setVanilla (bool state);
- void setRemovable (bool state);
- void setRevertible (bool state);
- void setMovable (bool state);
-
- const QList<PatchProblem> getProblems() const override;
- ProblemSeverity getProblemSeverity() const override;
-
-protected:
- // Properties for UI and version manipulation from UI in general
- bool m_isMovable = false;
- bool m_isRevertible = false;
- bool m_isRemovable = false;
- bool m_isVanilla = false;
-
- bool m_orderOverride = false;
- int m_order = 0;
-
- std::shared_ptr<Meta::Version> m_metaVersion;
- std::shared_ptr<VersionFile> m_file;
- QString m_filename;
-};
-
-typedef std::shared_ptr<ProfilePatch> ProfilePatchPtr;