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/QDialogButtonBox>
16 #include <QtWidgets/QGridLayout>
17 #include <QtWidgets/QHBoxLayout>
18 #include <QtWidgets/QLabel>
19 #include <QtWidgets/QTextEdit>
20 #include <QtWidgets/QWidget>
27 QGridLayout *gridLayout;
29 QDialogButtonBox *buttonBox;
30 QHBoxLayout *horizontalLayout;
32 QComboBox *comboModules;
33 QHBoxLayout *horizontalLayout_2;
35 QComboBox *comboLogLevel;
40 GUI_Logger->setObjectName(QString::fromUtf8(
"GUI_Logger"));
43 gridLayout->setObjectName(QString::fromUtf8(
"gridLayout"));
45 teLog->setObjectName(QString::fromUtf8(
"teLog"));
47 gridLayout->addWidget(teLog, 3, 0, 1, 1);
50 buttonBox->setObjectName(QString::fromUtf8(
"buttonBox"));
51 buttonBox->setStandardButtons(QDialogButtonBox::Close|QDialogButtonBox::Save);
53 gridLayout->addWidget(buttonBox, 5, 0, 1, 1);
55 horizontalLayout =
new QHBoxLayout();
56 horizontalLayout->setObjectName(QString::fromUtf8(
"horizontalLayout"));
58 labModule->setObjectName(QString::fromUtf8(
"labModule"));
60 horizontalLayout->addWidget(labModule);
63 comboModules->setObjectName(QString::fromUtf8(
"comboModules"));
65 horizontalLayout->addWidget(comboModules);
68 gridLayout->addLayout(horizontalLayout, 2, 0, 1, 1);
70 horizontalLayout_2 =
new QHBoxLayout();
71 horizontalLayout_2->setObjectName(QString::fromUtf8(
"horizontalLayout_2"));
73 labLogLevel->setObjectName(QString::fromUtf8(
"labLogLevel"));
74 labLogLevel->setText(QString::fromUtf8(
"Log Level"));
76 horizontalLayout_2->addWidget(labLogLevel);
79 comboLogLevel->setObjectName(QString::fromUtf8(
"comboLogLevel"));
81 horizontalLayout_2->addWidget(comboLogLevel);
84 gridLayout->addLayout(horizontalLayout_2, 4, 0, 1, 1);
94 labModule->setText(QCoreApplication::translate(
"GUI_Logger",
"Module",
nullptr));
106 #endif // UI_GUI_LOGGER_H