123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384 |
- /********************************************************************************
- ** Form generated from reading UI file 'DialogButtonBottom.ui'
- **
- ** Created by: Qt User Interface Compiler version 5.14.2
- **
- ** WARNING! All changes made in this file will be lost when recompiling UI file!
- ********************************************************************************/
- #ifndef UI_DIALOGBUTTONBOTTOM_H
- #define UI_DIALOGBUTTONBOTTOM_H
- #include <QtCore/QVariant>
- #include <QtWidgets/QApplication>
- #include <QtWidgets/QDialog>
- #include <QtWidgets/QHBoxLayout>
- #include <QtWidgets/QPushButton>
- #include <QtWidgets/QSpacerItem>
- #include <QtWidgets/QWidget>
- QT_BEGIN_NAMESPACE
- class Ui_Dialog
- {
- public:
- QWidget *layoutWidget;
- QHBoxLayout *hboxLayout;
- QSpacerItem *spacerItem;
- QPushButton *okButton;
- QPushButton *cancelButton;
- void setupUi(QDialog *Dialog)
- {
- if (Dialog->objectName().isEmpty())
- Dialog->setObjectName(QString::fromUtf8("Dialog"));
- Dialog->resize(400, 300);
- layoutWidget = new QWidget(Dialog);
- layoutWidget->setObjectName(QString::fromUtf8("layoutWidget"));
- layoutWidget->setGeometry(QRect(20, 250, 351, 33));
- hboxLayout = new QHBoxLayout(layoutWidget);
- #ifndef Q_OS_MAC
- hboxLayout->setSpacing(6);
- #endif
- hboxLayout->setContentsMargins(0, 0, 0, 0);
- hboxLayout->setObjectName(QString::fromUtf8("hboxLayout"));
- hboxLayout->setContentsMargins(0, 0, 0, 0);
- spacerItem = new QSpacerItem(131, 31, QSizePolicy::Expanding, QSizePolicy::Minimum);
- hboxLayout->addItem(spacerItem);
- okButton = new QPushButton(layoutWidget);
- okButton->setObjectName(QString::fromUtf8("okButton"));
- hboxLayout->addWidget(okButton);
- cancelButton = new QPushButton(layoutWidget);
- cancelButton->setObjectName(QString::fromUtf8("cancelButton"));
- hboxLayout->addWidget(cancelButton);
- retranslateUi(Dialog);
- QObject::connect(okButton, SIGNAL(clicked()), Dialog, SLOT(accept()));
- QObject::connect(cancelButton, SIGNAL(clicked()), Dialog, SLOT(reject()));
- QMetaObject::connectSlotsByName(Dialog);
- } // setupUi
- void retranslateUi(QDialog *Dialog)
- {
- Dialog->setWindowTitle(QCoreApplication::translate("Dialog", "Dialog", nullptr));
- okButton->setText(QCoreApplication::translate("Dialog", "OK", nullptr));
- cancelButton->setText(QCoreApplication::translate("Dialog", "Cancel", nullptr));
- } // retranslateUi
- };
- namespace Ui {
- class Dialog: public Ui_Dialog {};
- } // namespace Ui
- QT_END_NAMESPACE
- #endif // UI_DIALOGBUTTONBOTTOM_H
|