setinfomanager.h 443 B

123456789101112131415161718192021
  1. #ifndef SETINFOMANAGER_H
  2. #define SETINFOMANAGER_H
  3. #include <QObject>
  4. #include "setinfowidget.h"
  5. class SetInfoManager: public QObject
  6. {
  7. Q_OBJECT
  8. public:
  9. explicit SetInfoManager(QObject *parent = nullptr);
  10. virtual ~SetInfoManager();
  11. int CreateWindow(int nSkinType, QWidget* parent);
  12. int ShowWindow(int nSkinType, int nServiceID, bool bShowWindow);
  13. private:
  14. SetInfoWidget* m_pWgtSet;
  15. };
  16. #endif // SETINFOMANAGER_H