9 #ifndef UI_GUI_LOGGER_H
10 #define UI_GUI_LOGGER_H
12 #include <QtCore/QVariant>
13 #include <QtWidgets/QApplication>
14 #include <QtWidgets/QComboBox>
15 #include <QtWidgets/QGridLayout>
16 #include <QtWidgets/QHBoxLayout>
17 #include <QtWidgets/QPushButton>
18 #include <QtWidgets/QSpacerItem>
19 #include <QtWidgets/QTextEdit>
20 #include <QtWidgets/QWidget>
27 QGridLayout *gridLayout;
28 QHBoxLayout *horizontalLayout;
29 QPushButton *btn_save;
30 QComboBox *combo_modules;
31 QSpacerItem *horizontalSpacer;
32 QPushButton *btn_close;
38 GUI_Logger->setObjectName(QString::fromUtf8(
"GUI_Logger"));
41 gridLayout->setObjectName(QString::fromUtf8(
"gridLayout"));
42 horizontalLayout =
new QHBoxLayout();
43 horizontalLayout->setObjectName(QString::fromUtf8(
"horizontalLayout"));
45 btn_save->setObjectName(QString::fromUtf8(
"btn_save"));
46 btn_save->setText(QString::fromUtf8(
"Save"));
48 horizontalLayout->addWidget(btn_save);
51 combo_modules->setObjectName(QString::fromUtf8(
"combo_modules"));
53 horizontalLayout->addWidget(combo_modules);
55 horizontalSpacer =
new QSpacerItem(40, 20, QSizePolicy::Expanding, QSizePolicy::Minimum);
57 horizontalLayout->addItem(horizontalSpacer);
60 btn_close->setObjectName(QString::fromUtf8(
"btn_close"));
61 btn_close->setText(QString::fromUtf8(
"Close"));
63 horizontalLayout->addWidget(btn_close);
66 gridLayout->addLayout(horizontalLayout, 1, 0, 1, 1);
69 te_log->setObjectName(QString::fromUtf8(
"te_log"));
71 gridLayout->addWidget(te_log, 0, 0, 1, 2);
92 #endif // UI_GUI_LOGGER_H