CuteLogger
Fast and simple logging solution for Qt based applications
ui_colorproducerwidget.h
1 /********************************************************************************
2 ** Form generated from reading UI file 'colorproducerwidget.ui'
3 **
4 ** Created by: Qt User Interface Compiler version 5.9.4
5 **
6 ** WARNING! All changes made in this file will be lost when recompiling UI file!
7 ********************************************************************************/
8 
9 #ifndef UI_COLORPRODUCERWIDGET_H
10 #define UI_COLORPRODUCERWIDGET_H
11 
12 #include <QtCore/QVariant>
13 #include <QtWidgets/QAction>
14 #include <QtWidgets/QApplication>
15 #include <QtWidgets/QButtonGroup>
16 #include <QtWidgets/QHBoxLayout>
17 #include <QtWidgets/QHeaderView>
18 #include <QtWidgets/QLabel>
19 #include <QtWidgets/QPushButton>
20 #include <QtWidgets/QSpacerItem>
21 #include <QtWidgets/QVBoxLayout>
22 #include <QtWidgets/QWidget>
23 #include "widgets/servicepresetwidget.h"
24 
25 QT_BEGIN_NAMESPACE
26 
27 class Ui_ColorProducerWidget
28 {
29 public:
30  QVBoxLayout *verticalLayout;
31  QLabel *label_2;
32  ServicePresetWidget *preset;
33  QHBoxLayout *horizontalLayout_2;
34  QPushButton *colorButton;
35  QLabel *colorLabel;
36  QSpacerItem *horizontalSpacer_8;
37  QSpacerItem *verticalSpacer;
38 
39  void setupUi(QWidget *ColorProducerWidget)
40  {
41  if (ColorProducerWidget->objectName().isEmpty())
42  ColorProducerWidget->setObjectName(QStringLiteral("ColorProducerWidget"));
43  ColorProducerWidget->resize(396, 296);
44  verticalLayout = new QVBoxLayout(ColorProducerWidget);
45  verticalLayout->setObjectName(QStringLiteral("verticalLayout"));
46  label_2 = new QLabel(ColorProducerWidget);
47  label_2->setObjectName(QStringLiteral("label_2"));
48  QFont font;
49  font.setBold(true);
50  font.setWeight(75);
51  label_2->setFont(font);
52  label_2->setAlignment(Qt::AlignCenter);
53 
54  verticalLayout->addWidget(label_2);
55 
56  preset = new ServicePresetWidget(ColorProducerWidget);
57  preset->setObjectName(QStringLiteral("preset"));
58 
59  verticalLayout->addWidget(preset);
60 
61  horizontalLayout_2 = new QHBoxLayout();
62  horizontalLayout_2->setObjectName(QStringLiteral("horizontalLayout_2"));
63  colorButton = new QPushButton(ColorProducerWidget);
64  colorButton->setObjectName(QStringLiteral("colorButton"));
65 
66  horizontalLayout_2->addWidget(colorButton);
67 
68  colorLabel = new QLabel(ColorProducerWidget);
69  colorLabel->setObjectName(QStringLiteral("colorLabel"));
70  QSizePolicy sizePolicy(QSizePolicy::MinimumExpanding, QSizePolicy::Preferred);
71  sizePolicy.setHorizontalStretch(0);
72  sizePolicy.setVerticalStretch(0);
73  sizePolicy.setHeightForWidth(colorLabel->sizePolicy().hasHeightForWidth());
74  colorLabel->setSizePolicy(sizePolicy);
75  colorLabel->setTextInteractionFlags(Qt::LinksAccessibleByMouse|Qt::TextSelectableByKeyboard|Qt::TextSelectableByMouse);
76 
77  horizontalLayout_2->addWidget(colorLabel);
78 
79  horizontalSpacer_8 = new QSpacerItem(40, 20, QSizePolicy::Expanding, QSizePolicy::Minimum);
80 
81  horizontalLayout_2->addItem(horizontalSpacer_8);
82 
83 
84  verticalLayout->addLayout(horizontalLayout_2);
85 
86  verticalSpacer = new QSpacerItem(20, 40, QSizePolicy::Minimum, QSizePolicy::Expanding);
87 
88  verticalLayout->addItem(verticalSpacer);
89 
90 
91  retranslateUi(ColorProducerWidget);
92 
93  QMetaObject::connectSlotsByName(ColorProducerWidget);
94  } // setupUi
95 
96  void retranslateUi(QWidget *ColorProducerWidget)
97  {
98  ColorProducerWidget->setWindowTitle(QApplication::translate("ColorProducerWidget", "Form", Q_NULLPTR));
99  label_2->setText(QApplication::translate("ColorProducerWidget", "Color", Q_NULLPTR));
100  colorButton->setText(QApplication::translate("ColorProducerWidget", "Color...", Q_NULLPTR));
101  colorLabel->setText(QApplication::translate("ColorProducerWidget", "#00000000", Q_NULLPTR));
102  } // retranslateUi
103 
104 };
105 
106 namespace Ui {
107  class ColorProducerWidget: public Ui_ColorProducerWidget {};
108 } // namespace Ui
109 
110 QT_END_NAMESPACE
111 
112 #endif // UI_COLORPRODUCERWIDGET_H
Definition: addencodepresetdialog.h:24