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/QGridLayout>
17#include <QtWidgets/QHBoxLayout>
18#include <QtWidgets/QLabel>
19#include <QtWidgets/QPushButton>
20#include <QtWidgets/QScrollArea>
21#include <QtWidgets/QSpacerItem>
22#include <QtWidgets/QStackedWidget>
23#include <QtWidgets/QVBoxLayout>
24#include <QtWidgets/QWidget>
25#include "Gui/Utils/MenuTool/MenuToolButton.h"
32 QVBoxLayout *verticalLayout;
33 QHBoxLayout *horizontalLayout;
35 QSpacerItem *horizontalSpacer;
37 QStackedWidget *stackedWidget;
39 QGridLayout *gridLayout;
40 QScrollArea *scrollArea;
41 QWidget *scrollAreaWidgetContents;
43 QGridLayout *gridLayout_2;
44 QScrollArea *scrollAreaRange;
45 QWidget *scrollAreaRangeContents;
46 QHBoxLayout *horizontalLayout_3;
50 QSpacerItem *horizontalSpacer_2;
51 QPushButton *btnClear;
56 GUI_History->setObjectName(QString::fromUtf8(
"GUI_History"));
59 verticalLayout->setObjectName(QString::fromUtf8(
"verticalLayout"));
60 horizontalLayout =
new QHBoxLayout();
61 horizontalLayout->setObjectName(QString::fromUtf8(
"horizontalLayout"));
63 header->setObjectName(QString::fromUtf8(
"header"));
64 header->setFrameShape(QFrame::StyledPanel);
65 header->setFrameShadow(QFrame::Raised);
67 horizontalLayout->addWidget(header);
69 horizontalSpacer =
new QSpacerItem(40, 20, QSizePolicy::Expanding, QSizePolicy::Minimum);
71 horizontalLayout->addItem(horizontalSpacer);
74 toolButton->setObjectName(QString::fromUtf8(
"toolButton"));
75 toolButton->setText(QString::fromUtf8(
""));
77 horizontalLayout->addWidget(toolButton);
80 verticalLayout->addLayout(horizontalLayout);
83 stackedWidget->setObjectName(QString::fromUtf8(
"stackedWidget"));
85 page->setObjectName(QString::fromUtf8(
"page"));
86 gridLayout =
new QGridLayout(page);
87 gridLayout->setObjectName(QString::fromUtf8(
"gridLayout"));
88 gridLayout->setContentsMargins(0, 0, 0, 0);
89 scrollArea =
new QScrollArea(page);
90 scrollArea->setObjectName(QString::fromUtf8(
"scrollArea"));
91 scrollArea->setWidgetResizable(
true);
92 scrollAreaWidgetContents =
new QWidget();
93 scrollAreaWidgetContents->setObjectName(QString::fromUtf8(
"scrollAreaWidgetContents"));
94 scrollAreaWidgetContents->setGeometry(QRect(0, 0, 98, 28));
95 scrollArea->setWidget(scrollAreaWidgetContents);
97 gridLayout->addWidget(scrollArea, 1, 0, 1, 1);
99 stackedWidget->addWidget(page);
100 page_2 =
new QWidget();
101 page_2->setObjectName(QString::fromUtf8(
"page_2"));
102 gridLayout_2 =
new QGridLayout(page_2);
103 gridLayout_2->setObjectName(QString::fromUtf8(
"gridLayout_2"));
104 gridLayout_2->setContentsMargins(0, 0, 0, 0);
105 scrollAreaRange =
new QScrollArea(page_2);
106 scrollAreaRange->setObjectName(QString::fromUtf8(
"scrollAreaRange"));
107 scrollAreaRange->setWidgetResizable(
true);
108 scrollAreaRangeContents =
new QWidget();
109 scrollAreaRangeContents->setObjectName(QString::fromUtf8(
"scrollAreaRangeContents"));
110 scrollAreaRangeContents->setGeometry(QRect(0, 0, 1194, 726));
111 scrollAreaRange->setWidget(scrollAreaRangeContents);
113 gridLayout_2->addWidget(scrollAreaRange, 2, 0, 1, 1);
115 horizontalLayout_3 =
new QHBoxLayout();
116 horizontalLayout_3->setObjectName(QString::fromUtf8(
"horizontalLayout_3"));
117 labFrom =
new QLabel(page_2);
118 labFrom->setObjectName(QString::fromUtf8(
"labFrom"));
119 labFrom->setText(QString::fromUtf8(
"From"));
121 horizontalLayout_3->addWidget(labFrom);
123 label_3 =
new QLabel(page_2);
124 label_3->setObjectName(QString::fromUtf8(
"label_3"));
125 label_3->setText(QString::fromUtf8(
"-"));
127 horizontalLayout_3->addWidget(label_3);
129 labUntil =
new QLabel(page_2);
130 labUntil->setObjectName(QString::fromUtf8(
"labUntil"));
131 labUntil->setText(QString::fromUtf8(
"Until"));
133 horizontalLayout_3->addWidget(labUntil);
135 horizontalSpacer_2 =
new QSpacerItem(40, 20, QSizePolicy::Expanding, QSizePolicy::Minimum);
137 horizontalLayout_3->addItem(horizontalSpacer_2);
139 btnClear =
new QPushButton(page_2);
140 btnClear->setObjectName(QString::fromUtf8(
"btnClear"));
141 btnClear->setText(QString::fromUtf8(
"Clear"));
143 horizontalLayout_3->addWidget(btnClear);
146 gridLayout_2->addLayout(horizontalLayout_3, 1, 0, 1, 1);
148 stackedWidget->addWidget(page_2);
150 verticalLayout->addWidget(stackedWidget);
155 stackedWidget->setCurrentIndex(1);
163 GUI_History->setWindowTitle(QCoreApplication::translate(
"GUI_History",
"Dialog",
nullptr));
Definition: GUI_History.h:20
Definition: ui_GUI_History.h:169
Definition: ui_GUI_History.h:30