From 58cc25f3227dd82011c809b50bbedbeec039ccc4 Mon Sep 17 00:00:00 2001 From: Jeremy Rimpo Date: Tue, 5 Sep 2023 13:25:01 -0500 Subject: Implement 'override' plugin support --- src/pluginlist.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'src/pluginlist.h') 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& 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 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; -- cgit v1.3.1