// Copyright (C) 2017 The Qt Company Ltd. // Copyright (C) 2017 Pier Luigi Fiorini // SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only #include #include #include #include #include "qwaylandqtwindowmanager.h" #include "qwaylandqtwindowmanager_p.h" QT_BEGIN_NAMESPACE QWaylandQtWindowManagerPrivate::QWaylandQtWindowManagerPrivate() { } void QWaylandQtWindowManagerPrivate::windowmanager_bind_resource(Resource *resource) { send_hints(resource->handle, static_cast(showIsFullScreen)); } void QWaylandQtWindowManagerPrivate::windowmanager_destroy_resource(Resource *resource) { urls.remove(resource); } void QWaylandQtWindowManagerPrivate::windowmanager_open_url(Resource *resource, uint32_t remaining, const QString &newUrl) { Q_Q(QWaylandQtWindowManager); QWaylandCompositor *compositor = static_cast(q->extensionContainer()); if (!compositor) { qWarning() << "Failed to find QWaylandCompositor from QWaylandQtWindowManager::windowmanager_open_url()"; return; } QString url = urls.value(resource, QString()); url.append(newUrl); if (remaining) urls.insert(resource, url); else { urls.remove(resource); q->openUrl(QWaylandClient::fromWlClient(compositor, resource->client()), QUrl(url)); } } QWaylandQtWindowManager::QWaylandQtWindowManager() : QWaylandCompositorExtensionTemplate(*new QWaylandQtWindowManagerPrivate()) { } QWaylandQtWindowManager::QWaylandQtWindowManager(QWaylandCompositor *compositor) : QWaylandCompositorExtensionTemplate(compositor, *new QWaylandQtWindowManagerPrivate()) { } bool QWaylandQtWindowManager::showIsFullScreen() const { Q_D(const QWaylandQtWindowManager); return d->showIsFullScreen; } void QWaylandQtWindowManager::setShowIsFullScreen(bool value) { Q_D(QWaylandQtWindowManager); if (d->showIsFullScreen == value) return; d->showIsFullScreen = value; const auto resMap = d->resourceMap(); for (QWaylandQtWindowManagerPrivate::Resource *resource : resMap) { d->send_hints(resource->handle, static_cast(d->showIsFullScreen)); } Q_EMIT showIsFullScreenChanged(); } void QWaylandQtWindowManager::sendQuitMessage(QWaylandClient *client) { Q_D(QWaylandQtWindowManager); QWaylandQtWindowManagerPrivate::Resource *resource = d->resourceMap().value(client->client()); if (resource) d->send_quit(resource->handle); } void QWaylandQtWindowManager::initialize() { Q_D(QWaylandQtWindowManager); QWaylandCompositorExtensionTemplate::initialize(); QWaylandCompositor *compositor = static_cast(extensionContainer()); if (!compositor) { qWarning() << "Failed to find QWaylandCompositor when initializing QWaylandQtWindowManager"; return; } d->init(compositor->display(), 1); } const struct wl_interface *QWaylandQtWindowManager::interface() { return QWaylandQtWindowManagerPrivate::interface(); } QByteArray QWaylandQtWindowManager::interfaceName() { return QWaylandQtWindowManagerPrivate::interfaceName(); } QT_END_NAMESPACE #include "moc_qwaylandqtwindowmanager.cpp"