Sayonara Player
ui_GUI_ShortcutEntry.h
1 /********************************************************************************
2 ** Form generated from reading UI file 'GUI_ShortcutEntry.ui'
3 **
4 ** Created by: Qt User Interface Compiler version 5.13.2
5 **
6 ** WARNING! All changes made in this file will be lost when recompiling UI file!
7 ********************************************************************************/
8 
9 #ifndef UI_GUI_SHORTCUTENTRY_H
10 #define UI_GUI_SHORTCUTENTRY_H
11 
12 #include <QtCore/QVariant>
13 #include <QtWidgets/QApplication>
14 #include <QtWidgets/QHBoxLayout>
15 #include <QtWidgets/QLabel>
16 #include <QtWidgets/QPushButton>
17 #include <QtWidgets/QWidget>
18 #include "Gui/Preferences/Shortcuts/ShortcutLineEdit.h"
19 
20 QT_BEGIN_NAMESPACE
21 
23 {
24 public:
25  QHBoxLayout *horizontalLayout;
26  QLabel *labDescription;
27  ShortcutLineEdit *leEntry;
28  QPushButton *btnEdit;
29  QPushButton *btnDefault;
30  QPushButton *btnTest;
31 
32  void setupUi(QWidget *GUI_ShortcutEntry)
33  {
34  if (GUI_ShortcutEntry->objectName().isEmpty())
35  GUI_ShortcutEntry->setObjectName(QString::fromUtf8("GUI_ShortcutEntry"));
36  GUI_ShortcutEntry->resize(646, 35);
37  horizontalLayout = new QHBoxLayout(GUI_ShortcutEntry);
38  horizontalLayout->setObjectName(QString::fromUtf8("horizontalLayout"));
39  horizontalLayout->setContentsMargins(-1, 4, -1, 4);
40  labDescription = new QLabel(GUI_ShortcutEntry);
41  labDescription->setObjectName(QString::fromUtf8("labDescription"));
42  labDescription->setMinimumSize(QSize(200, 0));
43 
44  horizontalLayout->addWidget(labDescription);
45 
46  leEntry = new ShortcutLineEdit(GUI_ShortcutEntry);
47  leEntry->setObjectName(QString::fromUtf8("leEntry"));
48 
49  horizontalLayout->addWidget(leEntry);
50 
51  btnEdit = new QPushButton(GUI_ShortcutEntry);
52  btnEdit->setObjectName(QString::fromUtf8("btnEdit"));
53  btnEdit->setMinimumSize(QSize(24, 24));
54  btnEdit->setMaximumSize(QSize(24, 24));
55  btnEdit->setIconSize(QSize(20, 20));
56  btnEdit->setFlat(true);
57 
58  horizontalLayout->addWidget(btnEdit);
59 
60  btnDefault = new QPushButton(GUI_ShortcutEntry);
61  btnDefault->setObjectName(QString::fromUtf8("btnDefault"));
62  btnDefault->setMinimumSize(QSize(24, 24));
63  btnDefault->setMaximumSize(QSize(24, 24));
64  btnDefault->setIconSize(QSize(20, 20));
65  btnDefault->setFlat(true);
66 
67  horizontalLayout->addWidget(btnDefault);
68 
69  btnTest = new QPushButton(GUI_ShortcutEntry);
70  btnTest->setObjectName(QString::fromUtf8("btnTest"));
71  btnTest->setMinimumSize(QSize(24, 24));
72  btnTest->setMaximumSize(QSize(24, 24));
73  btnTest->setIconSize(QSize(20, 20));
74  btnTest->setFlat(true);
75 
76  horizontalLayout->addWidget(btnTest);
77 
78 
79  retranslateUi(GUI_ShortcutEntry);
80 
81  QMetaObject::connectSlotsByName(GUI_ShortcutEntry);
82  } // setupUi
83 
84  void retranslateUi(QWidget *GUI_ShortcutEntry)
85  {
86  labDescription->setText(QString());
87  btnEdit->setText(QString());
88  btnDefault->setText(QString());
89  btnTest->setText(QString());
90  Q_UNUSED(GUI_ShortcutEntry);
91  } // retranslateUi
92 
93 };
94 
95 namespace Ui {
97 } // namespace Ui
98 
99 QT_END_NAMESPACE
100 
101 #endif // UI_GUI_SHORTCUTENTRY_H
The delegate class for displaying a shortcut.
Definition: GUI_ShortcutEntry.h:37
The ShortcutLineEdit class.
Definition: ShortcutLineEdit.h:30
Definition: ui_GUI_ShortcutEntry.h:96
Definition: ui_GUI_ShortcutEntry.h:22