aboutsummaryrefslogtreecommitdiffstats
path: root/src/imports/templates/qtquicktemplates2plugin.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/imports/templates/qtquicktemplates2plugin.cpp')
-rw-r--r--src/imports/templates/qtquicktemplates2plugin.cpp198
1 files changed, 198 insertions, 0 deletions
diff --git a/src/imports/templates/qtquicktemplates2plugin.cpp b/src/imports/templates/qtquicktemplates2plugin.cpp
new file mode 100644
index 00000000..e93b80c7
--- /dev/null
+++ b/src/imports/templates/qtquicktemplates2plugin.cpp
@@ -0,0 +1,198 @@
+/****************************************************************************
+**
+** Copyright (C) 2016 The Qt Company Ltd.
+** Contact: http://www.qt.io/licensing/
+**
+** This file is part of the Qt Quick Templates 2 module of the Qt Toolkit.
+**
+** $QT_BEGIN_LICENSE:LGPL3$
+** 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 http://www.qt.io/terms-conditions. For further
+** information use the contact form at http://www.qt.io/contact-us.
+**
+** GNU Lesser General Public License Usage
+** Alternatively, this file may be used under the terms of the GNU Lesser
+** General Public License version 3 as published by the Free Software
+** Foundation and appearing in the file LICENSE.LGPLv3 included in the
+** packaging of this file. Please review the following information to
+** ensure the GNU Lesser General Public License version 3 requirements
+** will be met: https://www.gnu.org/licenses/lgpl.html.
+**
+** GNU General Public License Usage
+** Alternatively, this file may be used under the terms of the GNU
+** General Public License version 2.0 or later as published by the Free
+** Software Foundation and appearing in the file LICENSE.GPL included in
+** the packaging of this file. Please review the following information to
+** ensure the GNU General Public License version 2.0 requirements will be
+** met: http://www.gnu.org/licenses/gpl-2.0.html.
+**
+** $QT_END_LICENSE$
+**
+****************************************************************************/
+
+#include <QtQml/qqmlextensionplugin.h>
+
+#include <QtQuickTemplates2/private/qquickabstractbutton_p.h>
+#include <QtQuickTemplates2/private/qquickapplicationwindow_p.h>
+#include <QtQuickTemplates2/private/qquickbusyindicator_p.h>
+#include <QtQuickTemplates2/private/qquickbutton_p.h>
+#include <QtQuickTemplates2/private/qquickbuttongroup_p.h>
+#include <QtQuickTemplates2/private/qquickcheckbox_p.h>
+#include <QtQuickTemplates2/private/qquickcheckdelegate_p.h>
+#include <QtQuickTemplates2/private/qquickcombobox_p.h>
+#include <QtQuickTemplates2/private/qquickcontrol_p.h>
+#include <QtQuickTemplates2/private/qquickcontainer_p.h>
+#include <QtQuickTemplates2/private/qquickdial_p.h>
+#include <QtQuickTemplates2/private/qquickdrawer_p.h>
+#include <QtQuickTemplates2/private/qquickframe_p.h>
+#include <QtQuickTemplates2/private/qquickgroupbox_p.h>
+#include <QtQuickTemplates2/private/qquickitemdelegate_p.h>
+#include <QtQuickTemplates2/private/qquicklabel_p.h>
+#include <QtQuickTemplates2/private/qquickmenu_p.h>
+#include <QtQuickTemplates2/private/qquickmenuitem_p.h>
+#include <QtQuickTemplates2/private/qquickoverlay_p.h>
+#include <QtQuickTemplates2/private/qquickpage_p.h>
+#include <QtQuickTemplates2/private/qquickpageindicator_p.h>
+#include <QtQuickTemplates2/private/qquickpane_p.h>
+#include <QtQuickTemplates2/private/qquickpopup_p.h>
+#include <QtQuickTemplates2/private/qquickprogressbar_p.h>
+#include <QtQuickTemplates2/private/qquickradiobutton_p.h>
+#include <QtQuickTemplates2/private/qquickradiodelegate_p.h>
+#include <QtQuickTemplates2/private/qquickrangeslider_p.h>
+#include <QtQuickTemplates2/private/qquickscrollbar_p.h>
+#include <QtQuickTemplates2/private/qquickscrollindicator_p.h>
+#include <QtQuickTemplates2/private/qquickshortcutcontext_p_p.h>
+#include <QtQuickTemplates2/private/qquickslider_p.h>
+#include <QtQuickTemplates2/private/qquickspinbox_p.h>
+#include <QtQuickTemplates2/private/qquickstackview_p.h>
+#include <QtQuickTemplates2/private/qquickswipe_p.h>
+#include <QtQuickTemplates2/private/qquickswipedelegate_p.h>
+#include <QtQuickTemplates2/private/qquickswipeview_p.h>
+#include <QtQuickTemplates2/private/qquickswitch_p.h>
+#include <QtQuickTemplates2/private/qquickswitchdelegate_p.h>
+#include <QtQuickTemplates2/private/qquicktabbar_p.h>
+#include <QtQuickTemplates2/private/qquicktabbutton_p.h>
+#include <QtQuickTemplates2/private/qquicktextarea_p.h>
+#include <QtQuickTemplates2/private/qquicktextfield_p.h>
+#include <QtQuickTemplates2/private/qquicktoolbar_p.h>
+#include <QtQuickTemplates2/private/qquicktoolbutton_p.h>
+#include <QtQuickTemplates2/private/qquicktooltip_p.h>
+#include <QtQuickTemplates2/private/qquicktumbler_p.h>
+
+static inline void initResources()
+{
+#ifdef QT_STATIC
+ Q_INIT_RESOURCE(qmake_QtQuick_Templates_2);
+#endif
+}
+
+// qtdeclarative/src/quick/util/qquickshortcut.cpp
+typedef bool (*ShortcutContextMatcher)(QObject *, Qt::ShortcutContext);
+extern ShortcutContextMatcher qt_quick_shortcut_context_matcher();
+extern void qt_quick_set_shortcut_context_matcher(ShortcutContextMatcher matcher);
+
+QT_BEGIN_NAMESPACE
+
+class QtQuickTemplates2Plugin: public QQmlExtensionPlugin
+{
+ Q_OBJECT
+ Q_PLUGIN_METADATA(IID QQmlExtensionInterface_iid)
+
+public:
+ QtQuickTemplates2Plugin(QObject *parent = nullptr);
+ ~QtQuickTemplates2Plugin();
+
+ void registerTypes(const char *uri);
+
+private:
+ ShortcutContextMatcher originalContextMatcher;
+};
+
+QtQuickTemplates2Plugin::QtQuickTemplates2Plugin(QObject *parent) : QQmlExtensionPlugin(parent)
+{
+ initResources();
+
+ originalContextMatcher = qt_quick_shortcut_context_matcher();
+ qt_quick_set_shortcut_context_matcher(QQuickShortcutContext::matcher);
+}
+
+QtQuickTemplates2Plugin::~QtQuickTemplates2Plugin()
+{
+ qt_quick_set_shortcut_context_matcher(originalContextMatcher);
+}
+
+void QtQuickTemplates2Plugin::registerTypes(const char *uri)
+{
+ qmlRegisterType<QQuickAbstractButton>(uri, 2, 0, "AbstractButton");
+ qmlRegisterType<QQuickApplicationWindow>(uri, 2, 0, "ApplicationWindow");
+ qmlRegisterType<QQuickApplicationWindowAttached>();
+ qmlRegisterType<QQuickBusyIndicator>(uri, 2, 0, "BusyIndicator");
+ qmlRegisterType<QQuickButton>(uri, 2, 0, "Button");
+ qmlRegisterType<QQuickButtonGroup>(uri, 2, 0, "ButtonGroup");
+ qmlRegisterType<QQuickButtonGroupAttached>();
+ qmlRegisterType<QQuickCheckBox>(uri, 2, 0, "CheckBox");
+ qmlRegisterType<QQuickCheckDelegate>(uri, 2, 0, "CheckDelegate");
+ qmlRegisterType<QQuickComboBox>(uri, 2, 0, "ComboBox");
+ qmlRegisterType<QQuickContainer>(uri, 2, 0, "Container");
+ qmlRegisterType<QQuickControl>(uri, 2, 0, "Control");
+ qmlRegisterType<QQuickDial>(uri, 2, 0, "Dial");
+ qmlRegisterType<QQuickDrawer>(uri, 2, 0, "Drawer");
+ qmlRegisterType<QQuickFrame>(uri, 2, 0, "Frame");
+ qmlRegisterType<QQuickGroupBox>(uri, 2, 0, "GroupBox");
+ qmlRegisterType<QQuickItemDelegate>(uri, 2, 0, "ItemDelegate");
+ qmlRegisterType<QQuickLabel>(uri, 2, 0, "Label");
+ qmlRegisterType<QQuickMenu>(uri, 2, 0, "Menu");
+ qmlRegisterType<QQuickMenuItem>(uri, 2, 0, "MenuItem");
+ qmlRegisterType<QQuickOverlay>();
+ qmlRegisterType<QQuickPage>(uri, 2, 0, "Page");
+ qmlRegisterType<QQuickPageIndicator>(uri, 2, 0, "PageIndicator");
+ qmlRegisterType<QQuickPane>(uri, 2, 0, "Pane");
+ qmlRegisterType<QQuickPopup>(uri, 2, 0, "Popup");
+ qmlRegisterType<QQuickProgressBar>(uri, 2, 0, "ProgressBar");
+ qmlRegisterType<QQuickRadioButton>(uri, 2, 0, "RadioButton");
+ qmlRegisterType<QQuickRadioDelegate>(uri, 2, 0, "RadioDelegate");
+ qmlRegisterType<QQuickRangeSlider>(uri, 2, 0, "RangeSlider");
+ qmlRegisterType<QQuickRangeSliderNode>();
+ qmlRegisterType<QQuickScrollBar>(uri, 2, 0, "ScrollBar");
+ qmlRegisterType<QQuickScrollBarAttached>();
+ qmlRegisterType<QQuickScrollIndicator>(uri, 2, 0, "ScrollIndicator");
+ qmlRegisterType<QQuickScrollIndicatorAttached>();
+ qmlRegisterType<QQuickSlider>(uri, 2, 0, "Slider");
+ qmlRegisterType<QQuickSpinBox>(uri, 2, 0, "SpinBox");
+ qmlRegisterType<QQuickSpinButton>();
+ qmlRegisterType<QQuickStackView>(uri, 2, 0, "StackView");
+ qmlRegisterType<QQuickStackAttached>();
+ qmlRegisterType<QQuickSwipeDelegate>(uri, 2, 0, "SwipeDelegate");
+ qmlRegisterType<QQuickSwipe>();
+ qmlRegisterType<QQuickSwipeViewAttached>();
+ qmlRegisterType<QQuickSwipeView>(uri, 2, 0, "SwipeView");
+ qmlRegisterType<QQuickSwitch>(uri, 2, 0, "Switch");
+ qmlRegisterType<QQuickSwitchDelegate>(uri, 2, 0, "SwitchDelegate");
+ qmlRegisterType<QQuickTabBar>(uri, 2, 0, "TabBar");
+ qmlRegisterType<QQuickTabButton>(uri, 2, 0, "TabButton");
+ qmlRegisterType<QQuickTextAreaAttached>();
+ qmlRegisterType<QQuickTextArea>(uri, 2, 0, "TextArea");
+ qmlRegisterType<QQuickTextField>(uri, 2, 0, "TextField");
+ qmlRegisterType<QQuickToolBar>(uri, 2, 0, "ToolBar");
+ qmlRegisterType<QQuickToolButton>(uri, 2, 0, "ToolButton");
+ qmlRegisterType<QQuickToolTipAttached>();
+ qmlRegisterType<QQuickToolTip>(uri, 2, 0, "ToolTip");
+ qmlRegisterType<QQuickTumblerAttached>();
+ qmlRegisterType<QQuickTumbler>(uri, 2, 0, "Tumbler");
+
+ // NOTE: register the latest revisions of all template/control base classes to
+ // make revisioned properties available to their subclasses (synced with Qt 5.7)
+ qmlRegisterRevision<QQuickItem, 7>(uri, 2, 0);
+ qmlRegisterRevision<QQuickWindow, 2>(uri, 2, 0);
+ qmlRegisterRevision<QQuickText, 6>(uri, 2, 0);
+ qmlRegisterRevision<QQuickTextInput, 7>(uri, 2, 0);
+ qmlRegisterRevision<QQuickTextEdit, 7>(uri, 2, 0);
+}
+
+QT_END_NAMESPACE
+
+#include "qtquicktemplates2plugin.moc"