summaryrefslogtreecommitdiff
path: root/src/settings.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/settings.h')
-rw-r--r--src/settings.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/settings.h b/src/settings.h
index 1b6616a0..167c74fc 100644
--- a/src/settings.h
+++ b/src/settings.h
@@ -91,6 +91,13 @@ private:
};
+enum class EndorsementState
+{
+ Accepted = 1,
+ Refused,
+ NoDecision
+};
+
/**
* manages the settings for Mod Organizer. The settings are not cached
* inside the class but read/written directly from/to disc
@@ -205,7 +212,9 @@ public:
std::optional<bool> getUseProxy() const;
std::optional<QVersionNumber> getVersion() const;
+
bool getFirstStart() const;
+ void setFirstStart(bool b);
std::optional<QColor> getPreviousSeparatorColor() const;
void setPreviousSeparatorColor(const QColor& c) const;
@@ -354,6 +363,8 @@ public:
*/
bool endorsementIntegration() const;
+ EndorsementState endorsementState() const;
+
/**
* @return true if the API counter should be hidden
*/