10#define UI_GUI_LOGGER_H
12#include <QtCore/QVariant>
13#include <QtWidgets/QApplication>
14#include <QtWidgets/QDialogButtonBox>
15#include <QtWidgets/QGridLayout>
16#include <QtWidgets/QHBoxLayout>
17#include <QtWidgets/QLabel>
18#include <QtWidgets/QTextEdit>
19#include <QtWidgets/QWidget>
20#include "Gui/Utils/Widgets/ComboBox.h"
27 QGridLayout *gridLayout;
29 QDialogButtonBox *buttonBox;
30 QHBoxLayout *horizontalLayout;
33 QHBoxLayout *horizontalLayout_2;
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));
Definition: GUI_Logger.h:53
Definition: ComboBox.h:31
Definition: ui_GUI_Logger.h:101
Definition: ui_GUI_Logger.h:25