mirror of
https://github.com/Snigdha-OS/snigdhaos-horizon.git
synced 2025-09-20 20:24:57 +02:00
🚀 feat(_ext): extend files
This commit is contained in:
27
controller_application.h
Normal file
27
controller_application.h
Normal file
@@ -0,0 +1,27 @@
|
||||
#ifndef CONTROLLER_APPLICATION_H
|
||||
#define CONTROLLER_APPLICATION_H
|
||||
#include <QMap>
|
||||
#include <QSettings>
|
||||
#include <QSystemTrayIcon>
|
||||
|
||||
class ControllerApplication {
|
||||
public:
|
||||
static ControllerApplication *ins();
|
||||
QMap<QString, QString> getLanguageList() const;
|
||||
// void loadLanguageList();
|
||||
void updateStylesheet();
|
||||
QString getStylesheetFileContent() const;
|
||||
QSettings *getStyleValues() const;
|
||||
QSystemTrayIcon *getTrayIcon();
|
||||
|
||||
private:
|
||||
static ControllerApplication *instance;
|
||||
ControllerApplication();
|
||||
|
||||
private:
|
||||
QSystemTrayIcon *eTrayIcon;
|
||||
QSettings *eStyleValue;
|
||||
QString stFileContent;
|
||||
};
|
||||
|
||||
#endif // CONTROLLER_APPLICATION_H
|
Reference in New Issue
Block a user