| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687 |
- /********************************************************************************
- ** Form generated from reading UI file 'askOneStringDlg.ui'
- **
- ** Created by: Qt User Interface Compiler version 5.15.10
- **
- ** WARNING! All changes made in this file will be lost when recompiling UI file!
- ********************************************************************************/
- #ifndef UI_ASKONESTRINGDLG_H
- #define UI_ASKONESTRINGDLG_H
- #include <QtCore/QVariant>
- #include <QtWidgets/QApplication>
- #include <QtWidgets/QDialog>
- #include <QtWidgets/QDialogButtonBox>
- #include <QtWidgets/QHBoxLayout>
- #include <QtWidgets/QLabel>
- #include <QtWidgets/QLineEdit>
- #include <QtWidgets/QVBoxLayout>
- QT_BEGIN_NAMESPACE
- class Ui_AskOneStringDlg
- {
- public:
- QVBoxLayout *vboxLayout;
- QHBoxLayout *hboxLayout;
- QLabel *valueLabel;
- QLineEdit *lineEdit;
- QDialogButtonBox *buttonBox;
- void setupUi(QDialog *AskOneStringDlg)
- {
- if (AskOneStringDlg->objectName().isEmpty())
- AskOneStringDlg->setObjectName(QString::fromUtf8("AskOneStringDlg"));
- QSizePolicy sizePolicy(QSizePolicy::Preferred, QSizePolicy::Maximum);
- sizePolicy.setHorizontalStretch(0);
- sizePolicy.setVerticalStretch(0);
- sizePolicy.setHeightForWidth(AskOneStringDlg->sizePolicy().hasHeightForWidth());
- AskOneStringDlg->setSizePolicy(sizePolicy);
- vboxLayout = new QVBoxLayout(AskOneStringDlg);
- vboxLayout->setObjectName(QString::fromUtf8("vboxLayout"));
- hboxLayout = new QHBoxLayout();
- hboxLayout->setObjectName(QString::fromUtf8("hboxLayout"));
- valueLabel = new QLabel(AskOneStringDlg);
- valueLabel->setObjectName(QString::fromUtf8("valueLabel"));
- hboxLayout->addWidget(valueLabel);
- lineEdit = new QLineEdit(AskOneStringDlg);
- lineEdit->setObjectName(QString::fromUtf8("lineEdit"));
- hboxLayout->addWidget(lineEdit);
- vboxLayout->addLayout(hboxLayout);
- buttonBox = new QDialogButtonBox(AskOneStringDlg);
- buttonBox->setObjectName(QString::fromUtf8("buttonBox"));
- buttonBox->setOrientation(Qt::Horizontal);
- buttonBox->setStandardButtons(QDialogButtonBox::Cancel|QDialogButtonBox::Ok);
- vboxLayout->addWidget(buttonBox);
- retranslateUi(AskOneStringDlg);
- QObject::connect(buttonBox, SIGNAL(accepted()), AskOneStringDlg, SLOT(accept()));
- QObject::connect(buttonBox, SIGNAL(rejected()), AskOneStringDlg, SLOT(reject()));
- QMetaObject::connectSlotsByName(AskOneStringDlg);
- } // setupUi
- void retranslateUi(QDialog *AskOneStringDlg)
- {
- AskOneStringDlg->setWindowTitle(QCoreApplication::translate("AskOneStringDlg", "Set Name", nullptr));
- valueLabel->setText(QCoreApplication::translate("AskOneStringDlg", "Label", nullptr));
- } // retranslateUi
- };
- namespace Ui {
- class AskOneStringDlg: public Ui_AskOneStringDlg {};
- } // namespace Ui
- QT_END_NAMESPACE
- #endif // UI_ASKONESTRINGDLG_H
|