Sayonara Player
ui_GUI_Shortcuts.h
1 /********************************************************************************
2 ** Form generated from reading UI file 'GUI_Shortcuts.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_SHORTCUTS_H
10 #define UI_GUI_SHORTCUTS_H
11 
12 #include <QtCore/QVariant>
13 #include <QtWidgets/QApplication>
14 #include <QtWidgets/QCheckBox>
15 #include <QtWidgets/QGridLayout>
16 #include <QtWidgets/QHBoxLayout>
17 #include <QtWidgets/QScrollArea>
18 #include <QtWidgets/QSpacerItem>
19 #include <QtWidgets/QVBoxLayout>
20 #include <QtWidgets/QWidget>
21 
22 QT_BEGIN_NAMESPACE
23 
25 {
26 public:
27  QGridLayout *gridLayout;
28  QScrollArea *scrollArea;
29  QWidget *scrollAreaWidgetContents;
30  QVBoxLayout *verticalLayout_2;
31  QVBoxLayout *layout_entries;
32  QHBoxLayout *horizontalLayout_2;
33  QCheckBox *cb_test;
34  QSpacerItem *horizontalSpacer_2;
35 
36  void setupUi(QWidget *GUI_Shortcuts)
37  {
38  if (GUI_Shortcuts->objectName().isEmpty())
39  GUI_Shortcuts->setObjectName(QStringLiteral("GUI_Shortcuts"));
40  GUI_Shortcuts->resize(498, 478);
41  gridLayout = new QGridLayout(GUI_Shortcuts);
42  gridLayout->setObjectName(QStringLiteral("gridLayout"));
43  scrollArea = new QScrollArea(GUI_Shortcuts);
44  scrollArea->setObjectName(QStringLiteral("scrollArea"));
45  scrollArea->setWidgetResizable(true);
46  scrollAreaWidgetContents = new QWidget();
47  scrollAreaWidgetContents->setObjectName(QStringLiteral("scrollAreaWidgetContents"));
48  scrollAreaWidgetContents->setGeometry(QRect(0, 0, 480, 432));
49  verticalLayout_2 = new QVBoxLayout(scrollAreaWidgetContents);
50  verticalLayout_2->setObjectName(QStringLiteral("verticalLayout_2"));
51  layout_entries = new QVBoxLayout();
52  layout_entries->setObjectName(QStringLiteral("layout_entries"));
53 
54  verticalLayout_2->addLayout(layout_entries);
55 
56  scrollArea->setWidget(scrollAreaWidgetContents);
57 
58  gridLayout->addWidget(scrollArea, 2, 0, 1, 1);
59 
60  horizontalLayout_2 = new QHBoxLayout();
61  horizontalLayout_2->setObjectName(QStringLiteral("horizontalLayout_2"));
62  cb_test = new QCheckBox(GUI_Shortcuts);
63  cb_test->setObjectName(QStringLiteral("cb_test"));
64 
65  horizontalLayout_2->addWidget(cb_test);
66 
67  horizontalSpacer_2 = new QSpacerItem(40, 20, QSizePolicy::Expanding, QSizePolicy::Minimum);
68 
69  horizontalLayout_2->addItem(horizontalSpacer_2);
70 
71 
72  gridLayout->addLayout(horizontalLayout_2, 3, 0, 1, 1);
73 
74 
75  retranslateUi(GUI_Shortcuts);
76 
77  QMetaObject::connectSlotsByName(GUI_Shortcuts);
78  } // setupUi
79 
80  void retranslateUi(QWidget *GUI_Shortcuts)
81  {
82  cb_test->setText(QApplication::translate("GUI_Shortcuts", "Press shortcut", nullptr));
83  Q_UNUSED(GUI_Shortcuts);
84  } // retranslateUi
85 
86 };
87 
88 namespace Ui {
89  class GUI_Shortcuts: public Ui_GUI_Shortcuts {};
90 } // namespace Ui
91 
92 QT_END_NAMESPACE
93 
94 #endif // UI_GUI_SHORTCUTS_H
Definition: ui_GUI_Shortcuts.h:24
Definition: ui_GUI_Shortcuts.h:89
The GUI_Shortcuts class.
Definition: GUI_Shortcuts.h:33