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.

12 line
310 B

  1. #include "hmiwidgetfactory.h"
  2. // 根据名称创建HMI控件
  3. HmiControlItem* HmiWidgetFactory::createItem(const QString& name) {
  4. if (name == "按钮") {
  5. return new HmiButton();
  6. } else if (name == "指示灯") {
  7. return new HmiLed();
  8. }
  9. return nullptr; // 未知类型返回空
  10. }