-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathDaemonApp.h
More file actions
65 lines (52 loc) · 2.11 KB
/
DaemonApp.h
File metadata and controls
65 lines (52 loc) · 2.11 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
/***************************************************************************
* Copyright (c) 2013 Abdurrahman AVCI <abdurrahmanavci@gmail.com>
*
* 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, write to the
* Free Software Foundation, Inc.,
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
***************************************************************************/
#ifndef DDM_DAEMONAPP_H
#define DDM_DAEMONAPP_H
#include <QCoreApplication>
#define daemonApp DaemonApp::instance()
namespace DDM {
class Configuration;
class DisplayManager;
class PowerManager;
class SeatManager;
class SignalHandler;
class DaemonApp : public QCoreApplication {
Q_OBJECT
Q_DISABLE_COPY(DaemonApp)
public:
explicit DaemonApp(int &argc, char **argv);
static inline DaemonApp *instance() { return self; }
QString hostName() const;
inline DisplayManager *displayManager() const { return m_displayManager; };
inline PowerManager *powerManager() const { return m_powerManager; };
inline SeatManager *seatManager() const { return m_seatManager; };
inline SignalHandler *signalHandler() const { return m_signalHandler; };
void backToNormal();
public slots:
int newSessionId();
private:
static DaemonApp *self;
int m_lastSessionId { 0 };
DisplayManager *m_displayManager { nullptr };
PowerManager *m_powerManager { nullptr };
SeatManager *m_seatManager { nullptr };
SignalHandler *m_signalHandler { nullptr };
};
}
#endif // DDM_DAEMONAPP_H