aboutsummaryrefslogtreecommitdiff
path: root/src-qt5/core/lumina-desktop-unified/LSession.h
blob: c791c66baa00a6b3bc2c57bb82dd0b64d639ff3f (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
//===========================================
//  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();

private:
	void CleanupSession();
	
	int VersionStringToNumber(QString version);
	QMediaPlayer *mediaObj;
	void playAudioFile(QString filepath);

	QTranslator *currTranslator;

public slots:
	void setupSession();  //called during startup only

	void StartLogout();
	void StartShutdown(bool skipupdates = false);
	void StartReboot(bool skipupdates = false);

	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
bgstack15