| 1 | /******************************************************************************** | 
| 2 | ** Form generated from reading UI file 'pindisplay.ui' | 
| 3 | ** | 
| 4 | ** Created by: Qt User Interface Compiler version 5.15.9 | 
| 5 | ** | 
| 6 | ** WARNING! All changes made in this file will be lost when recompiling UI file! | 
| 7 | ********************************************************************************/ | 
| 8 |  | 
| 9 | #ifndef UI_PINDISPLAY_H | 
| 10 | #define UI_PINDISPLAY_H | 
| 11 |  | 
| 12 | #include <QtCore/QVariant> | 
| 13 | #include <QtWidgets/QApplication> | 
| 14 | #include <QtWidgets/QDialog> | 
| 15 | #include <QtWidgets/QDialogButtonBox> | 
| 16 | #include <QtWidgets/QLabel> | 
| 17 | #include <QtWidgets/QVBoxLayout> | 
| 18 |  | 
| 19 | QT_BEGIN_NAMESPACE | 
| 20 |  | 
| 21 | class Ui_pinDisplay | 
| 22 | { | 
| 23 | public: | 
| 24 |     QVBoxLayout *verticalLayout; | 
| 25 |     QLabel *pin; | 
| 26 |     QLabel *label; | 
| 27 |     QDialogButtonBox *buttonBox; | 
| 28 |  | 
| 29 |     void setupUi(QDialog *pinDisplay) | 
| 30 |     { | 
| 31 |         if (pinDisplay->objectName().isEmpty()) | 
| 32 |             pinDisplay->setObjectName(QString::fromUtf8(str: "pinDisplay" )); | 
| 33 |         pinDisplay->resize(w: 240, h: 153); | 
| 34 |         verticalLayout = new QVBoxLayout(pinDisplay); | 
| 35 |         verticalLayout->setObjectName(QString::fromUtf8(str: "verticalLayout" )); | 
| 36 |         pin = new QLabel(pinDisplay); | 
| 37 |         pin->setObjectName(QString::fromUtf8(str: "pin" )); | 
| 38 |         QFont font; | 
| 39 |         font.setFamily(QString::fromUtf8(str: "Monospace" )); | 
| 40 |         font.setPointSize(24); | 
| 41 |         font.setBold(true); | 
| 42 |         font.setWeight(75); | 
| 43 |         pin->setFont(font); | 
| 44 |         pin->setAlignment(Qt::AlignCenter); | 
| 45 |  | 
| 46 |         verticalLayout->addWidget(pin); | 
| 47 |  | 
| 48 |         label = new QLabel(pinDisplay); | 
| 49 |         label->setObjectName(QString::fromUtf8(str: "label" )); | 
| 50 |  | 
| 51 |         verticalLayout->addWidget(label); | 
| 52 |  | 
| 53 |         buttonBox = new QDialogButtonBox(pinDisplay); | 
| 54 |         buttonBox->setObjectName(QString::fromUtf8(str: "buttonBox" )); | 
| 55 |         buttonBox->setOrientation(Qt::Horizontal); | 
| 56 |         buttonBox->setStandardButtons(QDialogButtonBox::Ok); | 
| 57 |  | 
| 58 |         verticalLayout->addWidget(buttonBox); | 
| 59 |  | 
| 60 |  | 
| 61 |         retranslateUi(pinDisplay); | 
| 62 |         QObject::connect(sender: buttonBox, SIGNAL(accepted()), receiver: pinDisplay, SLOT(accept())); | 
| 63 |         QObject::connect(sender: buttonBox, SIGNAL(rejected()), receiver: pinDisplay, SLOT(reject())); | 
| 64 |  | 
| 65 |         QMetaObject::connectSlotsByName(o: pinDisplay); | 
| 66 |     } // setupUi | 
| 67 |  | 
| 68 |     void retranslateUi(QDialog *pinDisplay) | 
| 69 |     { | 
| 70 |         pinDisplay->setWindowTitle(QCoreApplication::translate(context: "pinDisplay" , key: "Enter Pin Code" , disambiguation: nullptr)); | 
| 71 |         pin->setText(QCoreApplication::translate(context: "pinDisplay" , key: "012345" , disambiguation: nullptr)); | 
| 72 |         label->setText(QCoreApplication::translate(context: "pinDisplay" , key: "TextLabel" , disambiguation: nullptr)); | 
| 73 |     } // retranslateUi | 
| 74 |  | 
| 75 | }; | 
| 76 |  | 
| 77 | namespace Ui { | 
| 78 |     class pinDisplay: public Ui_pinDisplay {}; | 
| 79 | } // namespace Ui | 
| 80 |  | 
| 81 | QT_END_NAMESPACE | 
| 82 |  | 
| 83 | #endif // UI_PINDISPLAY_H | 
| 84 |  |