kde-workspace/ksmserver/screenlocker/greeter/greeterapp.h
Ivailo Monev 1a61092a69 generic: adjust to Katie changes
Signed-off-by: Ivailo Monev <xakepa10@laimg.moc>
2019-05-17 18:06:38 +00:00

86 lines
2.3 KiB
C++

/********************************************************************
KSld - the KDE Screenlocker Daemon
This file is part of the KDE project.
Copyright (C) 2011 Martin Gräßlin <mgraesslin@kde.org>
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 <http://www.gnu.org/licenses/>.
*********************************************************************/
#ifndef SCREENLOCKER_GREETERAPP_H
#define SCREENLOCKER_GREETERAPP_H
#include <KApplication>
#include <Plasma/PackageStructure>
#include <QTimer>
#include <QDeclarativeView>
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<QDeclarativeView*> m_views;
QList<ScreenSaverWindow*> 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