forked from qt-creator/qt-creator
Introduced settings database based on sqlite
Potential replacement for QSettings. This database will allow us to save settings incrementially, removing most of the performance issues we're having when our few megabytes of settings are being saved. Not done in the form of a QSettings backend because it doesn't seem the backends can do an incremental update of the settings. Currently used by the QuickOpenPlugin for testing.
This commit is contained in:
@@ -52,6 +52,7 @@ class MimeDatabase;
|
||||
class ModeManager;
|
||||
class ProgressManager;
|
||||
class ScriptManager;
|
||||
class SettingsDatabase;
|
||||
class UniqueIDManager;
|
||||
class VariableManager;
|
||||
class VCSManager;
|
||||
@@ -87,6 +88,7 @@ public:
|
||||
virtual MimeDatabase *mimeDatabase() const = 0;
|
||||
|
||||
virtual QSettings *settings() const = 0;
|
||||
virtual SettingsDatabase *settingsDatabase() const = 0;
|
||||
virtual QPrinter *printer() const = 0;
|
||||
|
||||
virtual QString resourcePath() const = 0;
|
||||
|
||||
Reference in New Issue
Block a user