12345678910111213141516171819202122232425 |
- #ifndef THEMEINFOTAB_H
- #define THEMEINFOTAB_H
- #include <QObject>
- #include <QDebug>
- #include <QJsonObject>
- #include <QJsonDocument>
- #include <QJsonArray>
- class themeInfoTab : public QObject
- {
- Q_OBJECT
- public:
- themeInfoTab();
- signals:
- void setTextBox(QString themeName, QString themeVer, QString themeDesc);
- public slots:
- void updateData(QString jsonData);
- };
- #endif // THEMEINFOTAB_H
|