/******************************************************************** KWin - the KDE window manager This file is part of the KDE project. Copyright (C) 2011 Arthur Arlt Copyright (C) 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. Copyright (C) 1999, 2000 Matthias Ettrich Copyright (C) 2003 Lubos Lunak Copyright (C) 2009 Lucas Murray This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see . *********************************************************************/ #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); virtual ~WindowBasedEdge(); 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: virtual void doGeometryUpdate(); virtual void doActivate() override; virtual void doDeactivate() override; virtual void doStartApproaching(); virtual void doStopApproaching(); virtual void doUpdateBlocking(); 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