|
@@ -66,8 +66,15 @@ public:
|
|
|
void saveStorage();
|
|
|
void load();
|
|
|
|
|
|
+ // Fired when a section's description is updated.
|
|
|
Q_SIGNAL void groupUpdate(const QString& section, const QVariant& description);
|
|
|
|
|
|
+ // Fired when a subset of a section's values are updated. The values parameter will
|
|
|
+ // contain the names of the changed values as keys, and the new settings values as
|
|
|
+ // map values. Settings which are part of the section, but did not change, are not
|
|
|
+ // part of the map.
|
|
|
+ Q_SIGNAL void sectionValueUpdate(const QString& section, const QVariantMap& values);
|
|
|
+
|
|
|
void setUserRoleList(const QStringList& userRoles);
|
|
|
|
|
|
// A hack to load a value from the config file at very early init time, before
|