#ifndef CONTROLLER_APPLICATION_H #define CONTROLLER_APPLICATION_H #include #include #include class ControllerApplication { public: static ControllerApplication *ins(); QMap 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