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.11.3
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 *lab_description;
27  ShortcutLineEdit *le_entry;
28  QPushButton *btn_edit;
29  QPushButton *btn_default;
30  QPushButton *btn_test;
31 
32  void setupUi(QWidget *GUI_ShortcutEntry)
33  {
34  if (GUI_ShortcutEntry->objectName().isEmpty())
35  GUI_ShortcutEntry->setObjectName(QStringLiteral("GUI_ShortcutEntry"));
36  GUI_ShortcutEntry->resize(646, 35);
37  horizontalLayout = new QHBoxLayout(GUI_ShortcutEntry);
38  horizontalLayout->setObjectName(QStringLiteral("horizontalLayout"));
39  horizontalLayout->setContentsMargins(-1, 4, -1, 4);
40  lab_description = new QLabel(GUI_ShortcutEntry);
41  lab_description->setObjectName(QStringLiteral("lab_description"));
42  lab_description->setMinimumSize(QSize(200, 0));
43 
44  horizontalLayout->addWidget(lab_description);
45 
46  le_entry = new ShortcutLineEdit(GUI_ShortcutEntry);
47  le_entry->setObjectName(QStringLiteral("le_entry"));
48 
49  horizontalLayout->addWidget(le_entry);
50 
51  btn_edit = new QPushButton(GUI_ShortcutEntry);
52  btn_edit->setObjectName(QStringLiteral("btn_edit"));
53  btn_edit->setMinimumSize(QSize(24, 24));
54  btn_edit->setMaximumSize(QSize(24, 24));
55  btn_edit->setIconSize(QSize(20, 20));
56  btn_edit->setFlat(true);
57 
58  horizontalLayout->addWidget(btn_edit);
59 
60  btn_default = new QPushButton(GUI_ShortcutEntry);
61  btn_default->setObjectName(QStringLiteral("btn_default"));
62  btn_default->setMinimumSize(QSize(24, 24));
63  btn_default->setMaximumSize(QSize(24, 24));
64  btn_default->setIconSize(QSize(20, 20));
65  btn_default->setFlat(true);
66 
67  horizontalLayout->addWidget(btn_default);
68 
69  btn_test = new QPushButton(GUI_ShortcutEntry);
70  btn_test->setObjectName(QStringLiteral("btn_test"));
71  btn_test->setMinimumSize(QSize(24, 24));
72  btn_test->setMaximumSize(QSize(24, 24));
73  btn_test->setIconSize(QSize(20, 20));
74  btn_test->setFlat(true);
75 
76  horizontalLayout->addWidget(btn_test);
77 
78 
79  retranslateUi(GUI_ShortcutEntry);
80 
81  QMetaObject::connectSlotsByName(GUI_ShortcutEntry);
82  } // setupUi
83 
84  void retranslateUi(QWidget *GUI_ShortcutEntry)
85  {
86  lab_description->setText(QString());
87  btn_edit->setText(QString());
88  btn_default->setText(QString());
89  btn_test->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:38
The ShortcutLineEdit class.
Definition: ShortcutLineEdit.h:30
Definition: ui_GUI_ShortcutEntry.h:96
Definition: ui_GUI_ShortcutEntry.h:22