summaryrefslogtreecommitdiff
path: root/src/plugins/qmljseditor/quicktoolbarsettingspage.h
diff options
context:
space:
mode:
authorThomas Hartmann <Thomas.Hartmann@nokia.com>2010-08-12 15:48:24 +0200
committerThomas Hartmann <Thomas.Hartmann@nokia.com>2010-08-12 15:51:14 +0200
commit36edd86441279586843bf498a7a8dee95c531738 (patch)
treefea38fefe6aac8d7d5f2f749d993e5aa103d15c3 /src/plugins/qmljseditor/quicktoolbarsettingspage.h
parent22a9bb192eb47968ef6d588b35d6c38512284bcc (diff)
downloadqt-creator-36edd86441279586843bf498a7a8dee95c531738.tar.gz
QmlJSEditor: Add QuickToolBar to QmlJSEditor
QmlDesigner is not needed anymore for the QuickToolBar QmlJSEditor has a depends now on libs/qmleditorwidgets
Diffstat (limited to 'src/plugins/qmljseditor/quicktoolbarsettingspage.h')
-rw-r--r--src/plugins/qmljseditor/quicktoolbarsettingspage.h113
1 files changed, 113 insertions, 0 deletions
diff --git a/src/plugins/qmljseditor/quicktoolbarsettingspage.h b/src/plugins/qmljseditor/quicktoolbarsettingspage.h
new file mode 100644
index 0000000000..da25bb320e
--- /dev/null
+++ b/src/plugins/qmljseditor/quicktoolbarsettingspage.h
@@ -0,0 +1,113 @@
+/**************************************************************************
+**
+** This file is part of Qt Creator
+**
+** Copyright (c) 2010 Nokia Corporation and/or its subsidiary(-ies).
+**
+** Contact: Nokia Corporation (qt-info@nokia.com)
+**
+** Commercial Usage
+**
+** Licensees holding valid Qt Commercial licenses may use this file in
+** accordance with the Qt Commercial License Agreement provided with the
+** Software or, alternatively, in accordance with the terms contained in
+** a written agreement between you and Nokia.
+**
+** GNU Lesser General Public License Usage
+**
+** Alternatively, this file may be used under the terms of the GNU Lesser
+** General Public License version 2.1 as published by the Free Software
+** Foundation and appearing in the file LICENSE.LGPL included in the
+** packaging of this file. Please review the following information to
+** ensure the GNU Lesser General Public License version 2.1 requirements
+** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
+**
+** If you are unsure which license is appropriate for your use, please
+** contact the sales department at http://qt.nokia.com/contact.
+**
+**************************************************************************/
+
+
+#ifndef QUICKTOOLBARSETTINGSPAGE_H
+#define QUICKTOOLBARSETTINGSPAGE_H
+
+#include "ui_quicktoolbarsettingspage.h"
+#include <coreplugin/dialogs/ioptionspage.h>
+#include <QtGui/QWidget>
+
+QT_BEGIN_NAMESPACE
+class QSettings;
+QT_END_NAMESPACE
+
+namespace QmlJSEditor {
+
+ class QuickToolBarSettings {
+ public:
+ QuickToolBarSettings();
+
+ static QuickToolBarSettings get();
+ void set();
+
+ void fromSettings(QSettings *);
+ void toSettings(QSettings *) const;
+
+ bool equals(const QuickToolBarSettings &other) const;
+ bool enableContextPane;
+ bool pinContextPane;
+ };
+
+ inline bool operator==(const QuickToolBarSettings &s1, const QuickToolBarSettings &s2)
+ { return s1.equals(s2); }
+ inline bool operator!=(const QuickToolBarSettings &s1, const QuickToolBarSettings &s2)
+ { return !s1.equals(s2); }
+
+
+class QuickToolBarSettings;
+
+namespace Internal {
+
+class QuickToolBarSettingsPageWidget : public QWidget
+{
+ Q_OBJECT
+
+public:
+ explicit QuickToolBarSettingsPageWidget(QWidget *parent = 0);
+
+ QuickToolBarSettings settings() const;
+ void setSettings(const QuickToolBarSettings &);
+
+ QString searchKeywords() const;
+ static QuickToolBarSettings get();
+
+private:
+ Ui::QuickToolBarSettingsPage m_ui;
+};
+
+
+class QuickToolBarSettingsPage : public Core::IOptionsPage
+{
+ Q_OBJECT
+
+public:
+ QuickToolBarSettingsPage();
+
+ QString id() const;
+ QString displayName() const;
+ QString category() const;
+ QString displayCategory() const;
+ QIcon categoryIcon() const;
+
+ QWidget *createPage(QWidget *parent);
+ void apply();
+ void finish() { }
+ virtual bool matches(const QString &) const;
+
+private:
+ QString m_searchKeywords;
+ QuickToolBarSettingsPageWidget* m_widget;
+};
+
+} // namespace Internal
+} // namespace QmlDesigner
+
+#endif // QUICKTOOLBARSETTINGSPAGE_H