You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
87 lines
2.5 KiB
C
87 lines
2.5 KiB
C
2 years ago
|
/********************************************************************************
|
||
|
** Form generated from reading UI file 'infotext.ui'
|
||
|
**
|
||
|
** Created by: Qt User Interface Compiler version 5.15.3
|
||
|
**
|
||
|
** WARNING! All changes made in this file will be lost when recompiling UI file!
|
||
|
********************************************************************************/
|
||
|
|
||
|
#ifndef UI_INFOTEXT_H
|
||
|
#define UI_INFOTEXT_H
|
||
|
|
||
|
#include <QtCore/QVariant>
|
||
|
#include <QtWidgets/QApplication>
|
||
|
#include <QtWidgets/QDialog>
|
||
|
#include <QtWidgets/QHBoxLayout>
|
||
|
#include <QtWidgets/QPushButton>
|
||
|
#include <QtWidgets/QSpacerItem>
|
||
|
#include <QtWidgets/QTextEdit>
|
||
|
#include <QtWidgets/QVBoxLayout>
|
||
|
|
||
|
QT_BEGIN_NAMESPACE
|
||
|
|
||
|
class Ui_InfoText
|
||
|
{
|
||
|
public:
|
||
|
QVBoxLayout *vboxLayout;
|
||
|
QTextEdit *textEdit;
|
||
|
QHBoxLayout *hboxLayout;
|
||
|
QSpacerItem *spacerItem;
|
||
|
QPushButton *closeButton;
|
||
|
|
||
|
void setupUi(QDialog *InfoText)
|
||
|
{
|
||
|
if (InfoText->objectName().isEmpty())
|
||
|
InfoText->setObjectName(QString::fromUtf8("InfoText"));
|
||
|
InfoText->resize(319, 336);
|
||
|
vboxLayout = new QVBoxLayout(InfoText);
|
||
|
vboxLayout->setSpacing(4);
|
||
|
vboxLayout->setContentsMargins(6, 6, 6, 6);
|
||
|
vboxLayout->setObjectName(QString::fromUtf8("vboxLayout"));
|
||
|
textEdit = new QTextEdit(InfoText);
|
||
|
textEdit->setObjectName(QString::fromUtf8("textEdit"));
|
||
|
textEdit->setReadOnly(true);
|
||
|
|
||
|
vboxLayout->addWidget(textEdit);
|
||
|
|
||
|
hboxLayout = new QHBoxLayout();
|
||
|
#ifndef Q_OS_MAC
|
||
|
hboxLayout->setSpacing(6);
|
||
|
#endif
|
||
|
hboxLayout->setContentsMargins(0, 0, 0, 0);
|
||
|
hboxLayout->setObjectName(QString::fromUtf8("hboxLayout"));
|
||
|
spacerItem = new QSpacerItem(131, 31, QSizePolicy::Expanding, QSizePolicy::Minimum);
|
||
|
|
||
|
hboxLayout->addItem(spacerItem);
|
||
|
|
||
|
closeButton = new QPushButton(InfoText);
|
||
|
closeButton->setObjectName(QString::fromUtf8("closeButton"));
|
||
|
|
||
|
hboxLayout->addWidget(closeButton);
|
||
|
|
||
|
|
||
|
vboxLayout->addLayout(hboxLayout);
|
||
|
|
||
|
|
||
|
retranslateUi(InfoText);
|
||
|
QObject::connect(closeButton, SIGNAL(clicked()), InfoText, SLOT(reject()));
|
||
|
|
||
|
QMetaObject::connectSlotsByName(InfoText);
|
||
|
} // setupUi
|
||
|
|
||
|
void retranslateUi(QDialog *InfoText)
|
||
|
{
|
||
|
InfoText->setWindowTitle(QCoreApplication::translate("InfoText", "Information", nullptr));
|
||
|
closeButton->setText(QCoreApplication::translate("InfoText", "Close", nullptr));
|
||
|
} // retranslateUi
|
||
|
|
||
|
};
|
||
|
|
||
|
namespace Ui {
|
||
|
class InfoText: public Ui_InfoText {};
|
||
|
} // namespace Ui
|
||
|
|
||
|
QT_END_NAMESPACE
|
||
|
|
||
|
#endif // UI_INFOTEXT_H
|