1/********************************************************************************
2** Form generated from reading UI file 'infomessagebox.ui'
3**
4** Created by: Qt User Interface Compiler version 5.15.3
5**
6** WARNING! All changes made in this file will be lost when recompiling UI file!
7********************************************************************************/
8
9#ifndef UI_INFOMESSAGEBOX_H
10#define UI_INFOMESSAGEBOX_H
11
12#include <QtCore/QVariant>
13#include <QtWidgets/QApplication>
14#include <QtWidgets/QDialog>
15#include <QtWidgets/QFrame>
16#include <QtWidgets/QHBoxLayout>
17#include <QtWidgets/QPushButton>
18#include <QtWidgets/QSpacerItem>
19#include <QtWidgets/QTextEdit>
20#include <QtWidgets/QVBoxLayout>
21
22QT_BEGIN_NAMESPACE
23
24class Ui_InfoMessageBox
25{
26public:
27 QVBoxLayout *verticalLayout;
28 QTextEdit *txtMessage;
29 QFrame *frame;
30 QHBoxLayout *horizontalLayout;
31 QSpacerItem *horizontalSpacer;
32 QPushButton *btnOk;
33 QSpacerItem *horizontalSpacer_2;
34
35 void setupUi(QDialog *InfoMessageBox)
36 {
37 if (InfoMessageBox->objectName().isEmpty())
38 InfoMessageBox->setObjectName(QString::fromUtf8("InfoMessageBox"));
39 InfoMessageBox->resize(617, 459);
40 verticalLayout = new QVBoxLayout(InfoMessageBox);
41 verticalLayout->setObjectName(QString::fromUtf8("verticalLayout"));
42 txtMessage = new QTextEdit(InfoMessageBox);
43 txtMessage->setObjectName(QString::fromUtf8("txtMessage"));
44 txtMessage->setReadOnly(true);
45
46 verticalLayout->addWidget(txtMessage);
47
48 frame = new QFrame(InfoMessageBox);
49 frame->setObjectName(QString::fromUtf8("frame"));
50 frame->setFrameShape(QFrame::StyledPanel);
51 frame->setFrameShadow(QFrame::Raised);
52 horizontalLayout = new QHBoxLayout(frame);
53 horizontalLayout->setObjectName(QString::fromUtf8("horizontalLayout"));
54 horizontalLayout->setContentsMargins(0, 0, 0, 0);
55 horizontalSpacer = new QSpacerItem(40, 20, QSizePolicy::Expanding, QSizePolicy::Minimum);
56
57 horizontalLayout->addItem(horizontalSpacer);
58
59 btnOk = new QPushButton(frame);
60 btnOk->setObjectName(QString::fromUtf8("btnOk"));
61
62 horizontalLayout->addWidget(btnOk);
63
64 horizontalSpacer_2 = new QSpacerItem(40, 20, QSizePolicy::Expanding, QSizePolicy::Minimum);
65
66 horizontalLayout->addItem(horizontalSpacer_2);
67
68
69 verticalLayout->addWidget(frame);
70
71
72 retranslateUi(InfoMessageBox);
73
74 QMetaObject::connectSlotsByName(InfoMessageBox);
75 } // setupUi
76
77 void retranslateUi(QDialog *InfoMessageBox)
78 {
79 InfoMessageBox->setWindowTitle(QCoreApplication::translate("InfoMessageBox", "Message", nullptr));
80 btnOk->setText(QCoreApplication::translate("InfoMessageBox", "Ok", nullptr));
81 } // retranslateUi
82
83};
84
85namespace Ui {
86 class InfoMessageBox: public Ui_InfoMessageBox {};
87} // namespace Ui
88
89QT_END_NAMESPACE
90
91#endif // UI_INFOMESSAGEBOX_H
92