9 #ifndef UI_GUI_SHORTCUTS_H 10 #define UI_GUI_SHORTCUTS_H 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> 27 QGridLayout *gridLayout;
28 QScrollArea *scrollArea;
29 QWidget *scrollAreaWidgetContents;
30 QVBoxLayout *verticalLayout_2;
31 QVBoxLayout *layout_entries;
32 QHBoxLayout *horizontalLayout_2;
34 QSpacerItem *horizontalSpacer_2;
39 GUI_Shortcuts->setObjectName(QStringLiteral(
"GUI_Shortcuts"));
42 gridLayout->setObjectName(QStringLiteral(
"gridLayout"));
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"));
54 verticalLayout_2->addLayout(layout_entries);
56 scrollArea->setWidget(scrollAreaWidgetContents);
58 gridLayout->addWidget(scrollArea, 2, 0, 1, 1);
60 horizontalLayout_2 =
new QHBoxLayout();
61 horizontalLayout_2->setObjectName(QStringLiteral(
"horizontalLayout_2"));
63 cb_test->setObjectName(QStringLiteral(
"cb_test"));
65 horizontalLayout_2->addWidget(cb_test);
67 horizontalSpacer_2 =
new QSpacerItem(40, 20, QSizePolicy::Expanding, QSizePolicy::Minimum);
69 horizontalLayout_2->addItem(horizontalSpacer_2);
72 gridLayout->addLayout(horizontalLayout_2, 3, 0, 1, 1);
82 cb_test->setText(QApplication::translate(
"GUI_Shortcuts",
"Press shortcut",
nullptr));
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