-
Notifications
You must be signed in to change notification settings - Fork 35
/
ui_widget.h
89 lines (69 loc) · 2.61 KB
/
ui_widget.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
/********************************************************************************
** Form generated from reading UI file 'widget.ui'
**
** Created: Wed 10. Jul 17:33:06 2013
** by: Qt User Interface Compiler version 4.8.1
**
** WARNING! All changes made in this file will be lost when recompiling UI file!
********************************************************************************/
#ifndef UI_WIDGET_H
#define UI_WIDGET_H
#include <QtCore/QVariant>
#include <QtWidgets/QAction>
#include <QtWidgets/QApplication>
#include <QtWidgets/QButtonGroup>
#include <QtWidgets/QGridLayout>
#include <QtWidgets/QHeaderView>
#include <QtWidgets/QLabel>
#include <QtWidgets/QLineEdit>
#include <QtWidgets/QPlainTextEdit>
#include <QtWidgets/QPushButton>
#include <QtWidgets/QWidget>
QT_BEGIN_NAMESPACE
class Ui_Widget
{
public:
QGridLayout *gridLayout;
QLabel *status;
QPlainTextEdit *log;
QLineEdit *cmdLine;
QPushButton *sendButton;
void setupUi(QWidget *Widget)
{
if (Widget->objectName().isEmpty())
Widget->setObjectName(QString::fromUtf8("Widget"));
Widget->resize(400, 300);
gridLayout = new QGridLayout(Widget);
gridLayout->setSpacing(6);
gridLayout->setContentsMargins(11, 11, 11, 11);
gridLayout->setObjectName(QString::fromUtf8("gridLayout"));
status = new QLabel(Widget);
status->setObjectName(QString::fromUtf8("status"));
status->setAlignment(Qt::AlignCenter);
gridLayout->addWidget(status, 0, 0, 1, 3);
log = new QPlainTextEdit(Widget);
log->setObjectName(QString::fromUtf8("log"));
log->setReadOnly(true);
gridLayout->addWidget(log, 1, 0, 1, 3);
cmdLine = new QLineEdit(Widget);
cmdLine->setObjectName(QString::fromUtf8("cmdLine"));
gridLayout->addWidget(cmdLine, 2, 0, 1, 2);
sendButton = new QPushButton(Widget);
sendButton->setObjectName(QString::fromUtf8("sendButton"));
gridLayout->addWidget(sendButton, 2, 2, 1, 1);
retranslateUi(Widget);
QObject::connect(cmdLine, SIGNAL(returnPressed()), sendButton, SLOT(click()));
QMetaObject::connectSlotsByName(Widget);
} // setupUi
void retranslateUi(QWidget *Widget)
{
Widget->setWindowTitle(QApplication::translate("Widget", "mlkj's Private Server", 0));
status->setText(QApplication::translate("Widget", "Server status", 0));
sendButton->setText(QApplication::translate("Widget", "Send", 0));
} // retranslateUi
};
namespace Ui {
class Widget: public Ui_Widget {};
} // namespace Ui
QT_END_NAMESPACE
#endif // UI_WIDGET_H