aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/qmldesigner/components/bindingeditor/actioneditordialog.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/plugins/qmldesigner/components/bindingeditor/actioneditordialog.h')
-rw-r--r--src/plugins/qmldesigner/components/bindingeditor/actioneditordialog.h155
1 files changed, 155 insertions, 0 deletions
diff --git a/src/plugins/qmldesigner/components/bindingeditor/actioneditordialog.h b/src/plugins/qmldesigner/components/bindingeditor/actioneditordialog.h
new file mode 100644
index 0000000000..e19c7fe657
--- /dev/null
+++ b/src/plugins/qmldesigner/components/bindingeditor/actioneditordialog.h
@@ -0,0 +1,155 @@
+/****************************************************************************
+**
+** Copyright (C) 2020 The Qt Company Ltd.
+** Contact: https://www.qt.io/licensing/
+**
+** This file is part of Qt Creator.
+**
+** Commercial License Usage
+** Licensees holding valid commercial Qt licenses may use this file in
+** accordance with the commercial license agreement provided with the
+** Software or, alternatively, in accordance with the terms contained in
+** a written agreement between you and The Qt Company. For licensing terms
+** and conditions see https://www.qt.io/terms-conditions. For further
+** information use the contact form at https://www.qt.io/contact-us.
+**
+** GNU General Public License Usage
+** Alternatively, this file may be used under the terms of the GNU
+** General Public License version 3 as published by the Free Software
+** Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT
+** included in the packaging of this file. Please review the following
+** information to ensure the GNU General Public License requirements will
+** be met: https://www.gnu.org/licenses/gpl-3.0.html.
+**
+****************************************************************************/
+
+#ifndef ACTIONEDITORDIALOG_H
+#define ACTIONEDITORDIALOG_H
+
+#include <bindingeditor/abstracteditordialog.h>
+#include <qmljs/parser/qmljsast_p.h>
+
+#include <QStackedLayout>
+
+QT_BEGIN_NAMESPACE
+class QComboBox;
+QT_END_NAMESPACE
+
+namespace QmlDesigner {
+
+class ActionEditorDialog : public AbstractEditorDialog
+{
+ Q_OBJECT
+
+public:
+ enum ConnectionType { Action, Assignment };
+ Q_ENUM(ConnectionType)
+
+ enum ComboBox { Type, TargetItem, TargetProperty, SourceItem, SourceProperty };
+ Q_ENUM(ComboBox)
+
+ class PropertyOption
+ {
+ public:
+ PropertyOption() {}
+ PropertyOption(const QString &n, const TypeName &t)
+ : name(n)
+ , type(t)
+ {}
+
+ bool operator==(const QString &value) const { return value == name; }
+ bool operator==(const PropertyOption &value) const { return value.name == name; }
+
+ QString name;
+ TypeName type;
+ };
+
+ class SingletonOption
+ {
+ public:
+ SingletonOption() {}
+ SingletonOption(const QString &value) { item = value; }
+
+ bool containsType(const TypeName &t) const
+ {
+ for (const auto &p : properties) {
+ if (t == p.type || (isNumeric(t) && isNumeric(p.type)))
+ return true;
+ }
+
+ return false;
+ }
+
+ bool operator==(const QString &value) const { return value == item; }
+ bool operator==(const SingletonOption &value) const { return value.item == item; }
+
+ QString item;
+ QList<PropertyOption> properties;
+ };
+
+ class ConnectionOption : public SingletonOption
+ {
+ public:
+ ConnectionOption() {}
+ ConnectionOption(const QString &value) : SingletonOption(value) {}
+
+ QStringList methods;
+ };
+
+
+ ActionEditorDialog(QWidget *parent = nullptr);
+ ~ActionEditorDialog() override;
+
+ void adjustProperties() override;
+
+ void setAllConnections(const QList<ConnectionOption> &connections,
+ const QList<SingletonOption> &singeltons,
+ const QStringList &states);
+
+ void updateComboBoxes(int idx, ComboBox type);
+
+private:
+ void setupUIComponents();
+
+ void setType(ConnectionType type);
+
+ void fillAndSetTargetItem(const QString &value, bool useDefault = false);
+ void fillAndSetTargetProperty(const QString &value, bool useDefault = false);
+
+ void fillAndSetSourceItem(const QString &value, bool useDefault = false);
+ void fillAndSetSourceProperty(const QString &value,
+ QmlJS::AST::Node::Kind kind = QmlJS::AST::Node::Kind::Kind_Undefined,
+ bool useDefault = false);
+
+ void insertAndSetUndefined(QComboBox *comboBox);
+
+private:
+ QComboBox *m_comboBoxType = nullptr;
+
+ QStackedLayout *m_stackedLayout = nullptr;
+
+ QWidget *m_actionPlaceholder = nullptr;
+ QWidget *m_assignmentPlaceholder = nullptr;
+
+ QHBoxLayout *m_actionLayout = nullptr;
+ QHBoxLayout *m_assignmentLayout = nullptr;
+
+ QComboBox *m_actionTargetItem = nullptr;
+ QComboBox *m_actionMethod = nullptr;
+
+ QComboBox *m_assignmentTargetItem = nullptr;
+ QComboBox *m_assignmentTargetProperty = nullptr;
+ QComboBox *m_assignmentSourceItem = nullptr;
+ QComboBox *m_assignmentSourceProperty = nullptr; // Value
+
+ QList<ConnectionOption> m_connections;
+ QList<SingletonOption> m_singletons;
+ QStringList m_states;
+
+ const TypeName specificItem = {"specific"};
+ const TypeName singletonItem = {"singleton"};
+};
+
+}
+
+#endif //ACTIONEDITORDIALOG_H