/******************************************************************** KSld - the KDE Screenlocker Daemon This file is part of the KDE project. 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_GREETERAPP_H #define SCREENLOCKER_GREETERAPP_H #include #include #include namespace Plasma { class Package; }; namespace ScreenLocker { class Unlocker; class ScreenSaverWindow; class UnlockApp : public KApplication { Q_OBJECT public: UnlockApp(); virtual ~UnlockApp(); void setTesting(bool enable); void setImmediateLock(bool immediateLock); void lockImmediately(); public Q_SLOTS: void desktopResized(); protected: virtual bool eventFilter(QObject *obj, QEvent *event); private Q_SLOTS: void viewStatusChanged(const QDeclarativeView::Status &status); void resetRequestIgnore(); void suspendToRam(); void suspendToDisk(); void shutdown(); void getFocus(); void setLockedPropertyOnViews(); private: void initialize(); void capsLocked(); void shareEvent(QEvent *e, QDeclarativeView *from); QString m_mainQmlPath; QList m_views; QList m_screensaverWindows; QTimer *m_resetRequestIgnoreTimer; QTimer *m_delayedLockTimer; Plasma::PackageStructure::Ptr m_structure; Plasma::Package *m_package; bool m_testing; bool m_capsLocked; bool m_ignoreRequests; bool m_showScreenSaver; bool m_immediateLock; bool m_runtimeInitialized; }; } // namespace #endif // SCREENLOCKER_GREETERAPP_H