blob: fb4bf29f0ba3121a3577cbe871e61b29a2b7e9ec (
plain)
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
|
//===========================================
// Lumina-desktop source code
// Copyright (c) 2012-2017, Ken Moore
// Available under the 3-clause BSD license
// See the LICENSE file for full details
//===========================================
#ifndef _LUMINA_DESKTOP_SESSION_H
#define _LUMINA_DESKTOP_SESSION_H
#include <global-includes.h>
class LSession : public LSingleApplication{
Q_OBJECT
public:
LSession(int &argc, char **argv);
~LSession();
static LSession* instance(){
return ( static_cast<LSession*>(QApplication::instance()) );
}
private:
void CleanupSession();
void setupGlobalConnections();
int VersionStringToNumber(QString version);
QMediaPlayer *mediaObj;
void playAudioFile(QString filepath);
QTranslator *currTranslator;
//Extra background threads for individual objects
public slots:
void setupSession(); //called during startup only
//Slots for public access/usage
void StartLogout();
void StartShutdown(bool skipupdates = false);
void StartReboot(bool skipupdates = false);
void LaunchApplication(QString exec);
void LaunchDesktopApplication(QString app, QString action = "");
void LaunchStandardApplication(QString app, QStringList args = QStringList());
void reloadIconTheme(); //will emit the IconThemeChanged signal when ready
void switchLocale(QString localeCode); //will emit the LocaleChanged signal when ready
private slots:
void NewCommunication(QStringList);
void launchStartupApps(); //used during initialization
//Internal simplification functions
void checkUserFiles();
signals:
//General Signals
void LocaleChanged();
void IconThemeChanged();
};
#endif
|