9 #ifndef UI_GUI_HISTORY_H 10 #define UI_GUI_HISTORY_H 12 #include <QtCore/QVariant> 13 #include <QtWidgets/QApplication> 14 #include <QtWidgets/QDialog> 15 #include <QtWidgets/QFrame> 16 #include <QtWidgets/QHBoxLayout> 17 #include <QtWidgets/QPushButton> 18 #include <QtWidgets/QSpacerItem> 19 #include <QtWidgets/QStackedWidget> 20 #include <QtWidgets/QVBoxLayout> 27 QVBoxLayout *verticalLayout;
28 QHBoxLayout *horizontalLayout;
30 QSpacerItem *horizontalSpacer;
31 QHBoxLayout *horizontalLayout_4;
32 QPushButton *btn_newer;
33 QSpacerItem *horizontalSpacer_2;
34 QPushButton *btn_older;
35 QStackedWidget *stackedWidget;
40 GUI_History->setObjectName(QString::fromUtf8(
"GUI_History"));
43 verticalLayout->setObjectName(QString::fromUtf8(
"verticalLayout"));
44 horizontalLayout =
new QHBoxLayout();
45 horizontalLayout->setObjectName(QString::fromUtf8(
"horizontalLayout"));
47 header->setObjectName(QString::fromUtf8(
"header"));
48 header->setFrameShape(QFrame::StyledPanel);
49 header->setFrameShadow(QFrame::Raised);
51 horizontalLayout->addWidget(header);
53 horizontalSpacer =
new QSpacerItem(40, 20, QSizePolicy::Expanding, QSizePolicy::Minimum);
55 horizontalLayout->addItem(horizontalSpacer);
58 verticalLayout->addLayout(horizontalLayout);
60 horizontalLayout_4 =
new QHBoxLayout();
61 horizontalLayout_4->setObjectName(QString::fromUtf8(
"horizontalLayout_4"));
63 btn_newer->setObjectName(QString::fromUtf8(
"btn_newer"));
65 horizontalLayout_4->addWidget(btn_newer);
67 horizontalSpacer_2 =
new QSpacerItem(40, 20, QSizePolicy::Expanding, QSizePolicy::Minimum);
69 horizontalLayout_4->addItem(horizontalSpacer_2);
72 btn_older->setObjectName(QString::fromUtf8(
"btn_older"));
74 horizontalLayout_4->addWidget(btn_older);
77 verticalLayout->addLayout(horizontalLayout_4);
80 stackedWidget->setObjectName(QString::fromUtf8(
"stackedWidget"));
82 verticalLayout->addWidget(stackedWidget);
87 stackedWidget->setCurrentIndex(-1);
95 GUI_History->setWindowTitle(QApplication::translate(
"GUI_History",
"Dialog",
nullptr));
96 btn_newer->setText(QApplication::translate(
"GUI_History",
"Newer",
nullptr));
97 btn_older->setText(QApplication::translate(
"GUI_History",
"Older",
nullptr));
108 #endif // UI_GUI_HISTORY_H Definition: ui_GUI_History.h:24
Definition: GUI_History.h:11
Definition: ui_GUI_History.h:103