themeinfotab.h 405 B

12345678910111213141516171819202122232425
  1. #ifndef THEMEINFOTAB_H
  2. #define THEMEINFOTAB_H
  3. #include <QObject>
  4. #include <QDebug>
  5. #include <QJsonObject>
  6. #include <QJsonDocument>
  7. #include <QJsonArray>
  8. class themeInfoTab : public QObject
  9. {
  10. Q_OBJECT
  11. public:
  12. themeInfoTab();
  13. signals:
  14. void setTextBox(QString themeName, QString themeVer, QString themeDesc);
  15. public slots:
  16. void updateData(QString jsonData);
  17. };
  18. #endif // THEMEINFOTAB_H