#ifndef SETTINGS_H #define SETTINGS_H #include "Glass_global.h" #include class QSettings; class GLASSSHARED_EXPORT Settings : public QObject { Q_OBJECT public: Settings(QObject *parent = 0); void setArbeitSelected(QList &arbeitSelected); QList arbeitSelected() const; void setWeatherAlignment(Qt::AlignmentFlag weatherAlignment); Qt::AlignmentFlag weatherAlignment() const; void setArbeitIndex(int index); int arbeitIndex() const; void setWeatherIndex(int index); int weatherIndex() const; private: QSettings *setting; }; #endif // SETTINGS_H