Advertisement
Guest User

ui_widget.h

a guest
Aug 1st, 2019
46
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 2.71 KB | None | 0 0
  1. /********************************************************************************
  2. ** Form generated from reading UI file 'Widget.ui'
  3. **
  4. ** Created by: Qt User Interface Compiler version 5.12.1
  5. **
  6. ** WARNING! All changes made in this file will be lost when recompiling UI file!
  7. ********************************************************************************/
  8.  
  9. #ifndef UI_WIDGET_H
  10. #define UI_WIDGET_H
  11.  
  12. #include <QtCore/QVariant>
  13. #include <QtWidgets/QApplication>
  14. #include <QtWidgets/QComboBox>
  15. #include <QtWidgets/QGridLayout>
  16. #include <QtWidgets/QGroupBox>
  17. #include <QtWidgets/QLabel>
  18. #include <QtWidgets/QWidget>
  19.  
  20. QT_BEGIN_NAMESPACE
  21.  
  22. class Ui_Form
  23. {
  24. public:
  25.     QGridLayout *gridLayout_2;
  26.     QGroupBox *groupBox;
  27.     QGridLayout *gridLayout;
  28.     QLabel *label;
  29.     QComboBox *comboBox;
  30.  
  31.     void setupUi(QWidget *Form)
  32.     {
  33.         if (Form->objectName().isEmpty())
  34.             Form->setObjectName(QString::fromUtf8("Form"));
  35.         Form->resize(191, 83);
  36.         gridLayout_2 = new QGridLayout(Form);
  37.         gridLayout_2->setObjectName(QString::fromUtf8("gridLayout_2"));
  38.         groupBox = new QGroupBox(Form);
  39.         groupBox->setObjectName(QString::fromUtf8("groupBox"));
  40.         gridLayout = new QGridLayout(groupBox);
  41.         gridLayout->setObjectName(QString::fromUtf8("gridLayout"));
  42.         label = new QLabel(groupBox);
  43.         label->setObjectName(QString::fromUtf8("label"));
  44.  
  45.         gridLayout->addWidget(label, 0, 0, 1, 1);
  46.  
  47.         comboBox = new QComboBox(groupBox);
  48.         comboBox->addItem(QString());
  49.         comboBox->addItem(QString());
  50.         comboBox->addItem(QString());
  51.         comboBox->addItem(QString());
  52.         comboBox->setObjectName(QString::fromUtf8("comboBox"));
  53.         comboBox->setMinimumSize(QSize(101, 0));
  54.  
  55.         gridLayout->addWidget(comboBox, 0, 1, 1, 1);
  56.  
  57.  
  58.         gridLayout_2->addWidget(groupBox, 0, 0, 1, 1);
  59.  
  60.  
  61.         retranslateUi(Form);
  62.  
  63.         QMetaObject::connectSlotsByName(Form);
  64.     } // setupUi
  65.  
  66.     void retranslateUi(QWidget *Form)
  67.     {
  68.         Form->setWindowTitle(QApplication::translate("Form", "Form", nullptr));
  69.         groupBox->setTitle(QString());
  70.         label->setText(QApplication::translate("Form", "Port:", nullptr));
  71.         comboBox->setItemText(0, QApplication::translate("Form", "Serial 0", nullptr));
  72.         comboBox->setItemText(1, QApplication::translate("Form", "Serial 1", nullptr));
  73.         comboBox->setItemText(2, QApplication::translate("Form", "Serial 2", nullptr));
  74.         comboBox->setItemText(3, QApplication::translate("Form", "Serial 3", nullptr));
  75.  
  76.     } // retranslateUi
  77.  
  78. };
  79.  
  80. namespace Ui {
  81.     class Form: public Ui_Form {};
  82. } // namespace Ui
  83.  
  84. QT_END_NAMESPACE
  85.  
  86. #endif // UI_WIDGET_H
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement