You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
293 B

  1. #pragma once
  2. #include "hmibutton.h"
  3. #include "hmiled.h"
  4. #include <QString>
  5. // HMI控件工厂类(静态类,用于创建HMI控件)
  6. class HmiWidgetFactory {
  7. public:
  8. // 静态方法:根据名称创建对应的HMI控件
  9. static HmiControlItem* createItem(const QString& name);
  10. };