Advance Wayland and KDE package bring-up

Ultraworked with [Sisyphus](https://github.com/code-yeongyu/oh-my-openagent)

Co-authored-by: Sisyphus <clio-agent@sisyphuslabs.ai>
This commit is contained in:
2026-04-14 10:51:06 +01:00
parent 51f3c21121
commit cf12defd28
15214 changed files with 20594243 additions and 269 deletions
@@ -0,0 +1,87 @@
/*
SPDX-FileCopyrightText: 2020 Vlad Zahorodnii <vlad.zahorodnii@kde.org>
SPDX-License-Identifier: GPL-2.0-or-later
*/
#pragma once
#include "waylandwindow.h"
namespace KWin
{
struct LayerShellV1ConfigureEvent
{
quint32 serial;
QSize size;
};
class AutoHideScreenEdgeV1Interface;
class LayerSurfaceV1Interface;
class Output;
class LayerShellV1Integration;
class LayerShellV1Window : public WaylandWindow
{
Q_OBJECT
public:
explicit LayerShellV1Window(LayerSurfaceV1Interface *shellSurface,
Output *output,
LayerShellV1Integration *integration);
LayerSurfaceV1Interface *shellSurface() const;
Output *desiredOutput() const;
WindowType windowType() const override;
bool isPlaceable() const override;
bool isCloseable() const override;
bool isMovable() const override;
bool isMovableAcrossScreens() const override;
bool isResizable() const override;
bool takeFocus() override;
bool wantsInput() const override;
bool dockWantsInput() const override;
StrutRect strutRect(StrutArea area) const override;
bool hasStrut() const override;
void destroyWindow() override;
void closeWindow() override;
void setVirtualKeyboardGeometry(const QRectF &geo) override;
void showOnScreenEdge() override;
void installAutoHideScreenEdgeV1(AutoHideScreenEdgeV1Interface *edge);
protected:
Layer belongsToLayer() const override;
bool acceptsFocus() const override;
void moveResizeInternal(const QRectF &rect, MoveResizeMode mode) override;
void doSetNextTargetScale() override;
void doSetPreferredBufferTransform() override;
void doSetPreferredColorDescription() override;
private:
void handleConfigureAcknowledged(quint32 serial);
void handleSizeChanged();
void handleUnmapped();
void handleCommitted();
void handleAcceptsFocusChanged();
void handleOutputEnabledChanged();
void scheduleRearrange();
void activateScreenEdge();
void deactivateScreenEdge();
void reserveScreenEdge();
void unreserveScreenEdge();
void handleTargetScaleChange();
Output *m_desiredOutput;
LayerShellV1Integration *m_integration;
LayerSurfaceV1Interface *m_shellSurface;
QPointer<AutoHideScreenEdgeV1Interface> m_screenEdge;
bool m_screenEdgeActive = false;
WindowType m_windowType;
QList<LayerShellV1ConfigureEvent> m_configureEvents;
QTimer m_rescalingTimer;
};
} // namespace KWin