diff options
| author | LostDragonist <lost.dragonist@gmail.com> | 2018-12-08 10:37:46 -0600 |
|---|---|---|
| committer | LostDragonist <lost.dragonist@gmail.com> | 2018-12-08 10:44:46 -0600 |
| commit | c501b5cca081e1b3697904a3b4e1e236ea9c4e69 (patch) | |
| tree | 01e2f84719dac045e5ebb57b6081ad9e6eeda5ce /src/modinfo.h | |
| parent | c87d97de8c4e15c91f17ab35173ec6f22e80c8e5 (diff) | |
Add notes column to mod list
Diffstat (limited to 'src/modinfo.h')
| -rw-r--r-- | src/modinfo.h | 17 |
1 files changed, 14 insertions, 3 deletions
diff --git a/src/modinfo.h b/src/modinfo.h index 235fb50c..5a69185d 100644 --- a/src/modinfo.h +++ b/src/modinfo.h @@ -44,7 +44,7 @@ namespace MOShared { class DirectoryEntry; } /**
* @brief Represents meta information about a single mod.
- *
+ *
* Represents meta information about a single mod. The class interface is used
* to manage the mod collection
*
@@ -85,7 +85,7 @@ public: CONTENT_SOUND,
CONTENT_SCRIPT,
CONTENT_SKSE,
- CONTENT_SKSEFILES,
+ CONTENT_SKSEFILES,
CONTENT_SKYPROC,
CONTENT_MCM,
CONTENT_INI,
@@ -269,6 +269,12 @@ public: virtual void setCategory(int categoryID, bool active) = 0;
/**
+ * @brief changes the comments (manually set information displayed in the mod list) for this mod
+ * @param comments new comments
+ */
+ virtual void setComments(const QString &comments) = 0;
+
+ /**
* @brief change the notes (manually set information) for this mod
* @param notes new notes
*/
@@ -496,6 +502,11 @@ public: virtual QString getDescription() const = 0;
/**
+ * @return comments for this mod
+ */
+ virtual QString comments() const = 0;
+
+ /**
* @return notes for this mod
*/
virtual QString notes() const = 0;
@@ -526,7 +537,7 @@ public: virtual QStringList archives() const = 0;
/*
- *@return the color choosen by the user for the mod/separator
+ *@return the color choosen by the user for the mod/separator
*/
virtual QColor getColor() { return QColor(); }
|
