summaryrefslogtreecommitdiff
path: root/src/pluginlist.h
diff options
context:
space:
mode:
authorJeremy Rimpo <jeremy.rimpo@servermonkey.com>2023-09-17 16:13:26 -0500
committerGitHub <noreply@github.com>2023-09-17 16:13:26 -0500
commita6879e2c63755c3f2254101cc48566e1e4611332 (patch)
treeab7eef4922ac8c8adf6b95051c8e534a68ef23fc /src/pluginlist.h
parent1387f6aefef7b3abb84166793ced8c38b1e12890 (diff)
parentf2a784ed70ef75954a4b9ba5b317794532116619 (diff)
Merge pull request #1863 from ModOrganizer2/starfield
Starfield Support
Diffstat (limited to 'src/pluginlist.h')
-rw-r--r--src/pluginlist.h9
1 files changed, 6 insertions, 3 deletions
diff --git a/src/pluginlist.h b/src/pluginlist.h
index e7a65c81..0c53fc25 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
@@ -312,14 +313,15 @@ signals:
private:
struct ESPInfo
{
- ESPInfo(const QString& name, bool enabled, const QString& originName,
- const QString& fullPath, bool hasIni, std::set<QString> archives,
- bool lightSupported);
+ ESPInfo(const QString& name, bool enabled, bool forceDisabled,
+ const QString& originName, const QString& fullPath, bool hasIni,
+ std::set<QString> archives, bool lightSupported, bool overrideSupported);
QString name;
QString fullPath;
bool enabled;
bool forceEnabled;
+ bool forceDisabled;
int priority;
QString index;
int loadOrder;
@@ -329,6 +331,7 @@ private:
bool hasLightExtension;
bool isMasterFlagged;
bool isLightFlagged;
+ bool isOverrideFlagged;
bool modSelected;
QString author;
QString description;