From e46886912858e9b233fb099bb211e288dd7d57b5 Mon Sep 17 00:00:00 2001 From: Pierre Rossi Date: Fri, 6 Dec 2013 14:18:04 +0100 Subject: Pave the way for our UI delegation strategy. Starting with the context Menus for QtQuick. Add default UI delegates as a subproject. We allow ourselves to use Qt Quick Controls there for in order to get a nice "out of the box" experience for things like context menus, dialogs, etc while leaving the door open for system embedders to override this. Opting out of the deployment of these QML files is still very primitive but can be done by passing WEBENGINE_CONFIG+=no_ui_delegates at qmake time. Customization of context menus could be done via a qml component, which is probably best kept in experimental for now while we address its shortcomings. Change-Id: I0705b20d5ddd3bb010f9371b65a181c6b02a03e1 Reviewed-by: Jocelyn Turcotte --- src/webengine/ui_delegates_manager.cpp | 233 +++++++++++++++++++++++++++++++++ 1 file changed, 233 insertions(+) create mode 100644 src/webengine/ui_delegates_manager.cpp (limited to 'src/webengine/ui_delegates_manager.cpp') diff --git a/src/webengine/ui_delegates_manager.cpp b/src/webengine/ui_delegates_manager.cpp new file mode 100644 index 000000000..34edbd479 --- /dev/null +++ b/src/webengine/ui_delegates_manager.cpp @@ -0,0 +1,233 @@ +/**************************************************************************** +** +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Contact: http://www.qt-project.org/legal +** +** This file is part of the QtWebEngine module of the Qt Toolkit. +** +** $QT_BEGIN_LICENSE:LGPL$ +** 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 Digia. For licensing terms and +** conditions see http://qt.digia.com/licensing. For further information +** use the contact form at http://qt.digia.com/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 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. +** +** In addition, as a special exception, Digia gives you certain additional +** rights. These rights are described in the Digia Qt LGPL Exception +** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. +** +** GNU General Public License Usage +** Alternatively, this file may be used under the terms of the GNU +** General Public License version 3.0 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 3.0 requirements will be +** met: http://www.gnu.org/copyleft/gpl.html. +** +** +** $QT_END_LICENSE$ +** +****************************************************************************/ + +#include "ui_delegates_manager.h" +#include "api/qquickwebengineview_p.h" + +#include +#include +#include +#include +#include +#include +#include +#include +#include + +// Uncomment for QML debugging +//#define UI_DELEGATES_DEBUG + +#define NO_SEPARATOR +#define FILE_NAME_CASE_STATEMENT(TYPE, COMPONENT) \ + case UIDelegatesManager::TYPE:\ + return QStringLiteral(#TYPE".qml"); + +static QString fileNameForComponent(UIDelegatesManager::ComponentType type) +{ + switch (type) { + FOR_EACH_COMPONENT_TYPE(FILE_NAME_CASE_STATEMENT, NO_SEPARATOR) + default: + Q_UNREACHABLE(); + } + return QString(); +} + +MenuItemHandler::MenuItemHandler(QObject *parent) + : QObject(parent) +{ +} + + +CopyMenuItem::CopyMenuItem(QObject *parent, const QString &textToCopy) + : MenuItemHandler(parent) + , m_textToCopy(textToCopy) +{ + connect(this, &MenuItemHandler::triggered, this, &CopyMenuItem::onTriggered); +} + +void CopyMenuItem::onTriggered() +{ + qApp->clipboard()->setText(m_textToCopy); +} + +NavigateMenuItem::NavigateMenuItem(QObject *parent, const QExplicitlySharedDataPointer &adapter, const QUrl &targetUrl) + : MenuItemHandler(parent) + , m_adapter(adapter) + , m_targetUrl(targetUrl) +{ + connect(this, &MenuItemHandler::triggered, this, &NavigateMenuItem::onTriggered); +} + +void NavigateMenuItem::onTriggered() +{ + m_adapter->load(m_targetUrl); +} + +UIDelegatesManager::UIDelegatesManager(QQuickWebEngineView *view) + : m_view(view) +{ +} + +#define COMPONENT_MEMBER_CASE_STATEMENT(TYPE, COMPONENT) \ + case TYPE: \ + component = &COMPONENT##Component; \ + break; + +bool UIDelegatesManager::ensureComponentLoaded(ComponentType type) +{ + QScopedPointer *component; + switch (type) { + FOR_EACH_COMPONENT_TYPE(COMPONENT_MEMBER_CASE_STATEMENT, NO_SEPARATOR) + default: + Q_UNREACHABLE(); + return false; + } + QString fileName(fileNameForComponent(type)); +#ifndef UI_DELEGATES_DEBUG + if (!(*component).isNull()) + return true; +#else // Unconditionally reload the components each time. + fprintf(stderr, "%s: %s\n", Q_FUNC_INFO, qPrintable(fileName)); +#endif + QQmlEngine* engine = qmlEngine(m_view); + if (!engine) + return false; + QString absolutePath; + Q_FOREACH (const QString &path, engine->importPathList()) { + QFileInfo fi(path % QStringLiteral("/QtWebEngine/UIDelegates/") % fileName); + if (fi.exists()) + absolutePath = fi.absoluteFilePath(); + } + // FIXME: handle async loading + (*component).reset(new QQmlComponent(engine, QUrl(absolutePath), QQmlComponent::PreferSynchronous, m_view)); + + if ((*component)->status() != QQmlComponent::Ready) { +#ifdef UI_DELEGATES_DEBUG + Q_FOREACH (const QQmlError& err, (*component)->errors()) + fprintf(stderr, " component error: %s\n", qPrintable(err.toString())); +#endif + return false; + } + return true; +} + +QQmlContext *UIDelegatesManager::creationContextForComponent(QQmlComponent *component) +{ + Q_ASSERT(component); + + QQmlContext* baseContext = component->creationContext() ? component->creationContext() : qmlContext(m_view); + Q_ASSERT(baseContext); + return baseContext; +} + +#define CHECK_QML_SIGNAL_PROPERTY(prop, type, location) \ + if (!prop.isSignalProperty()) \ + qWarning(#type "component (Loaded from %s) is missing %s signal property.\n", qPrintable(location.toString()), qPrintable(prop.name())); + +void UIDelegatesManager::addMenuItem(MenuItemHandler *menuItemHandler, const QString &text, const QString &iconName, bool enabled) +{ + Q_ASSERT(menuItemHandler); + if (!ensureComponentLoaded(MenuItem)) + return; + QObject *it = menuItemComponent->beginCreate(creationContextForComponent(menuItemComponent.data())); + + QQmlProperty(it, QStringLiteral("text")).write(text); + QQmlProperty(it, QStringLiteral("iconName")).write(iconName); + QQmlProperty(it, QStringLiteral("enabled")).write(enabled); + + QQmlProperty signal(it, QStringLiteral("onTriggered")); + CHECK_QML_SIGNAL_PROPERTY(signal, menuItemComponent->url()); + QObject::connect(it, signal.method(), menuItemHandler, QMetaMethod::fromSignal(&MenuItemHandler::triggered)); + menuItemComponent->completeCreate(); + + QObject *menu = menuItemHandler->parent(); + it->setParent(menu); + + QQmlListReference entries(menu, QQmlMetaType::defaultProperty(menu).name(), qmlEngine(m_view)); + if (entries.isValid()) + entries.append(it); +} + +void UIDelegatesManager::addMenuSeparator(QObject *menu) +{ + if (!ensureComponentLoaded(MenuSeparator)) + return; + + QQmlContext *itemContext = creationContextForComponent(menuSeparatorComponent.data()); + QObject *sep = menuSeparatorComponent->create(itemContext); + sep->setParent(menu); + + QQmlListReference entries(menu, QQmlMetaType::defaultProperty(menu).name(), qmlEngine(m_view)); + if (entries.isValid()) + entries.append(sep); +} + +QObject *UIDelegatesManager::addMenu(QObject *parentMenu, const QString &title, const QPoint& pos) +{ + + if (!ensureComponentLoaded(Menu)) + return 0; + QQmlContext *context(creationContextForComponent(menuComponent.data())); + QObject *menu = menuComponent->beginCreate(context); + // Useful when not using Qt Quick Controls' Menu + if (QQuickItem* item = qobject_cast(menu)) + item->setParentItem(m_view); + + if (!title.isEmpty()) + QQmlProperty(menu, QStringLiteral("title")).write(title); + if (!pos.isNull()) + QQmlProperty(menu, QStringLiteral("pos")).write(pos); + if (!parentMenu) { + QQmlProperty doneSignal(menu, QStringLiteral("onDone")); + static int deleteLaterIndex = menu->metaObject()->indexOfSlot("deleteLater()"); + if (doneSignal.isSignalProperty()) + QObject::connect(menu, doneSignal.method(), menu, menu->metaObject()->method(deleteLaterIndex)); + } else { + menu->setParent(parentMenu); + + QQmlListReference entries(parentMenu, QQmlMetaType::defaultProperty(parentMenu).name(), qmlEngine(m_view)); + if (entries.isValid()) + entries.append(menu); + } + menuComponent->completeCreate(); + return menu; +} + -- cgit v1.2.3