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.12.5
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/QGridLayout>
16 #include <QtWidgets/QHBoxLayout>
17 #include <QtWidgets/QPushButton>
18 #include <QtWidgets/QSpacerItem>
19 #include <QtWidgets/QTextEdit>
20 #include <QtWidgets/QWidget>
21 
22 QT_BEGIN_NAMESPACE
23 
25 {
26 public:
27  QGridLayout *gridLayout;
28  QHBoxLayout *horizontalLayout;
29  QPushButton *btn_save;
30  QComboBox *combo_modules;
31  QSpacerItem *horizontalSpacer;
32  QPushButton *btn_close;
33  QTextEdit *te_log;
34 
35  void setupUi(QWidget *GUI_Logger)
36  {
37  if (GUI_Logger->objectName().isEmpty())
38  GUI_Logger->setObjectName(QString::fromUtf8("GUI_Logger"));
39  GUI_Logger->resize(684, 521);
40  gridLayout = new QGridLayout(GUI_Logger);
41  gridLayout->setObjectName(QString::fromUtf8("gridLayout"));
42  horizontalLayout = new QHBoxLayout();
43  horizontalLayout->setObjectName(QString::fromUtf8("horizontalLayout"));
44  btn_save = new QPushButton(GUI_Logger);
45  btn_save->setObjectName(QString::fromUtf8("btn_save"));
46  btn_save->setText(QString::fromUtf8("Save"));
47 
48  horizontalLayout->addWidget(btn_save);
49 
50  combo_modules = new QComboBox(GUI_Logger);
51  combo_modules->setObjectName(QString::fromUtf8("combo_modules"));
52 
53  horizontalLayout->addWidget(combo_modules);
54 
55  horizontalSpacer = new QSpacerItem(40, 20, QSizePolicy::Expanding, QSizePolicy::Minimum);
56 
57  horizontalLayout->addItem(horizontalSpacer);
58 
59  btn_close = new QPushButton(GUI_Logger);
60  btn_close->setObjectName(QString::fromUtf8("btn_close"));
61  btn_close->setText(QString::fromUtf8("Close"));
62 
63  horizontalLayout->addWidget(btn_close);
64 
65 
66  gridLayout->addLayout(horizontalLayout, 1, 0, 1, 1);
67 
68  te_log = new QTextEdit(GUI_Logger);
69  te_log->setObjectName(QString::fromUtf8("te_log"));
70 
71  gridLayout->addWidget(te_log, 0, 0, 1, 2);
72 
73 
74  retranslateUi(GUI_Logger);
75 
76  QMetaObject::connectSlotsByName(GUI_Logger);
77  } // setupUi
78 
79  void retranslateUi(QWidget *GUI_Logger)
80  {
81  Q_UNUSED(GUI_Logger);
82  } // retranslateUi
83 
84 };
85 
86 namespace Ui {
87  class GUI_Logger: public Ui_GUI_Logger {};
88 } // namespace Ui
89 
90 QT_END_NAMESPACE
91 
92 #endif // UI_GUI_LOGGER_H
Definition: ui_GUI_Logger.h:87
Definition: GUI_Logger.h:54
Definition: ui_GUI_Logger.h:24