/* KWin - the KDE window manager This file is part of the KDE project. SPDX-FileCopyrightText: 2011 Arthur Arlt SPDX-FileCopyrightText: 2013 Martin Gräßlin Since the functionality provided in this class has been moved from class Workspace, it is not clear who exactly has written the code. The list below contains the copyright holders of the class Workspace. SPDX-FileCopyrightText: 1999, 2000 Matthias Ettrich SPDX-FileCopyrightText: 2003 Lubos Lunak SPDX-FileCopyrightText: 2009 Lucas Murray SPDX-License-Identifier: GPL-2.0-or-later */ #ifndef KWIN_EDGE_H #define KWIN_EDGE_H #include "screenedge.h" #include "xcbutils.h" namespace KWin { class WindowBasedEdge : public Edge { Q_OBJECT public: explicit WindowBasedEdge(ScreenEdges *parent); ~WindowBasedEdge() override; quint32 window() const override; /** * The approach window is a special window to notice when get close to the screen border but * not yet triggering the border. */ quint32 approachWindow() const override; protected: void doGeometryUpdate() override; void doActivate() override; void doDeactivate() override; void doStartApproaching() override; void doStopApproaching() override; void doUpdateBlocking() override; private: void createWindow(); void createApproachWindow(); Xcb::Window m_window; Xcb::Window m_approachWindow; QMetaObject::Connection m_cursorPollingConnection; }; inline quint32 WindowBasedEdge::window() const { return m_window; } inline quint32 WindowBasedEdge::approachWindow() const { return m_approachWindow; } } #endif