66 lines
2.1 KiB
C++
66 lines
2.1 KiB
C++
/********************************************************************************
|
|
** Form generated from reading UI file 'TCPHostConfig.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_TCPHOSTCONFIG_H
|
|
#define UI_TCPHOSTCONFIG_H
|
|
|
|
#include <QtCore/QVariant>
|
|
#include <QtGui/QIcon>
|
|
#include <QtWidgets/QApplication>
|
|
#include <QtWidgets/QDialog>
|
|
#include <QtWidgets/QDialogButtonBox>
|
|
#include <QtWidgets/QTextEdit>
|
|
|
|
QT_BEGIN_NAMESPACE
|
|
|
|
class Ui_Dialog
|
|
{
|
|
public:
|
|
QDialogButtonBox *buttonBox;
|
|
QTextEdit *Host;
|
|
|
|
void setupUi(QDialog *Dialog)
|
|
{
|
|
if (Dialog->objectName().isEmpty())
|
|
Dialog->setObjectName(QString::fromUtf8("Dialog"));
|
|
Dialog->resize(400, 300);
|
|
QIcon icon;
|
|
icon.addFile(QString::fromUtf8("QtTermTCP.ico"), QSize(), QIcon::Normal, QIcon::Off);
|
|
Dialog->setWindowIcon(icon);
|
|
buttonBox = new QDialogButtonBox(Dialog);
|
|
buttonBox->setObjectName(QString::fromUtf8("buttonBox"));
|
|
buttonBox->setGeometry(QRect(30, 240, 341, 32));
|
|
buttonBox->setOrientation(Qt::Horizontal);
|
|
buttonBox->setStandardButtons(QDialogButtonBox::Cancel|QDialogButtonBox::Save);
|
|
buttonBox->setCenterButtons(true);
|
|
Host = new QTextEdit(Dialog);
|
|
Host->setObjectName(QString::fromUtf8("Host"));
|
|
Host->setGeometry(QRect(184, 44, 104, 23));
|
|
|
|
retranslateUi(Dialog);
|
|
QObject::connect(buttonBox, SIGNAL(accepted()), Dialog, SLOT(accept()));
|
|
QObject::connect(buttonBox, SIGNAL(rejected()), Dialog, SLOT(reject()));
|
|
|
|
QMetaObject::connectSlotsByName(Dialog);
|
|
} // setupUi
|
|
|
|
void retranslateUi(QDialog *Dialog)
|
|
{
|
|
Dialog->setWindowTitle(QCoreApplication::translate("Dialog", "TCP Host Config", nullptr));
|
|
} // retranslateUi
|
|
|
|
};
|
|
|
|
namespace Ui {
|
|
class Dialog: public Ui_Dialog {};
|
|
} // namespace Ui
|
|
|
|
QT_END_NAMESPACE
|
|
|
|
#endif // UI_TCPHOSTCONFIG_H
|