summaryrefslogtreecommitdiff
path: root/src/pluginlist.h
diff options
context:
space:
mode:
authorJeremy Rimpo <jeremy.rimpo@servermonkey.com>2023-09-05 13:25:01 -0500
committerJeremy Rimpo <jeremy.rimpo@servermonkey.com>2023-09-05 13:25:01 -0500
commit58cc25f3227dd82011c809b50bbedbeec039ccc4 (patch)
treebe32ba96c7d39ed6fa55939b0b26ab01c38da875 /src/pluginlist.h
parente0d6bb12bff73f26bd73bc096053cc8b4dd92aab (diff)
Implement 'override' plugin support
Diffstat (limited to 'src/pluginlist.h')
-rw-r--r--src/pluginlist.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/pluginlist.h b/src/pluginlist.h
index e7a65c81..56f9e1a9 100644
--- a/src/pluginlist.h
+++ b/src/pluginlist.h
@@ -241,6 +241,7 @@ public:
bool hasLightExtension(const QString& name) const;
bool isMasterFlagged(const QString& name) const;
bool isLightFlagged(const QString& name) const;
+ bool isOverrideFlagged(const QString& name) const;
boost::signals2::connection onRefreshed(const std::function<void()>& callback);
boost::signals2::connection
@@ -314,7 +315,7 @@ private:
{
ESPInfo(const QString& name, bool enabled, const QString& originName,
const QString& fullPath, bool hasIni, std::set<QString> archives,
- bool lightSupported);
+ bool lightSupported, bool overrideSupported);
QString name;
QString fullPath;
@@ -329,6 +330,7 @@ private:
bool hasLightExtension;
bool isMasterFlagged;
bool isLightFlagged;
+ bool isOverrideFlagged;
bool modSelected;
QString author;
QString description;