2020-08-02 22:22:19 +00:00
|
|
|
/*
|
|
|
|
KWin - the KDE window manager
|
|
|
|
This file is part of the KDE project.
|
2019-01-27 19:48:00 +00:00
|
|
|
|
2020-08-02 22:22:19 +00:00
|
|
|
SPDX-FileCopyrightText: 2019 Martin Flöser <mgraesslin@kde.org>
|
|
|
|
SPDX-FileCopyrightText: 2019 Vlad Zahorodnii <vlad.zahorodnii@kde.org>
|
2019-01-27 19:48:00 +00:00
|
|
|
|
2020-08-02 22:22:19 +00:00
|
|
|
SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
*/
|
2019-01-27 19:48:00 +00:00
|
|
|
#pragma once
|
|
|
|
|
2019-08-26 07:44:04 +00:00
|
|
|
#include "abstract_client.h"
|
2019-01-27 19:48:00 +00:00
|
|
|
|
|
|
|
namespace KWin
|
|
|
|
{
|
|
|
|
|
2019-08-26 07:44:04 +00:00
|
|
|
class KWIN_EXPORT InternalClient : public AbstractClient
|
2019-01-27 19:48:00 +00:00
|
|
|
{
|
|
|
|
Q_OBJECT
|
2019-08-26 07:44:04 +00:00
|
|
|
|
2019-01-27 19:48:00 +00:00
|
|
|
public:
|
2019-08-26 07:44:04 +00:00
|
|
|
explicit InternalClient(QWindow *window);
|
2019-01-27 19:48:00 +00:00
|
|
|
~InternalClient() override;
|
|
|
|
|
|
|
|
bool eventFilter(QObject *watched, QEvent *event) override;
|
|
|
|
|
2019-10-03 19:43:28 +00:00
|
|
|
QRect bufferGeometry() const override;
|
2019-08-26 07:44:04 +00:00
|
|
|
QStringList activities() const override;
|
|
|
|
void blockActivityUpdates(bool b = true) override;
|
|
|
|
qreal bufferScale() const override;
|
|
|
|
QString captionNormal() const override;
|
|
|
|
QString captionSuffix() const override;
|
|
|
|
QPoint clientContentPos() const override;
|
2020-02-12 10:44:10 +00:00
|
|
|
QSize minSize() const override;
|
|
|
|
QSize maxSize() const override;
|
2019-08-26 07:44:04 +00:00
|
|
|
QRect transparentRect() const override;
|
2019-01-27 19:48:00 +00:00
|
|
|
NET::WindowType windowType(bool direct = false, int supported_types = 0) const override;
|
2019-08-26 07:44:04 +00:00
|
|
|
double opacity() const override;
|
|
|
|
void setOpacity(double opacity) override;
|
2019-01-27 19:48:00 +00:00
|
|
|
void killWindow() override;
|
|
|
|
bool isPopupWindow() const override;
|
2019-08-26 07:44:04 +00:00
|
|
|
QByteArray windowRole() const override;
|
2019-01-27 19:48:00 +00:00
|
|
|
void closeWindow() override;
|
|
|
|
bool isCloseable() const override;
|
|
|
|
bool isMovable() const override;
|
|
|
|
bool isMovableAcrossScreens() const override;
|
|
|
|
bool isResizable() const override;
|
|
|
|
bool noBorder() const override;
|
|
|
|
bool userCanSetNoBorder() const override;
|
|
|
|
bool wantsInput() const override;
|
|
|
|
bool isInternal() const override;
|
|
|
|
bool isLockScreen() const override;
|
|
|
|
bool isInputMethod() const override;
|
2019-03-19 14:01:29 +00:00
|
|
|
bool isOutline() const override;
|
2019-01-27 19:48:00 +00:00
|
|
|
quint32 windowId() const override;
|
2019-08-26 07:44:04 +00:00
|
|
|
bool isShown(bool shaded_is_shown) const override;
|
|
|
|
bool isHiddenInternal() const override;
|
|
|
|
void hideClient(bool hide) override;
|
2020-03-25 15:15:23 +00:00
|
|
|
void resizeWithChecks(const QSize &size, ForceGeometry_t force = NormalGeometrySet) override;
|
|
|
|
void setFrameGeometry(const QRect &rect, ForceGeometry_t force = NormalGeometrySet) override;
|
2019-08-26 07:44:04 +00:00
|
|
|
AbstractClient *findModal(bool allow_itself = false) override;
|
|
|
|
void setOnAllActivities(bool set) override;
|
2020-07-22 11:00:11 +00:00
|
|
|
bool takeFocus() override;
|
2019-08-26 07:44:04 +00:00
|
|
|
void setNoBorder(bool set) override;
|
|
|
|
void updateDecoration(bool check_workspace_pos, bool force = false) override;
|
2020-02-19 15:22:23 +00:00
|
|
|
void destroyClient() override;
|
2019-08-26 07:44:04 +00:00
|
|
|
|
|
|
|
void present(const QSharedPointer<QOpenGLFramebufferObject> fbo);
|
|
|
|
void present(const QImage &image, const QRegion &damage);
|
|
|
|
QWindow *internalWindow() const;
|
2019-01-27 19:48:00 +00:00
|
|
|
|
|
|
|
protected:
|
|
|
|
bool acceptsFocus() const override;
|
2019-08-26 07:44:04 +00:00
|
|
|
bool belongsToSameApplication(const AbstractClient *other, SameApplicationChecks checks) const override;
|
2019-01-27 19:48:00 +00:00
|
|
|
void doMove(int x, int y) override;
|
|
|
|
void doResizeSync() override;
|
2019-08-26 07:44:04 +00:00
|
|
|
void updateCaption() override;
|
2019-01-27 19:48:00 +00:00
|
|
|
|
|
|
|
private:
|
2019-08-26 07:44:04 +00:00
|
|
|
void requestGeometry(const QRect &rect);
|
|
|
|
void commitGeometry(const QRect &rect);
|
|
|
|
void setCaption(const QString &caption);
|
|
|
|
void markAsMapped();
|
2019-01-27 19:48:00 +00:00
|
|
|
void syncGeometryToInternalWindow();
|
2019-08-26 07:44:04 +00:00
|
|
|
void updateInternalWindowGeometry();
|
2019-01-27 19:48:00 +00:00
|
|
|
|
2019-08-26 07:44:04 +00:00
|
|
|
QWindow *m_internalWindow = nullptr;
|
|
|
|
QString m_captionNormal;
|
|
|
|
QString m_captionSuffix;
|
|
|
|
double m_opacity = 1.0;
|
2019-01-27 19:48:00 +00:00
|
|
|
NET::WindowType m_windowType = NET::Normal;
|
|
|
|
quint32 m_windowId = 0;
|
|
|
|
Qt::WindowFlags m_internalWindowFlags = Qt::WindowFlags();
|
2019-08-26 07:44:04 +00:00
|
|
|
bool m_userNoBorder = false;
|
|
|
|
|
|
|
|
Q_DISABLE_COPY(InternalClient)
|
2019-01-27 19:48:00 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|