summaryrefslogtreecommitdiff
path: root/src/plugins/texteditor/behaviorsettingspage.h
diff options
context:
space:
mode:
authorThorbjørn Lindeijer <thorbjorn.lindeijer@nokia.com>2009-12-08 17:37:40 +0100
committerThorbjørn Lindeijer <thorbjorn.lindeijer@nokia.com>2009-12-08 18:22:52 +0100
commit3d2d12247284b13b474768bbc929e93f49c6a216 (patch)
tree2cac490d0782b63a836002a3e84c1c318b4e70cd /src/plugins/texteditor/behaviorsettingspage.h
parent2774c9c0bfc71b54dce0a36ab91d54b392f74172 (diff)
downloadqt-creator-3d2d12247284b13b474768bbc929e93f49c6a216.tar.gz
Moved the mouse navigation option to the Behaviour settings page
It used to be hidden on the Display settings page. Task-number: QTCREATORBUG-135
Diffstat (limited to 'src/plugins/texteditor/behaviorsettingspage.h')
-rw-r--r--src/plugins/texteditor/behaviorsettingspage.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/plugins/texteditor/behaviorsettingspage.h b/src/plugins/texteditor/behaviorsettingspage.h
index 98e7025bcf..a07eb24ef7 100644
--- a/src/plugins/texteditor/behaviorsettingspage.h
+++ b/src/plugins/texteditor/behaviorsettingspage.h
@@ -40,6 +40,7 @@ namespace TextEditor {
struct TabSettings;
struct StorageSettings;
+struct BehaviorSettings;
struct BehaviorSettingsPageParameters
{
@@ -70,16 +71,19 @@ public:
TabSettings tabSettings() const;
StorageSettings storageSettings() const;
+ BehaviorSettings behaviorSettings() const;
virtual bool matches(const QString &s) const;
signals:
void tabSettingsChanged(const TextEditor::TabSettings &);
void storageSettingsChanged(const TextEditor::StorageSettings &);
+ void behaviorSettingsChanged(const TextEditor::BehaviorSettings &);
private:
void settingsFromUI(TabSettings &rc,
- StorageSettings &storageSettings) const;
+ StorageSettings &storageSettings,
+ BehaviorSettings &behaviorSettings) const;
void settingsToUI();
struct BehaviorSettingsPagePrivate;
BehaviorSettingsPagePrivate *m_d;