1234567891011121314151617181920212223242526272829 |
- #ifndef TEXTCOLORTAB_H
- #define TEXTCOLORTAB_H
- #include <QObject>
- #include <QDebug>
- #include <QColor>
- #include <QJsonObject>
- #include <QJsonDocument>
- #include <QJsonArray>
- #include <QColorDialog>
- class textColorTab : public QObject
- {
- Q_OBJECT
- public:
- textColorTab();
- QColor getColorFromUser();
- signals:
- void setLabelsColor(QColor labelPrimaryColor, QColor labelSecondaryColor, QColor labelIconSetColor, QColor labelSetActiveColor, QColor labelTransitionScreen);
- public slots:
- void updateLabels(QString jsonData);
- };
- #endif // TEXTCOLORTAB_H
|