From 073dee6c0b93b531b9567ec44ecdc6209a841c22 Mon Sep 17 00:00:00 2001 From: Simon Rettberg Date: Tue, 14 Nov 2017 12:39:18 +0100 Subject: Support autologin via guest session --- src/global.h | 72 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 72 insertions(+) create mode 100644 src/global.h (limited to 'src/global.h') diff --git a/src/global.h b/src/global.h new file mode 100644 index 0000000..bdfda89 --- /dev/null +++ b/src/global.h @@ -0,0 +1,72 @@ +#ifndef GLOBAL_H_ +#define GLOBAL_H_ + +#include +#include +#include + +class Global { +public: + static inline QLightDM::Greeter* greeter() + { + if (!m_testMode && m_Greeter == nullptr) { + initGreeter(); + } + return m_Greeter; + } + + static inline QLightDM::PowerInterface* power() + { + if (!m_testMode && m_Power == nullptr) { + m_Power = new QLightDM::PowerInterface(); + } + return m_Power; + } + + static inline QLightDM::SessionsModel* sessions() + { + if (!m_testMode && m_Sessions == nullptr) { + m_Sessions = new QLightDM::SessionsModel(); + } + return m_Sessions; + } + + static inline void enableTestMode() + { + m_testMode = true; + } + + static inline bool testMode() + { + return m_testMode; + } + + static bool autoLoginGuest(); + + static bool startSession(); + +private: + static bool m_testMode; + static QLightDM::Greeter *m_Greeter; + static QLightDM::PowerInterface *m_Power; + static QLightDM::SessionsModel *m_Sessions; + + static void initGreeter(); + + Global() {}; +}; + +class GreeterCb : public QObject +{ + Q_OBJECT +public slots: + void authenticationComplete() { authComplete = true; } + void autologinTimerExpired() { authError = true; } + void reset() { authError = true; } + void customTimeout() { authError = true; } +public: + GreeterCb() : authComplete(false), authError(false) {} + bool authComplete, authError; +}; + +#endif /* GLOBAL_H_ */ -- cgit v1.2.3-55-g7522