Sayonara Player
ui_GUI_FailMessageBox.h
1/********************************************************************************
2** Form generated from reading UI file 'GUI_FailMessageBox.ui'
3**
4** Created by: Qt User Interface Compiler version 5.15.5
5**
6** WARNING! All changes made in this file will be lost when recompiling UI file!
7********************************************************************************/
8
9#ifndef UI_GUI_FAILMESSAGEBOX_H
10#define UI_GUI_FAILMESSAGEBOX_H
11
12#include <QtCore/QVariant>
13#include <QtWidgets/QApplication>
14#include <QtWidgets/QCheckBox>
15#include <QtWidgets/QDialog>
16#include <QtWidgets/QFrame>
17#include <QtWidgets/QGridLayout>
18#include <QtWidgets/QHBoxLayout>
19#include <QtWidgets/QHeaderView>
20#include <QtWidgets/QLabel>
21#include <QtWidgets/QPushButton>
22#include <QtWidgets/QSpacerItem>
23#include <QtWidgets/QTableWidget>
24
25QT_BEGIN_NAMESPACE
26
28{
29public:
30 QGridLayout *gridLayout;
31 QHBoxLayout *horizontalLayout;
32 QCheckBox *cb_details;
33 QSpacerItem *horizontalSpacer;
34 QPushButton *btn_ok;
35 QLabel *lab_warning;
36 QTableWidget *tv_files;
37 QFrame *line;
38 QLabel *lab_header;
39
40 void setupUi(QDialog *GUI_FailMessageBox)
41 {
42 if (GUI_FailMessageBox->objectName().isEmpty())
43 GUI_FailMessageBox->setObjectName(QString::fromUtf8("GUI_FailMessageBox"));
44 GUI_FailMessageBox->resize(350, 292);
45 GUI_FailMessageBox->setSizeGripEnabled(true);
46 gridLayout = new QGridLayout(GUI_FailMessageBox);
47 gridLayout->setObjectName(QString::fromUtf8("gridLayout"));
48 horizontalLayout = new QHBoxLayout();
49 horizontalLayout->setObjectName(QString::fromUtf8("horizontalLayout"));
50 cb_details = new QCheckBox(GUI_FailMessageBox);
51 cb_details->setObjectName(QString::fromUtf8("cb_details"));
52
53 horizontalLayout->addWidget(cb_details);
54
55 horizontalSpacer = new QSpacerItem(40, 20, QSizePolicy::Expanding, QSizePolicy::Minimum);
56
57 horizontalLayout->addItem(horizontalSpacer);
58
59 btn_ok = new QPushButton(GUI_FailMessageBox);
60 btn_ok->setObjectName(QString::fromUtf8("btn_ok"));
61 btn_ok->setText(QString::fromUtf8("Ok"));
62
63 horizontalLayout->addWidget(btn_ok);
64
65
66 gridLayout->addLayout(horizontalLayout, 6, 0, 1, 2);
67
68 lab_warning = new QLabel(GUI_FailMessageBox);
69 lab_warning->setObjectName(QString::fromUtf8("lab_warning"));
70 lab_warning->setText(QString::fromUtf8(""));
71
72 gridLayout->addWidget(lab_warning, 1, 0, 1, 2);
73
74 tv_files = new QTableWidget(GUI_FailMessageBox);
75 tv_files->setObjectName(QString::fromUtf8("tv_files"));
76 QSizePolicy sizePolicy(QSizePolicy::Expanding, QSizePolicy::MinimumExpanding);
77 sizePolicy.setHorizontalStretch(0);
78 sizePolicy.setVerticalStretch(0);
79 sizePolicy.setHeightForWidth(tv_files->sizePolicy().hasHeightForWidth());
80 tv_files->setSizePolicy(sizePolicy);
81 tv_files->setEditTriggers(QAbstractItemView::NoEditTriggers);
82 tv_files->setTextElideMode(Qt::ElideMiddle);
83 tv_files->setCornerButtonEnabled(false);
84 tv_files->verticalHeader()->setVisible(false);
85
86 gridLayout->addWidget(tv_files, 4, 0, 1, 2);
87
88 line = new QFrame(GUI_FailMessageBox);
89 line->setObjectName(QString::fromUtf8("line"));
90 line->setFrameShape(QFrame::HLine);
91 line->setFrameShadow(QFrame::Sunken);
92
93 gridLayout->addWidget(line, 2, 0, 1, 2);
94
95 lab_header = new QLabel(GUI_FailMessageBox);
96 lab_header->setObjectName(QString::fromUtf8("lab_header"));
97 QFont font;
98 font.setBold(true);
99 font.setWeight(75);
100 lab_header->setFont(font);
101 lab_header->setText(QString::fromUtf8("Warning"));
102
103 gridLayout->addWidget(lab_header, 0, 0, 1, 2);
104
105
106 retranslateUi(GUI_FailMessageBox);
107 QObject::connect(cb_details, SIGNAL(toggled(bool)), tv_files, SLOT(setVisible(bool)));
108 QObject::connect(btn_ok, SIGNAL(clicked()), GUI_FailMessageBox, SLOT(close()));
109
110 QMetaObject::connectSlotsByName(GUI_FailMessageBox);
111 } // setupUi
112
113 void retranslateUi(QDialog *GUI_FailMessageBox)
114 {
115 cb_details->setText(QCoreApplication::translate("GUI_FailMessageBox", "Details", nullptr));
116 (void)GUI_FailMessageBox;
117 } // retranslateUi
118
119};
120
121namespace Ui {
123} // namespace Ui
124
125QT_END_NAMESPACE
126
127#endif // UI_GUI_FAILMESSAGEBOX_H
The GUI_FailMessageBox class.
Definition: GUI_FailMessageBox.h:39
Definition: ui_GUI_FailMessageBox.h:122
Definition: ui_GUI_FailMessageBox.h:28