3c2e1a71c4
This makes the implementation of the buffer geometry consistent with the frame geometry and the client geometry and removes a virtual method call from a few hot paths.
84 lines
2.3 KiB
C++
84 lines
2.3 KiB
C++
/*
|
|
SPDX-FileCopyrightText: 2020 Vlad Zahorodnii <vlad.zahorodnii@kde.org>
|
|
|
|
SPDX-License-Identifier: GPL-2.0-or-later
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include "abstract_client.h"
|
|
|
|
namespace KWin
|
|
{
|
|
|
|
enum class SyncMode {
|
|
Sync,
|
|
Async,
|
|
};
|
|
|
|
class WaylandClient : public AbstractClient
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
WaylandClient(KWaylandServer::SurfaceInterface *surface);
|
|
|
|
QString captionNormal() const override;
|
|
QString captionSuffix() const override;
|
|
QPoint clientContentPos() const override;
|
|
QRect transparentRect() const override;
|
|
pid_t pid() const override;
|
|
bool isLockScreen() const override;
|
|
bool isLocalhost() const override;
|
|
AbstractClient *findModal(bool allow_itself = false) override;
|
|
void resizeWithChecks(const QSize &size) override;
|
|
void setFrameGeometry(const QRect &rect) override;
|
|
using AbstractClient::move;
|
|
void move(int x, int y) override;
|
|
void killWindow() override;
|
|
QByteArray windowRole() const override;
|
|
bool isShown(bool shaded_is_shown) const override;
|
|
bool isHiddenInternal() const override;
|
|
void hideClient(bool hide) override;
|
|
|
|
virtual QRect frameRectToBufferRect(const QRect &rect) const;
|
|
QRect requestedFrameGeometry() const;
|
|
QPoint requestedPos() const;
|
|
QSize requestedSize() const;
|
|
QRect requestedClientGeometry() const;
|
|
QSize requestedClientSize() const;
|
|
bool isHidden() const;
|
|
|
|
void updateDepth();
|
|
void setCaption(const QString &caption);
|
|
|
|
protected:
|
|
bool belongsToSameApplication(const AbstractClient *other, SameApplicationChecks checks) const override;
|
|
bool belongsToDesktop() const override;
|
|
void doSetActive() override;
|
|
void updateCaption() override;
|
|
|
|
void setPositionSyncMode(SyncMode syncMode);
|
|
void setSizeSyncMode(SyncMode syncMode);
|
|
void cleanGrouping();
|
|
|
|
virtual void requestGeometry(const QRect &rect);
|
|
virtual void updateGeometry(const QRect &rect);
|
|
|
|
private:
|
|
void updateClientOutputs();
|
|
void updateIcon();
|
|
void updateResourceName();
|
|
void internalShow();
|
|
void internalHide();
|
|
|
|
QString m_captionNormal;
|
|
QString m_captionSuffix;
|
|
QRect m_requestedFrameGeometry;
|
|
QRect m_requestedClientGeometry;
|
|
SyncMode m_positionSyncMode = SyncMode::Sync;
|
|
SyncMode m_sizeSyncMode = SyncMode::Sync;
|
|
bool m_isHidden = false;
|
|
};
|
|
|
|
} // namespace KWin
|