Sayonara Player
ui_GUI_Logger.h
1 /********************************************************************************
2 ** Form generated from reading UI file 'GUI_Logger.ui'
3 **
4 ** Created by: Qt User Interface Compiler version 5.14.2
5 **
6 ** WARNING! All changes made in this file will be lost when recompiling UI file!
7 ********************************************************************************/
8 
9 #ifndef UI_GUI_LOGGER_H
10 #define UI_GUI_LOGGER_H
11 
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>
21 
22 QT_BEGIN_NAMESPACE
23 
25 {
26 public:
27  QGridLayout *gridLayout;
28  QTextEdit *teLog;
29  QDialogButtonBox *buttonBox;
30  QHBoxLayout *horizontalLayout;
31  QLabel *labModule;
32  QComboBox *comboModules;
33  QHBoxLayout *horizontalLayout_2;
34  QLabel *labLogLevel;
35  QComboBox *comboLogLevel;
36 
37  void setupUi(QWidget *GUI_Logger)
38  {
39  if (GUI_Logger->objectName().isEmpty())
40  GUI_Logger->setObjectName(QString::fromUtf8("GUI_Logger"));
41  GUI_Logger->resize(684, 521);
42  gridLayout = new QGridLayout(GUI_Logger);
43  gridLayout->setObjectName(QString::fromUtf8("gridLayout"));
44  teLog = new QTextEdit(GUI_Logger);
45  teLog->setObjectName(QString::fromUtf8("teLog"));
46 
47  gridLayout->addWidget(teLog, 3, 0, 1, 1);
48 
49  buttonBox = new QDialogButtonBox(GUI_Logger);
50  buttonBox->setObjectName(QString::fromUtf8("buttonBox"));
51  buttonBox->setStandardButtons(QDialogButtonBox::Close|QDialogButtonBox::Save);
52 
53  gridLayout->addWidget(buttonBox, 5, 0, 1, 1);
54 
55  horizontalLayout = new QHBoxLayout();
56  horizontalLayout->setObjectName(QString::fromUtf8("horizontalLayout"));
57  labModule = new QLabel(GUI_Logger);
58  labModule->setObjectName(QString::fromUtf8("labModule"));
59 
60  horizontalLayout->addWidget(labModule);
61 
62  comboModules = new QComboBox(GUI_Logger);
63  comboModules->setObjectName(QString::fromUtf8("comboModules"));
64 
65  horizontalLayout->addWidget(comboModules);
66 
67 
68  gridLayout->addLayout(horizontalLayout, 2, 0, 1, 1);
69 
70  horizontalLayout_2 = new QHBoxLayout();
71  horizontalLayout_2->setObjectName(QString::fromUtf8("horizontalLayout_2"));
72  labLogLevel = new QLabel(GUI_Logger);
73  labLogLevel->setObjectName(QString::fromUtf8("labLogLevel"));
74  labLogLevel->setText(QString::fromUtf8("Log Level"));
75 
76  horizontalLayout_2->addWidget(labLogLevel);
77 
78  comboLogLevel = new QComboBox(GUI_Logger);
79  comboLogLevel->setObjectName(QString::fromUtf8("comboLogLevel"));
80 
81  horizontalLayout_2->addWidget(comboLogLevel);
82 
83 
84  gridLayout->addLayout(horizontalLayout_2, 4, 0, 1, 1);
85 
86 
87  retranslateUi(GUI_Logger);
88 
89  QMetaObject::connectSlotsByName(GUI_Logger);
90  } // setupUi
91 
92  void retranslateUi(QWidget *GUI_Logger)
93  {
94  labModule->setText(QCoreApplication::translate("GUI_Logger", "Module", nullptr));
95  (void)GUI_Logger;
96  } // retranslateUi
97 
98 };
99 
100 namespace Ui {
101  class GUI_Logger: public Ui_GUI_Logger {};
102 } // namespace Ui
103 
104 QT_END_NAMESPACE
105 
106 #endif // UI_GUI_LOGGER_H
Ui::GUI_Logger
Definition: ui_GUI_Logger.h:101
Ui_GUI_Logger
Definition: ui_GUI_Logger.h:25
GUI_Logger
Definition: GUI_Logger.h:54