0
0
mirror of https://github.com/fralx/LimeReport.git synced 2024-12-23 16:22:58 +03:00
LimeReport/designer/designersettingmanager.h

24 lines
585 B
C
Raw Normal View History

#ifndef DESIGNERSETTINGMANAGER_H
#define DESIGNERSETTINGMANAGER_H
#include <QApplication>
#include <QLocale>
#include <QObject>
#include <QSettings>
class DesignerSettingManager: public QObject {
Q_OBJECT
public:
explicit DesignerSettingManager(QObject* parent = 0);
~DesignerSettingManager();
public slots:
2019-06-11 21:28:58 +03:00
void getAvailableLanguages(QList<QLocale::Language>* languages);
QLocale::Language getCurrentDefaultLanguage();
2019-06-11 21:28:58 +03:00
void currentDefaultLanguageChanged(QLocale::Language language);
private:
QSettings* m_setting;
};
#endif // DESIGNERSETTINGMANAGER_H