/******************************************************************** KSld - the KDE Screenlocker Daemon This file is part of the KDE project. Copyright (C) 1999 Martin R. Jones Copyright (C) 2002 Luboš Luňák Copyright (C) 2003 Oswald Buddenhagen Copyright (C) 2008 Chani Armitage Copyright (C) 2011 Martin Gräßlin 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 SCREENLOCKER_LOCKWINDOW_H #define SCREENLOCKER_LOCKWINDOW_H #include #include #include class QTimer; namespace ScreenLocker { class LockWindow : public QWidget { Q_OBJECT public: LockWindow(); virtual ~LockWindow(); void showLockWindow(); void hideLockWindow(); Q_SIGNALS: void userActivity(); protected: virtual bool x11Event(XEvent *event); virtual void paintEvent(QPaintEvent *); private Q_SLOTS: void autoLogoutTimeout(); void updateGeometry(); private: void initialize(); void saveVRoot(); void setVRoot(Window win, Window vr); void removeVRoot(Window win); int findWindowInfo(Window w); void stayOnTop(); bool isLockWindow(Window w); struct WindowInfo { Window window; bool viewable; }; QList m_windowInfo; QList m_lockWindows; QTimer *m_autoLogoutTimer; }; } #endif // SCREENLOCKER_LOCKWINDOW_H