attribute_wgt.cpp 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. #include "attribute_wgt.h"
  2. #include "ui_attribute_wgt.h"
  3. #include <QPushButton>
  4. #include <QHBoxLayout>
  5. #include <QLabel>
  6. Attribute_wgt::Attribute_wgt(QWidget *parent)
  7. : QWidget(parent)
  8. , ui(new Ui::Attribute_wgt)
  9. {
  10. ui->setupUi(this);
  11. init_ui();
  12. }
  13. Attribute_wgt::~Attribute_wgt()
  14. {
  15. delete ui;
  16. }
  17. void Attribute_wgt::init_ui()
  18. {
  19. // 创建 QStringList属性列表
  20. QStringList stringList;
  21. set_param_ui(stringList);
  22. QVBoxLayout *layout_par = new QVBoxLayout;
  23. // 遍历 QStringList 并创建 QLabel 显示每个项
  24. for (const QString &str : stringList) {
  25. QLabel *label = new QLabel(str); // 创建 QLabel
  26. QLineEdit *LineEdt = new QLineEdit;
  27. LineEdt->setMaximumWidth(100);
  28. QHBoxLayout *small_layout = new QHBoxLayout;
  29. small_layout->addWidget(label);
  30. small_layout->addWidget(LineEdt);
  31. layout_par->addLayout(small_layout); // 将 QLabel 添加到布局中
  32. }
  33. setLayout(layout_par);
  34. }
  35. void Attribute_wgt::set_param_ui(QStringList &stringList)
  36. {
  37. stringList << "Pick Process type"
  38. << "Pick force "
  39. << "Pick up time"
  40. << "Needle top height"
  41. << "Pick force"
  42. << "Pick process time"
  43. << "Pick Z touch height"
  44. << "Actual tool orientation"
  45. << "Die on bond head"
  46. << "Install peper pot"
  47. << "Die ejector height ofset"
  48. << "..." ;
  49. }