-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathui_preferences.h
116 lines (90 loc) · 3.94 KB
/
ui_preferences.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
/********************************************************************************
** Form generated from reading UI file 'preferences.ui'
**
** Created by: Qt User Interface Compiler version 6.7.2
**
** WARNING! All changes made in this file will be lost when recompiling UI file!
********************************************************************************/
#ifndef UI_PREFERENCES_H
#define UI_PREFERENCES_H
#include <QtCore/QVariant>
#include <QtWidgets/QApplication>
#include <QtWidgets/QHBoxLayout>
#include <QtWidgets/QListWidget>
#include <QtWidgets/QPushButton>
#include <QtWidgets/QSpacerItem>
#include <QtWidgets/QSplitter>
#include <QtWidgets/QVBoxLayout>
#include <QtWidgets/QWidget>
QT_BEGIN_NAMESPACE
class Ui_Preferences
{
public:
QVBoxLayout *verticalLayout;
QSplitter *splitter;
QListWidget *listWidget;
QWidget *rightWidget;
QHBoxLayout *horizontalLayout;
QSpacerItem *horizontalSpacer;
QPushButton *ok_btn;
QPushButton *cancel_btn;
QPushButton *apply_btn;
void setupUi(QWidget *Preferences)
{
if (Preferences->objectName().isEmpty())
Preferences->setObjectName("Preferences");
Preferences->resize(677, 476);
verticalLayout = new QVBoxLayout(Preferences);
verticalLayout->setObjectName("verticalLayout");
splitter = new QSplitter(Preferences);
splitter->setObjectName("splitter");
splitter->setOrientation(Qt::Horizontal);
listWidget = new QListWidget(splitter);
new QListWidgetItem(listWidget);
new QListWidgetItem(listWidget);
new QListWidgetItem(listWidget);
listWidget->setObjectName("listWidget");
splitter->addWidget(listWidget);
rightWidget = new QWidget(splitter);
rightWidget->setObjectName("rightWidget");
splitter->addWidget(rightWidget);
verticalLayout->addWidget(splitter);
horizontalLayout = new QHBoxLayout();
horizontalLayout->setObjectName("horizontalLayout");
horizontalSpacer = new QSpacerItem(40, 20, QSizePolicy::Policy::Expanding, QSizePolicy::Policy::Minimum);
horizontalLayout->addItem(horizontalSpacer);
ok_btn = new QPushButton(Preferences);
ok_btn->setObjectName("ok_btn");
horizontalLayout->addWidget(ok_btn);
cancel_btn = new QPushButton(Preferences);
cancel_btn->setObjectName("cancel_btn");
horizontalLayout->addWidget(cancel_btn);
apply_btn = new QPushButton(Preferences);
apply_btn->setObjectName("apply_btn");
horizontalLayout->addWidget(apply_btn);
verticalLayout->addLayout(horizontalLayout);
retranslateUi(Preferences);
QMetaObject::connectSlotsByName(Preferences);
} // setupUi
void retranslateUi(QWidget *Preferences)
{
Preferences->setWindowTitle(QCoreApplication::translate("Preferences", "Form", nullptr));
const bool __sortingEnabled = listWidget->isSortingEnabled();
listWidget->setSortingEnabled(false);
QListWidgetItem *___qlistwidgetitem = listWidget->item(0);
___qlistwidgetitem->setText(QCoreApplication::translate("Preferences", "General", nullptr));
QListWidgetItem *___qlistwidgetitem1 = listWidget->item(1);
___qlistwidgetitem1->setText(QCoreApplication::translate("Preferences", "Appearance", nullptr));
QListWidgetItem *___qlistwidgetitem2 = listWidget->item(2);
___qlistwidgetitem2->setText(QCoreApplication::translate("Preferences", "New Item", nullptr));
listWidget->setSortingEnabled(__sortingEnabled);
ok_btn->setText(QCoreApplication::translate("Preferences", "Ok", nullptr));
cancel_btn->setText(QCoreApplication::translate("Preferences", "Cancel", nullptr));
apply_btn->setText(QCoreApplication::translate("Preferences", "Apply", nullptr));
} // retranslateUi
};
namespace Ui {
class Preferences: public Ui_Preferences {};
} // namespace Ui
QT_END_NAMESPACE
#endif // UI_PREFERENCES_H