mirror of
https://invent.kde.org/plasma/layer-shell-qt.git
synced 2025-11-23 10:12:42 -05:00
Compare commits
5 Commits
v6.5.1
...
work/mart/
| Author | SHA1 | Date | |
|---|---|---|---|
| 4c40fddf04 | |||
| 29a4489c72 | |||
| 94c82f2ed1 | |||
| 5c987fb03e | |||
| b40888ac2a |
@ -4,13 +4,13 @@
|
|||||||
cmake_minimum_required(VERSION 3.16)
|
cmake_minimum_required(VERSION 3.16)
|
||||||
|
|
||||||
project(layershellqt)
|
project(layershellqt)
|
||||||
set(PROJECT_VERSION "6.5.1")
|
set(PROJECT_VERSION "6.3.80")
|
||||||
set(PROJECT_VERSION_MAJOR 6)
|
set(PROJECT_VERSION_MAJOR 6)
|
||||||
|
|
||||||
set(CMAKE_C_STANDARD 99)
|
set(CMAKE_C_STANDARD 99)
|
||||||
|
|
||||||
set(QT_MIN_VERSION "6.9.0")
|
set(QT_MIN_VERSION "6.7.0")
|
||||||
set(KF6_MIN_VERSION "6.18.0")
|
set(KF6_MIN_VERSION "6.10.0")
|
||||||
set(KDE_COMPILERSETTINGS_LEVEL "5.82")
|
set(KDE_COMPILERSETTINGS_LEVEL "5.82")
|
||||||
|
|
||||||
set(CMAKE_CXX_STANDARD 20)
|
set(CMAKE_CXX_STANDARD 20)
|
||||||
|
|||||||
@ -5,8 +5,6 @@ remove_definitions(-DQT_NO_SIGNALS_SLOTS_KEYWORDS)
|
|||||||
|
|
||||||
add_library(LayerShellQtInterface)
|
add_library(LayerShellQtInterface)
|
||||||
|
|
||||||
qt6_extract_metatypes(LayerShellQtInterface)
|
|
||||||
|
|
||||||
if (Qt6_VERSION VERSION_GREATER_EQUAL "6.8.0")
|
if (Qt6_VERSION VERSION_GREATER_EQUAL "6.8.0")
|
||||||
set(private_code_option "PRIVATE_CODE")
|
set(private_code_option "PRIVATE_CODE")
|
||||||
endif()
|
endif()
|
||||||
|
|||||||
@ -4,8 +4,7 @@
|
|||||||
ecm_add_qml_module(LayerShellQtQml
|
ecm_add_qml_module(LayerShellQtQml
|
||||||
URI "org.kde.layershell"
|
URI "org.kde.layershell"
|
||||||
VERSION 1.0
|
VERSION 1.0
|
||||||
SOURCES types.h types.cpp
|
SOURCES layershellqtplugin.cpp)
|
||||||
GENERATE_PLUGIN_SOURCE)
|
|
||||||
target_link_libraries(LayerShellQtQml PRIVATE Qt::Qml LayerShellQtInterface)
|
target_link_libraries(LayerShellQtQml PRIVATE Qt::Qml LayerShellQtInterface)
|
||||||
|
|
||||||
ecm_finalize_qml_module(LayerShellQtQml DESTINATION ${KDE_INSTALL_QMLDIR})
|
ecm_finalize_qml_module(LayerShellQtQml DESTINATION ${KDE_INSTALL_QMLDIR})
|
||||||
51
src/declarative/layershellqtplugin.cpp
Normal file
51
src/declarative/layershellqtplugin.cpp
Normal file
@ -0,0 +1,51 @@
|
|||||||
|
/*
|
||||||
|
* SPDX-FileCopyrightText: 2023 Aleix Pol Gonzalez <aleix.pol_gonzalez@mercedes-benz.com>
|
||||||
|
*
|
||||||
|
* SPDX-License-Identifier: LGPL-2.1-only OR LGPL-3.0-only OR LicenseRef-KDE-Accepted-LGPL
|
||||||
|
*/
|
||||||
|
|
||||||
|
#include "../interfaces/window.h"
|
||||||
|
#include <QQmlExtensionPlugin>
|
||||||
|
#include <qqml.h>
|
||||||
|
|
||||||
|
QML_DECLARE_TYPEINFO(LayerShellQt::Window, QML_HAS_ATTACHED_PROPERTIES)
|
||||||
|
|
||||||
|
class ExtQMargins
|
||||||
|
{
|
||||||
|
QMargins m_margins;
|
||||||
|
Q_GADGET
|
||||||
|
Q_PROPERTY(int left READ left WRITE setLeft FINAL)
|
||||||
|
Q_PROPERTY(int right READ right WRITE setRight FINAL)
|
||||||
|
Q_PROPERTY(int top READ top WRITE setTop FINAL)
|
||||||
|
Q_PROPERTY(int bottom READ bottom WRITE setBottom FINAL)
|
||||||
|
QML_FOREIGN(QMargins)
|
||||||
|
QML_EXTENDED(ExtQMargins)
|
||||||
|
public:
|
||||||
|
ExtQMargins(const QMargins &margins);
|
||||||
|
int left() const { return m_margins.left(); }
|
||||||
|
void setLeft(int left) { m_margins.setLeft(left); }
|
||||||
|
|
||||||
|
int right() const { return m_margins.right(); }
|
||||||
|
void setRight(int right) { m_margins.setRight(right); }
|
||||||
|
|
||||||
|
int top() const { return m_margins.top(); }
|
||||||
|
void setTop(int top) { m_margins.setTop(top); }
|
||||||
|
|
||||||
|
int bottom() const { return m_margins.bottom(); }
|
||||||
|
void setBottom(int bottom) { m_margins.setBottom(bottom); }
|
||||||
|
};
|
||||||
|
|
||||||
|
class Plugin : public QQmlExtensionPlugin
|
||||||
|
{
|
||||||
|
Q_PLUGIN_METADATA(IID "org.kde.layershellqt")
|
||||||
|
Q_OBJECT
|
||||||
|
public:
|
||||||
|
void registerTypes(const char *uri) override
|
||||||
|
{
|
||||||
|
Q_ASSERT(QLatin1String(uri) == QLatin1String("org.kde.layershell"));
|
||||||
|
qmlRegisterType<LayerShellQt::Window>(uri, 1, 0, "Window");
|
||||||
|
qmlRegisterExtendedUncreatableType<QMargins, ExtQMargins>(uri, 1, 0, "ExtQMargins", QStringLiteral("Only created from C++"));
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
#include "layershellqtplugin.moc"
|
||||||
@ -1,49 +0,0 @@
|
|||||||
/*
|
|
||||||
* SPDX-FileCopyrightText: 2023 Aleix Pol Gonzalez <aleix.pol_gonzalez@mercedes-benz.com>
|
|
||||||
*
|
|
||||||
* SPDX-License-Identifier: LGPL-2.1-only OR LGPL-3.0-only OR LicenseRef-KDE-Accepted-LGPL
|
|
||||||
*/
|
|
||||||
|
|
||||||
#include "types.h"
|
|
||||||
|
|
||||||
#if QT_VERSION < QT_VERSION_CHECK(6, 8, 1)
|
|
||||||
int QQmlMarginsValueType::left() const
|
|
||||||
{
|
|
||||||
return m.left();
|
|
||||||
}
|
|
||||||
|
|
||||||
int QQmlMarginsValueType::top() const
|
|
||||||
{
|
|
||||||
return m.top();
|
|
||||||
}
|
|
||||||
|
|
||||||
int QQmlMarginsValueType::right() const
|
|
||||||
{
|
|
||||||
return m.right();
|
|
||||||
}
|
|
||||||
|
|
||||||
int QQmlMarginsValueType::bottom() const
|
|
||||||
{
|
|
||||||
return m.bottom();
|
|
||||||
}
|
|
||||||
|
|
||||||
void QQmlMarginsValueType::setLeft(int left)
|
|
||||||
{
|
|
||||||
m.setLeft(left);
|
|
||||||
}
|
|
||||||
|
|
||||||
void QQmlMarginsValueType::setTop(int top)
|
|
||||||
{
|
|
||||||
m.setTop(top);
|
|
||||||
}
|
|
||||||
|
|
||||||
void QQmlMarginsValueType::setRight(int right)
|
|
||||||
{
|
|
||||||
m.setRight(right);
|
|
||||||
}
|
|
||||||
|
|
||||||
void QQmlMarginsValueType::setBottom(int bottom)
|
|
||||||
{
|
|
||||||
m.setBottom(bottom);
|
|
||||||
}
|
|
||||||
#endif
|
|
||||||
@ -1,55 +0,0 @@
|
|||||||
/*
|
|
||||||
* SPDX-FileCopyrightText: 2023 Aleix Pol Gonzalez <aleix.pol_gonzalez@mercedes-benz.com>
|
|
||||||
*
|
|
||||||
* SPDX-License-Identifier: LGPL-2.1-only OR LGPL-3.0-only OR LicenseRef-KDE-Accepted-LGPL
|
|
||||||
*/
|
|
||||||
|
|
||||||
#include "../interfaces/window.h"
|
|
||||||
#include <qqml.h>
|
|
||||||
|
|
||||||
QML_DECLARE_TYPEINFO(LayerShellQt::Window, QML_HAS_ATTACHED_PROPERTIES)
|
|
||||||
|
|
||||||
class WindowForeign
|
|
||||||
{
|
|
||||||
Q_GADGET
|
|
||||||
QML_NAMED_ELEMENT(Window)
|
|
||||||
QML_FOREIGN(LayerShellQt::Window)
|
|
||||||
QML_UNCREATABLE("")
|
|
||||||
QML_ATTACHED(LayerShellQt::Window)
|
|
||||||
};
|
|
||||||
|
|
||||||
// available upstream since https://invent.kde.org/qt/qt/qtdeclarative/-/commit/a398101f715bfc447aa889fc9c58b13bfe75ab47
|
|
||||||
#if QT_VERSION < QT_VERSION_CHECK(6, 8, 1)
|
|
||||||
struct Q_QML_EXPORT QQmlMarginsValueType {
|
|
||||||
QMargins m;
|
|
||||||
Q_PROPERTY(int left READ left WRITE setLeft FINAL)
|
|
||||||
Q_PROPERTY(int right READ right WRITE setRight FINAL)
|
|
||||||
Q_PROPERTY(int top READ top WRITE setTop FINAL)
|
|
||||||
Q_PROPERTY(int bottom READ bottom WRITE setBottom FINAL)
|
|
||||||
Q_GADGET
|
|
||||||
QML_ANONYMOUS
|
|
||||||
QML_FOREIGN(QMargins)
|
|
||||||
QML_EXTENDED(QQmlMarginsValueType)
|
|
||||||
QML_STRUCTURED_VALUE
|
|
||||||
|
|
||||||
public:
|
|
||||||
QQmlMarginsValueType() = default;
|
|
||||||
Q_INVOKABLE QQmlMarginsValueType(const QMarginsF &margins)
|
|
||||||
: m(margins.toMargins())
|
|
||||||
{
|
|
||||||
}
|
|
||||||
int left() const;
|
|
||||||
int right() const;
|
|
||||||
int top() const;
|
|
||||||
int bottom() const;
|
|
||||||
void setLeft(int);
|
|
||||||
void setRight(int);
|
|
||||||
void setTop(int);
|
|
||||||
void setBottom(int);
|
|
||||||
|
|
||||||
operator QMargins() const
|
|
||||||
{
|
|
||||||
return m;
|
|
||||||
}
|
|
||||||
};
|
|
||||||
#endif
|
|
||||||
@ -32,10 +32,9 @@ public:
|
|||||||
Window::KeyboardInteractivity keyboardInteractivity = Window::KeyboardInteractivityOnDemand;
|
Window::KeyboardInteractivity keyboardInteractivity = Window::KeyboardInteractivityOnDemand;
|
||||||
Window::Layer layer = Window::LayerTop;
|
Window::Layer layer = Window::LayerTop;
|
||||||
QMargins margins;
|
QMargins margins;
|
||||||
QSize desiredSize = QSize(0, 0);
|
|
||||||
Window::ScreenConfiguration screenConfiguration = Window::ScreenFromQWindow;
|
Window::ScreenConfiguration screenConfiguration = Window::ScreenFromQWindow;
|
||||||
bool closeOnDismissed = true;
|
bool closeOnDismissed = true;
|
||||||
bool activateOnShow = true;
|
Window::AnchorRect anchorRect = Window::AnchorRectWorkArea;
|
||||||
};
|
};
|
||||||
|
|
||||||
static QMap<QWindow *, Window *> s_map;
|
static QMap<QWindow *, Window *> s_map;
|
||||||
@ -86,6 +85,21 @@ Window::Anchor Window::exclusiveEdge() const
|
|||||||
return d->exclusiveEdge;
|
return d->exclusiveEdge;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Window::AnchorRect Window::anchorRect() const
|
||||||
|
{
|
||||||
|
return d->anchorRect;
|
||||||
|
}
|
||||||
|
|
||||||
|
void Window::setAnchorRect(Window::AnchorRect anchorRect)
|
||||||
|
{
|
||||||
|
if (d->anchorRect == anchorRect) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
d->anchorRect = anchorRect;
|
||||||
|
Q_EMIT anchorRectChanged();
|
||||||
|
}
|
||||||
|
|
||||||
void Window::setMargins(const QMargins &margins)
|
void Window::setMargins(const QMargins &margins)
|
||||||
{
|
{
|
||||||
if (d->margins != margins) {
|
if (d->margins != margins) {
|
||||||
@ -99,21 +113,6 @@ QMargins Window::margins() const
|
|||||||
return d->margins;
|
return d->margins;
|
||||||
}
|
}
|
||||||
|
|
||||||
void Window::setDesiredSize(const QSize &size)
|
|
||||||
{
|
|
||||||
if (size == d->desiredSize) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
d->desiredSize = size;
|
|
||||||
Q_EMIT desiredSizeChanged();
|
|
||||||
}
|
|
||||||
|
|
||||||
QSize Window::desiredSize() const
|
|
||||||
{
|
|
||||||
return d->desiredSize;
|
|
||||||
}
|
|
||||||
|
|
||||||
void Window::setKeyboardInteractivity(KeyboardInteractivity interactivity)
|
void Window::setKeyboardInteractivity(KeyboardInteractivity interactivity)
|
||||||
{
|
{
|
||||||
if (d->keyboardInteractivity != interactivity) {
|
if (d->keyboardInteractivity != interactivity) {
|
||||||
@ -171,16 +170,6 @@ void Window::setCloseOnDismissed(bool close)
|
|||||||
d->closeOnDismissed = close;
|
d->closeOnDismissed = close;
|
||||||
}
|
}
|
||||||
|
|
||||||
bool Window::activateOnShow() const
|
|
||||||
{
|
|
||||||
return d->activateOnShow;
|
|
||||||
}
|
|
||||||
|
|
||||||
void Window::setActivateOnShow(bool activateOnShow)
|
|
||||||
{
|
|
||||||
d->activateOnShow = activateOnShow;
|
|
||||||
}
|
|
||||||
|
|
||||||
Window::Window(QWindow *window)
|
Window::Window(QWindow *window)
|
||||||
: QObject(window)
|
: QObject(window)
|
||||||
, d(new WindowPrivate(window))
|
, d(new WindowPrivate(window))
|
||||||
|
|||||||
@ -25,10 +25,10 @@ class LAYERSHELLQT_EXPORT Window : public QObject
|
|||||||
Q_PROPERTY(QString scope READ scope WRITE setScope)
|
Q_PROPERTY(QString scope READ scope WRITE setScope)
|
||||||
Q_PROPERTY(QMargins margins READ margins WRITE setMargins NOTIFY marginsChanged)
|
Q_PROPERTY(QMargins margins READ margins WRITE setMargins NOTIFY marginsChanged)
|
||||||
Q_PROPERTY(qint32 exclusionZone READ exclusionZone WRITE setExclusiveZone NOTIFY exclusionZoneChanged)
|
Q_PROPERTY(qint32 exclusionZone READ exclusionZone WRITE setExclusiveZone NOTIFY exclusionZoneChanged)
|
||||||
|
Q_PROPERTY(AnchorRect anchorRect READ anchorRect WRITE setAnchorRect NOTIFY anchorRectChanged)
|
||||||
Q_PROPERTY(Layer layer READ layer WRITE setLayer NOTIFY layerChanged)
|
Q_PROPERTY(Layer layer READ layer WRITE setLayer NOTIFY layerChanged)
|
||||||
Q_PROPERTY(KeyboardInteractivity keyboardInteractivity READ keyboardInteractivity WRITE setKeyboardInteractivity NOTIFY keyboardInteractivityChanged)
|
Q_PROPERTY(KeyboardInteractivity keyboardInteractivity READ keyboardInteractivity WRITE setKeyboardInteractivity NOTIFY keyboardInteractivityChanged)
|
||||||
Q_PROPERTY(ScreenConfiguration screenConfiguration READ screenConfiguration WRITE setScreenConfiguration)
|
Q_PROPERTY(ScreenConfiguration screenConfiguration READ screenConfiguration WRITE setScreenConfiguration)
|
||||||
Q_PROPERTY(bool activateOnShow READ activateOnShow WRITE setActivateOnShow)
|
|
||||||
|
|
||||||
public:
|
public:
|
||||||
~Window() override;
|
~Window() override;
|
||||||
@ -40,8 +40,14 @@ public:
|
|||||||
AnchorLeft = 4, ///< The left edge of the anchor rectangle
|
AnchorLeft = 4, ///< The left edge of the anchor rectangle
|
||||||
AnchorRight = 8, ///< The right edge of the anchor rectangle
|
AnchorRight = 8, ///< The right edge of the anchor rectangle
|
||||||
};
|
};
|
||||||
|
Q_ENUM(Anchor);
|
||||||
Q_DECLARE_FLAGS(Anchors, Anchor)
|
Q_DECLARE_FLAGS(Anchors, Anchor)
|
||||||
Q_FLAG(Anchors)
|
|
||||||
|
/**
|
||||||
|
* This enum is used to choose between anchoring to work area or screen area
|
||||||
|
*/
|
||||||
|
enum AnchorRect { AnchorRectWorkArea = 0, AnchorRectFullArea = 1 };
|
||||||
|
Q_ENUM(AnchorRect);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* This enum type is used to specify the layer where a surface can be put in.
|
* This enum type is used to specify the layer where a surface can be put in.
|
||||||
@ -84,12 +90,12 @@ public:
|
|||||||
void setExclusiveEdge(Window::Anchor edge);
|
void setExclusiveEdge(Window::Anchor edge);
|
||||||
Window::Anchor exclusiveEdge() const;
|
Window::Anchor exclusiveEdge() const;
|
||||||
|
|
||||||
|
AnchorRect anchorRect() const;
|
||||||
|
void setAnchorRect(AnchorRect anchorRect);
|
||||||
|
|
||||||
void setMargins(const QMargins &margins);
|
void setMargins(const QMargins &margins);
|
||||||
QMargins margins() const;
|
QMargins margins() const;
|
||||||
|
|
||||||
void setDesiredSize(const QSize &size);
|
|
||||||
QSize desiredSize() const;
|
|
||||||
|
|
||||||
void setKeyboardInteractivity(KeyboardInteractivity interactivity);
|
void setKeyboardInteractivity(KeyboardInteractivity interactivity);
|
||||||
KeyboardInteractivity keyboardInteractivity() const;
|
KeyboardInteractivity keyboardInteractivity() const;
|
||||||
|
|
||||||
@ -118,18 +124,6 @@ public:
|
|||||||
void setCloseOnDismissed(bool close);
|
void setCloseOnDismissed(bool close);
|
||||||
bool closeOnDismissed() const;
|
bool closeOnDismissed() const;
|
||||||
|
|
||||||
/**
|
|
||||||
* Whether the window should requestActivate on show.
|
|
||||||
*
|
|
||||||
* Normally, you want this enabled but in case of e.g. a desktop window, this can be disabled.
|
|
||||||
*
|
|
||||||
* It does nothing when KeyboardInteractivity is KeyboardInteractivityNone.
|
|
||||||
*
|
|
||||||
* The default is true.
|
|
||||||
*/
|
|
||||||
void setActivateOnShow(bool activateOnShow);
|
|
||||||
bool activateOnShow() const;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Gets the LayerShell Window for a given Qt Window
|
* Gets the LayerShell Window for a given Qt Window
|
||||||
* Ownership is not transferred
|
* Ownership is not transferred
|
||||||
@ -142,8 +136,8 @@ Q_SIGNALS:
|
|||||||
void anchorsChanged();
|
void anchorsChanged();
|
||||||
void exclusionZoneChanged();
|
void exclusionZoneChanged();
|
||||||
void exclusiveEdgeChanged();
|
void exclusiveEdgeChanged();
|
||||||
|
void anchorRectChanged();
|
||||||
void marginsChanged();
|
void marginsChanged();
|
||||||
void desiredSizeChanged();
|
|
||||||
void keyboardInteractivityChanged();
|
void keyboardInteractivityChanged();
|
||||||
void layerChanged();
|
void layerChanged();
|
||||||
|
|
||||||
|
|||||||
@ -15,7 +15,7 @@
|
|||||||
namespace LayerShellQt
|
namespace LayerShellQt
|
||||||
{
|
{
|
||||||
QWaylandLayerShellIntegration::QWaylandLayerShellIntegration()
|
QWaylandLayerShellIntegration::QWaylandLayerShellIntegration()
|
||||||
: QWaylandShellIntegrationTemplate<QWaylandLayerShellIntegration>(5)
|
: QWaylandShellIntegrationTemplate<QWaylandLayerShellIntegration>(6)
|
||||||
, m_xdgActivation(new QWaylandXdgActivationV1)
|
, m_xdgActivation(new QWaylandXdgActivationV1)
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|||||||
@ -44,11 +44,7 @@ QWaylandLayerSurface::QWaylandLayerSurface(QWaylandLayerShellIntegration *shell,
|
|||||||
setAnchor(m_interface->anchors());
|
setAnchor(m_interface->anchors());
|
||||||
connect(m_interface, &Window::anchorsChanged, this, [this]() {
|
connect(m_interface, &Window::anchorsChanged, this, [this]() {
|
||||||
setAnchor(m_interface->anchors());
|
setAnchor(m_interface->anchors());
|
||||||
if (m_interface->desiredSize().isNull()) {
|
|
||||||
setDesiredSize(m_window->windowContentGeometry().size());
|
setDesiredSize(m_window->windowContentGeometry().size());
|
||||||
} else {
|
|
||||||
setDesiredSize(m_interface->desiredSize());
|
|
||||||
}
|
|
||||||
});
|
});
|
||||||
|
|
||||||
setExclusiveZone(m_interface->exclusionZone());
|
setExclusiveZone(m_interface->exclusionZone());
|
||||||
@ -60,27 +56,22 @@ QWaylandLayerSurface::QWaylandLayerSurface(QWaylandLayerShellIntegration *shell,
|
|||||||
setExclusiveEdge(m_interface->exclusiveEdge());
|
setExclusiveEdge(m_interface->exclusiveEdge());
|
||||||
});
|
});
|
||||||
|
|
||||||
|
setAnchorRect(m_interface->anchorRect());
|
||||||
|
connect(m_interface, &Window::anchorRectChanged, this, [this]() {
|
||||||
|
setAnchorRect(m_interface->anchorRect());
|
||||||
|
});
|
||||||
|
|
||||||
setMargins(m_interface->margins());
|
setMargins(m_interface->margins());
|
||||||
connect(m_interface, &Window::marginsChanged, this, [this]() {
|
connect(m_interface, &Window::marginsChanged, this, [this]() {
|
||||||
setMargins(m_interface->margins());
|
setMargins(m_interface->margins());
|
||||||
});
|
});
|
||||||
|
|
||||||
connect(m_interface, &Window::desiredSizeChanged, this, [this]() {
|
|
||||||
if (!m_interface->desiredSize().isNull()) {
|
|
||||||
setDesiredSize(m_interface->desiredSize());
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
setKeyboardInteractivity(m_interface->keyboardInteractivity());
|
setKeyboardInteractivity(m_interface->keyboardInteractivity());
|
||||||
connect(m_interface, &Window::keyboardInteractivityChanged, this, [this]() {
|
connect(m_interface, &Window::keyboardInteractivityChanged, this, [this]() {
|
||||||
setKeyboardInteractivity(m_interface->keyboardInteractivity());
|
setKeyboardInteractivity(m_interface->keyboardInteractivity());
|
||||||
});
|
});
|
||||||
|
|
||||||
if (m_interface->desiredSize().isNull()) {
|
|
||||||
setDesiredSize(window->windowContentGeometry().size());
|
setDesiredSize(window->windowContentGeometry().size());
|
||||||
} else {
|
|
||||||
setDesiredSize(m_interface->desiredSize());
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
QWaylandLayerSurface::~QWaylandLayerSurface()
|
QWaylandLayerSurface::~QWaylandLayerSurface()
|
||||||
@ -165,6 +156,13 @@ void QWaylandLayerSurface::setExclusiveEdge(uint32_t edge)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void QWaylandLayerSurface::setAnchorRect(int32_t anchorRect)
|
||||||
|
{
|
||||||
|
if (zwlr_layer_surface_v1_get_version(object()) >= ZWLR_LAYER_SURFACE_V1_SET_ANCHOR_RECT_SINCE_VERSION) {
|
||||||
|
set_anchor_rect(anchorRect);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
void QWaylandLayerSurface::setMargins(const QMargins &margins)
|
void QWaylandLayerSurface::setMargins(const QMargins &margins)
|
||||||
{
|
{
|
||||||
set_margin(margins.top(), margins.right(), margins.bottom(), margins.left());
|
set_margin(margins.top(), margins.right(), margins.bottom(), margins.left());
|
||||||
@ -188,16 +186,12 @@ void QWaylandLayerSurface::setWindowGeometry(const QRect &geometry)
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (m_interface->desiredSize().isNull()) {
|
|
||||||
setDesiredSize(geometry.size());
|
setDesiredSize(geometry.size());
|
||||||
}
|
|
||||||
}
|
}
|
||||||
#else
|
#else
|
||||||
void QWaylandLayerSurface::setWindowSize(const QSize &size)
|
void QWaylandLayerSurface::setWindowSize(const QSize &size)
|
||||||
{
|
{
|
||||||
if (m_interface->desiredSize().isNull()) {
|
|
||||||
setDesiredSize(size);
|
setDesiredSize(size);
|
||||||
}
|
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
@ -211,10 +205,6 @@ bool QWaylandLayerSurface::requestActivate()
|
|||||||
activation->activate(m_activationToken, window()->wlSurface());
|
activation->activate(m_activationToken, window()->wlSurface());
|
||||||
m_activationToken = {};
|
m_activationToken = {};
|
||||||
return true;
|
return true;
|
||||||
} else if (const auto token = qEnvironmentVariable("XDG_ACTIVATION_TOKEN"); !token.isEmpty()) {
|
|
||||||
activation->activate(token, window()->wlSurface());
|
|
||||||
qunsetenv("XDG_ACTIVATION_TOKEN");
|
|
||||||
return true;
|
|
||||||
} else {
|
} else {
|
||||||
const auto focusWindow = QGuiApplication::focusWindow();
|
const auto focusWindow = QGuiApplication::focusWindow();
|
||||||
const auto wlWindow = focusWindow ? static_cast<QtWaylandClient::QWaylandWindow *>(focusWindow->handle()) : window();
|
const auto wlWindow = focusWindow ? static_cast<QtWaylandClient::QWaylandWindow *>(focusWindow->handle()) : window();
|
||||||
@ -230,23 +220,6 @@ bool QWaylandLayerSurface::requestActivate()
|
|||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
bool QWaylandLayerSurface::requestActivateOnShow()
|
|
||||||
{
|
|
||||||
if (!m_interface->activateOnShow()) {
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (m_interface->keyboardInteractivity() == Window::KeyboardInteractivityNone) {
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (m_window->window()->property("_q_showWithoutActivating").toBool()) {
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
return requestActivate();
|
|
||||||
}
|
|
||||||
|
|
||||||
void QWaylandLayerSurface::setXdgActivationToken(const QString &token)
|
void QWaylandLayerSurface::setXdgActivationToken(const QString &token)
|
||||||
{
|
{
|
||||||
m_activationToken = token;
|
m_activationToken = token;
|
||||||
|
|||||||
@ -8,6 +8,7 @@
|
|||||||
#ifndef _LAYERSURFACE_H
|
#ifndef _LAYERSURFACE_H
|
||||||
#define _LAYERSURFACE_H
|
#define _LAYERSURFACE_H
|
||||||
|
|
||||||
|
#include <cstdint>
|
||||||
#include <wayland-client.h>
|
#include <wayland-client.h>
|
||||||
|
|
||||||
#include "qwaylandlayershellintegration_p.h"
|
#include "qwaylandlayershellintegration_p.h"
|
||||||
@ -38,6 +39,7 @@ public:
|
|||||||
void setAnchor(uint32_t anchor);
|
void setAnchor(uint32_t anchor);
|
||||||
void setExclusiveZone(int32_t zone);
|
void setExclusiveZone(int32_t zone);
|
||||||
void setExclusiveEdge(uint32_t edge);
|
void setExclusiveEdge(uint32_t edge);
|
||||||
|
void setAnchorRect(int32_t anchorRect);
|
||||||
void setMargins(const QMargins &margins);
|
void setMargins(const QMargins &margins);
|
||||||
void setKeyboardInteractivity(uint32_t interactivity);
|
void setKeyboardInteractivity(uint32_t interactivity);
|
||||||
void setLayer(uint32_t layer);
|
void setLayer(uint32_t layer);
|
||||||
@ -50,7 +52,6 @@ public:
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
bool requestActivate() override;
|
bool requestActivate() override;
|
||||||
bool requestActivateOnShow() override;
|
|
||||||
void setXdgActivationToken(const QString &token) override;
|
void setXdgActivationToken(const QString &token) override;
|
||||||
void requestXdgActivationToken(quint32 serial) override;
|
void requestXdgActivationToken(quint32 serial) override;
|
||||||
|
|
||||||
|
|||||||
@ -25,7 +25,7 @@
|
|||||||
THIS SOFTWARE.
|
THIS SOFTWARE.
|
||||||
</copyright>
|
</copyright>
|
||||||
|
|
||||||
<interface name="zwlr_layer_shell_v1" version="5">
|
<interface name="zwlr_layer_shell_v1" version="6">
|
||||||
<description summary="create surfaces that are layers of the desktop">
|
<description summary="create surfaces that are layers of the desktop">
|
||||||
Clients can use this interface to assign the surface_layer role to
|
Clients can use this interface to assign the surface_layer role to
|
||||||
wl_surfaces. Such surfaces are assigned to a "layer" of the output and
|
wl_surfaces. Such surfaces are assigned to a "layer" of the output and
|
||||||
@ -100,7 +100,7 @@
|
|||||||
</request>
|
</request>
|
||||||
</interface>
|
</interface>
|
||||||
|
|
||||||
<interface name="zwlr_layer_surface_v1" version="5">
|
<interface name="zwlr_layer_surface_v1" version="6">
|
||||||
<description summary="layer metadata interface">
|
<description summary="layer metadata interface">
|
||||||
An interface that may be implemented by a wl_surface, for surfaces that
|
An interface that may be implemented by a wl_surface, for surfaces that
|
||||||
are designed to be rendered as a layer of a stacked desktop-like
|
are designed to be rendered as a layer of a stacked desktop-like
|
||||||
@ -168,21 +168,25 @@
|
|||||||
Surfaces that do not wish to have an exclusive zone may instead specify
|
Surfaces that do not wish to have an exclusive zone may instead specify
|
||||||
how they should interact with surfaces that do. If set to zero, the
|
how they should interact with surfaces that do. If set to zero, the
|
||||||
surface indicates that it would like to be moved to avoid occluding
|
surface indicates that it would like to be moved to avoid occluding
|
||||||
surfaces with a positive exclusive zone. If set to -1, the surface
|
surfaces with a positive exclusive zone.
|
||||||
indicates that it would not like to be moved to accommodate for other
|
|
||||||
surfaces, and the compositor should extend it all the way to the edges
|
|
||||||
it is anchored to.
|
|
||||||
|
|
||||||
For example, a panel might set its exclusive zone to 10, so that
|
For example, a panel might set its exclusive zone to 10, so that
|
||||||
maximized shell surfaces are not shown on top of it. A notification
|
maximized shell surfaces are not shown on top of it. A notification
|
||||||
might set its exclusive zone to 0, so that it is moved to avoid
|
might set its exclusive zone to 0, so that it is moved to avoid
|
||||||
occluding the panel, but shell surfaces are shown underneath it. A
|
occluding the panel, but shell surfaces are shown underneath it.
|
||||||
wallpaper or lock screen might set their exclusive zone to -1, so that
|
|
||||||
they stretch below or over the panel.
|
|
||||||
|
|
||||||
The default value is 0.
|
The default value is 0.
|
||||||
|
|
||||||
Exclusive zone is double-buffered, see wl_surface.commit.
|
Exclusive zone is double-buffered, see wl_surface.commit.
|
||||||
|
|
||||||
|
Since version 6 It must be a value of 0 or more, otherwise the error
|
||||||
|
invalid_exclusive_zone will be triggered.
|
||||||
|
|
||||||
|
Until version 5 if set to -1, the surface indicates that it would not
|
||||||
|
like to be moved to accommodate for other surfaces, and the compositor
|
||||||
|
should extend it all the way to the edges it is anchored to.
|
||||||
|
A wallpaper or lock screen might set their exclusive zone to -1, so that
|
||||||
|
they stretch below or over the panel.
|
||||||
</description>
|
</description>
|
||||||
<arg name="zone" type="int"/>
|
<arg name="zone" type="int"/>
|
||||||
</request>
|
</request>
|
||||||
@ -368,6 +372,7 @@
|
|||||||
<entry name="invalid_anchor" value="2" summary="anchor bitfield is invalid"/>
|
<entry name="invalid_anchor" value="2" summary="anchor bitfield is invalid"/>
|
||||||
<entry name="invalid_keyboard_interactivity" value="3" summary="keyboard interactivity is invalid"/>
|
<entry name="invalid_keyboard_interactivity" value="3" summary="keyboard interactivity is invalid"/>
|
||||||
<entry name="invalid_exclusive_edge" value="4" summary="exclusive edge is invalid given the surface anchors"/>
|
<entry name="invalid_exclusive_edge" value="4" summary="exclusive edge is invalid given the surface anchors"/>
|
||||||
|
<entry name="invalid_exclusive_zone" value="5" summary="exclusive zone value is invalid, since version 6 it can't be less than zero"/>
|
||||||
</enum>
|
</enum>
|
||||||
|
|
||||||
<enum name="anchor" bitfield="true">
|
<enum name="anchor" bitfield="true">
|
||||||
@ -403,5 +408,33 @@
|
|||||||
</description>
|
</description>
|
||||||
<arg name="edge" type="uint"/>
|
<arg name="edge" type="uint"/>
|
||||||
</request>
|
</request>
|
||||||
|
|
||||||
|
<!-- Version 6 additions -->
|
||||||
|
|
||||||
|
<enum name="anchor_rect">
|
||||||
|
<entry name="full_area" value="0" summary="the full area anchor rect">
|
||||||
|
<description summary="the full area anchor rect">
|
||||||
|
Place the layer_surface_v1 relative to the full output area.
|
||||||
|
</description>
|
||||||
|
</entry>
|
||||||
|
<entry name="work_area" value="1" summary="the work area anchor rect">
|
||||||
|
<description summary="the work area anchor rect">
|
||||||
|
Place the layer_surface_v1 relative to the output area while taking
|
||||||
|
the exclusive zone of other surfaces into account.
|
||||||
|
</description>
|
||||||
|
</entry>
|
||||||
|
</enum>
|
||||||
|
|
||||||
|
<request name="set_anchor_rect" since="6">
|
||||||
|
<description summary="set the anchor rect">
|
||||||
|
Set the anchor rectangle relative to which the anchors are applied.
|
||||||
|
|
||||||
|
By default, the layer_surface_v1 is anchored to the 'work_area'.
|
||||||
|
|
||||||
|
Anchor rect is double-buffered, see wl_surface.commit.
|
||||||
|
</description>
|
||||||
|
<arg name="rect" type="uint" enum="anchor_rect"/>
|
||||||
|
</request>
|
||||||
|
|
||||||
</interface>
|
</interface>
|
||||||
</protocol>
|
</protocol>
|
||||||
|
|||||||
@ -53,7 +53,7 @@ int main(int argc, char **argv)
|
|||||||
QGuiApplication app(argc, argv);
|
QGuiApplication app(argc, argv);
|
||||||
|
|
||||||
const auto layerMetaEnum = QMetaEnum::fromType<Window::Layer>();
|
const auto layerMetaEnum = QMetaEnum::fromType<Window::Layer>();
|
||||||
const auto anchorMetaEnum = QMetaEnum::fromType<Window::Anchors>();
|
const auto anchorMetaEnum = QMetaEnum::fromType<Window::Anchor>();
|
||||||
|
|
||||||
QCommandLineParser parser;
|
QCommandLineParser parser;
|
||||||
QCommandLineOption marginsOption(QStringLiteral("margins"), QStringLiteral("Window margins"), QStringLiteral("pixels"), QStringLiteral("0"));
|
QCommandLineOption marginsOption(QStringLiteral("margins"), QStringLiteral("Window margins"), QStringLiteral("pixels"), QStringLiteral("0"));
|
||||||
|
|||||||
Reference in New Issue
Block a user