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