1 | /******************************************************************************** |
2 | ** Form generated from reading UI file 'themewidget.ui' |
3 | ** |
4 | ** Created by: Qt User Interface Compiler version 5.15.9 |
5 | ** |
6 | ** WARNING! All changes made in this file will be lost when recompiling UI file! |
7 | ********************************************************************************/ |
8 | |
9 | #ifndef UI_THEMEWIDGET_H |
10 | #define UI_THEMEWIDGET_H |
11 | |
12 | #include <QtCore/QVariant> |
13 | #include <QtWidgets/QApplication> |
14 | #include <QtWidgets/QCheckBox> |
15 | #include <QtWidgets/QComboBox> |
16 | #include <QtWidgets/QGridLayout> |
17 | #include <QtWidgets/QHBoxLayout> |
18 | #include <QtWidgets/QLabel> |
19 | #include <QtWidgets/QSpacerItem> |
20 | #include <QtWidgets/QWidget> |
21 | |
22 | QT_BEGIN_NAMESPACE |
23 | |
24 | class Ui_ThemeWidgetForm |
25 | { |
26 | public: |
27 | QGridLayout *gridLayout; |
28 | QHBoxLayout *horizontalLayout; |
29 | QLabel *themeLabel; |
30 | QComboBox *themeComboBox; |
31 | QLabel *animatedLabel; |
32 | QComboBox *animatedComboBox; |
33 | QLabel *legendLabel; |
34 | QComboBox *legendComboBox; |
35 | QCheckBox *antialiasCheckBox; |
36 | QSpacerItem *horizontalSpacer; |
37 | |
38 | void setupUi(QWidget *ThemeWidgetForm) |
39 | { |
40 | if (ThemeWidgetForm->objectName().isEmpty()) |
41 | ThemeWidgetForm->setObjectName(QString::fromUtf8(str: "ThemeWidgetForm" )); |
42 | ThemeWidgetForm->resize(w: 900, h: 600); |
43 | gridLayout = new QGridLayout(ThemeWidgetForm); |
44 | gridLayout->setObjectName(QString::fromUtf8(str: "gridLayout" )); |
45 | horizontalLayout = new QHBoxLayout(); |
46 | horizontalLayout->setObjectName(QString::fromUtf8(str: "horizontalLayout" )); |
47 | themeLabel = new QLabel(ThemeWidgetForm); |
48 | themeLabel->setObjectName(QString::fromUtf8(str: "themeLabel" )); |
49 | |
50 | horizontalLayout->addWidget(themeLabel); |
51 | |
52 | themeComboBox = new QComboBox(ThemeWidgetForm); |
53 | themeComboBox->setObjectName(QString::fromUtf8(str: "themeComboBox" )); |
54 | |
55 | horizontalLayout->addWidget(themeComboBox); |
56 | |
57 | animatedLabel = new QLabel(ThemeWidgetForm); |
58 | animatedLabel->setObjectName(QString::fromUtf8(str: "animatedLabel" )); |
59 | |
60 | horizontalLayout->addWidget(animatedLabel); |
61 | |
62 | animatedComboBox = new QComboBox(ThemeWidgetForm); |
63 | animatedComboBox->setObjectName(QString::fromUtf8(str: "animatedComboBox" )); |
64 | |
65 | horizontalLayout->addWidget(animatedComboBox); |
66 | |
67 | legendLabel = new QLabel(ThemeWidgetForm); |
68 | legendLabel->setObjectName(QString::fromUtf8(str: "legendLabel" )); |
69 | |
70 | horizontalLayout->addWidget(legendLabel); |
71 | |
72 | legendComboBox = new QComboBox(ThemeWidgetForm); |
73 | legendComboBox->setObjectName(QString::fromUtf8(str: "legendComboBox" )); |
74 | |
75 | horizontalLayout->addWidget(legendComboBox); |
76 | |
77 | antialiasCheckBox = new QCheckBox(ThemeWidgetForm); |
78 | antialiasCheckBox->setObjectName(QString::fromUtf8(str: "antialiasCheckBox" )); |
79 | antialiasCheckBox->setChecked(false); |
80 | |
81 | horizontalLayout->addWidget(antialiasCheckBox); |
82 | |
83 | horizontalSpacer = new QSpacerItem(40, 20, QSizePolicy::Expanding, QSizePolicy::Minimum); |
84 | |
85 | horizontalLayout->addItem(horizontalSpacer); |
86 | |
87 | |
88 | gridLayout->addLayout(horizontalLayout, row: 0, column: 0, rowSpan: 1, columnSpan: 3); |
89 | |
90 | |
91 | retranslateUi(ThemeWidgetForm); |
92 | QObject::connect(sender: themeComboBox, SIGNAL(currentIndexChanged(int)), receiver: ThemeWidgetForm, SLOT(updateUI())); |
93 | QObject::connect(sender: antialiasCheckBox, SIGNAL(toggled(bool)), receiver: ThemeWidgetForm, SLOT(updateUI())); |
94 | QObject::connect(sender: legendComboBox, SIGNAL(currentIndexChanged(int)), receiver: ThemeWidgetForm, SLOT(updateUI())); |
95 | QObject::connect(sender: animatedComboBox, SIGNAL(currentIndexChanged(int)), receiver: ThemeWidgetForm, SLOT(updateUI())); |
96 | |
97 | QMetaObject::connectSlotsByName(o: ThemeWidgetForm); |
98 | } // setupUi |
99 | |
100 | void retranslateUi(QWidget *ThemeWidgetForm) |
101 | { |
102 | themeLabel->setText(QCoreApplication::translate(context: "ThemeWidgetForm" , key: "Theme:" , disambiguation: nullptr)); |
103 | animatedLabel->setText(QCoreApplication::translate(context: "ThemeWidgetForm" , key: "Animation:" , disambiguation: nullptr)); |
104 | legendLabel->setText(QCoreApplication::translate(context: "ThemeWidgetForm" , key: "Legend:" , disambiguation: nullptr)); |
105 | antialiasCheckBox->setText(QCoreApplication::translate(context: "ThemeWidgetForm" , key: "Anti-aliasing" , disambiguation: nullptr)); |
106 | (void)ThemeWidgetForm; |
107 | } // retranslateUi |
108 | |
109 | }; |
110 | |
111 | namespace Ui { |
112 | class ThemeWidgetForm: public Ui_ThemeWidgetForm {}; |
113 | } // namespace Ui |
114 | |
115 | QT_END_NAMESPACE |
116 | |
117 | #endif // UI_THEMEWIDGET_H |
118 | |