CuteLogger
Fast and simple logging solution for Qt based applications
ui_textproducerwidget.h
1/********************************************************************************
2** Form generated from reading UI file 'textproducerwidget.ui'
3**
4** Created by: Qt User Interface Compiler version 6.11.0
5**
6** WARNING! All changes made in this file will be lost when recompiling UI file!
7********************************************************************************/
8
9#ifndef UI_TEXTPRODUCERWIDGET_H
10#define UI_TEXTPRODUCERWIDGET_H
11
12#include <QtCore/QVariant>
13#include <QtWidgets/QApplication>
14#include <QtWidgets/QHBoxLayout>
15#include <QtWidgets/QLabel>
16#include <QtWidgets/QPlainTextEdit>
17#include <QtWidgets/QPushButton>
18#include <QtWidgets/QRadioButton>
19#include <QtWidgets/QSpacerItem>
20#include <QtWidgets/QVBoxLayout>
21#include <QtWidgets/QWidget>
22#include "widgets/servicepresetwidget.h"
23
24QT_BEGIN_NAMESPACE
25
26class Ui_TextProducerWidget
27{
28public:
29 QVBoxLayout *verticalLayout;
30 QLabel *label_2;
31 ServicePresetWidget *preset;
32 QPlainTextEdit *plainTextEdit;
33 QHBoxLayout *horizontalLayout_2;
34 QPushButton *colorButton;
35 QLabel *colorLabel;
36 QSpacerItem *horizontalSpacer_8;
37 QHBoxLayout *horizontalLayout;
38 QRadioButton *simpleRadioButton;
39 QRadioButton *richRadioButton;
40 QRadioButton *typeWriterRadioButton;
41 QSpacerItem *horizontalSpacer;
42 QLabel *label;
43 QSpacerItem *verticalSpacer;
44
45 void setupUi(QWidget *TextProducerWidget)
46 {
47 if (TextProducerWidget->objectName().isEmpty())
48 TextProducerWidget->setObjectName("TextProducerWidget");
49 TextProducerWidget->resize(396, 296);
50#if QT_CONFIG(whatsthis)
51 TextProducerWidget->setWhatsThis(QString::fromUtf8("https://forum.shotcut.org/t/open-other-text/12926/1"));
52#endif // QT_CONFIG(whatsthis)
53 verticalLayout = new QVBoxLayout(TextProducerWidget);
54 verticalLayout->setObjectName("verticalLayout");
55 label_2 = new QLabel(TextProducerWidget);
56 label_2->setObjectName("label_2");
57 QFont font;
58 font.setBold(true);
59 label_2->setFont(font);
60 label_2->setAlignment(Qt::AlignmentFlag::AlignCenter);
61
62 verticalLayout->addWidget(label_2);
63
64 preset = new ServicePresetWidget(TextProducerWidget);
65 preset->setObjectName("preset");
66
67 verticalLayout->addWidget(preset);
68
69 plainTextEdit = new QPlainTextEdit(TextProducerWidget);
70 plainTextEdit->setObjectName("plainTextEdit");
71
72 verticalLayout->addWidget(plainTextEdit);
73
74 horizontalLayout_2 = new QHBoxLayout();
75 horizontalLayout_2->setObjectName("horizontalLayout_2");
76 colorButton = new QPushButton(TextProducerWidget);
77 colorButton->setObjectName("colorButton");
78
79 horizontalLayout_2->addWidget(colorButton);
80
81 colorLabel = new QLabel(TextProducerWidget);
82 colorLabel->setObjectName("colorLabel");
83 QSizePolicy sizePolicy(QSizePolicy::Policy::MinimumExpanding, QSizePolicy::Policy::Preferred);
84 sizePolicy.setHorizontalStretch(0);
85 sizePolicy.setVerticalStretch(0);
86 sizePolicy.setHeightForWidth(colorLabel->sizePolicy().hasHeightForWidth());
87 colorLabel->setSizePolicy(sizePolicy);
88 colorLabel->setTextInteractionFlags(Qt::TextInteractionFlag::LinksAccessibleByMouse|Qt::TextInteractionFlag::TextSelectableByKeyboard|Qt::TextInteractionFlag::TextSelectableByMouse);
89
90 horizontalLayout_2->addWidget(colorLabel);
91
92 horizontalSpacer_8 = new QSpacerItem(40, 20, QSizePolicy::Policy::Expanding, QSizePolicy::Policy::Minimum);
93
94 horizontalLayout_2->addItem(horizontalSpacer_8);
95
96
97 verticalLayout->addLayout(horizontalLayout_2);
98
99 horizontalLayout = new QHBoxLayout();
100 horizontalLayout->setObjectName("horizontalLayout");
101 simpleRadioButton = new QRadioButton(TextProducerWidget);
102 simpleRadioButton->setObjectName("simpleRadioButton");
103 simpleRadioButton->setChecked(true);
104
105 horizontalLayout->addWidget(simpleRadioButton);
106
107 richRadioButton = new QRadioButton(TextProducerWidget);
108 richRadioButton->setObjectName("richRadioButton");
109
110 horizontalLayout->addWidget(richRadioButton);
111
112 typeWriterRadioButton = new QRadioButton(TextProducerWidget);
113 typeWriterRadioButton->setObjectName("typeWriterRadioButton");
114
115 horizontalLayout->addWidget(typeWriterRadioButton);
116
117 horizontalSpacer = new QSpacerItem(40, 20, QSizePolicy::Policy::Expanding, QSizePolicy::Policy::Minimum);
118
119 horizontalLayout->addItem(horizontalSpacer);
120
121
122 verticalLayout->addLayout(horizontalLayout);
123
124 label = new QLabel(TextProducerWidget);
125 label->setObjectName("label");
126 label->setAlignment(Qt::AlignmentFlag::AlignCenter);
127 label->setWordWrap(true);
128 label->setMargin(10);
129
130 verticalLayout->addWidget(label);
131
132 verticalSpacer = new QSpacerItem(20, 40, QSizePolicy::Policy::Minimum, QSizePolicy::Policy::Expanding);
133
134 verticalLayout->addItem(verticalSpacer);
135
136
137 retranslateUi(TextProducerWidget);
138
139 QMetaObject::connectSlotsByName(TextProducerWidget);
140 } // setupUi
141
142 void retranslateUi(QWidget *TextProducerWidget)
143 {
144 TextProducerWidget->setWindowTitle(QCoreApplication::translate("TextProducerWidget", "Form", nullptr));
145 label_2->setText(QCoreApplication::translate("TextProducerWidget", "Text", nullptr));
146 plainTextEdit->setPlaceholderText(QCoreApplication::translate("TextProducerWidget", "Type or paste the text here", nullptr));
147 colorButton->setText(QCoreApplication::translate("TextProducerWidget", "Background color...", nullptr));
148 colorLabel->setText(QCoreApplication::translate("TextProducerWidget", "#00000000", nullptr));
149 simpleRadioButton->setText(QCoreApplication::translate("TextProducerWidget", "Simple", nullptr));
150 richRadioButton->setText(QCoreApplication::translate("TextProducerWidget", "Rich", nullptr));
151 typeWriterRadioButton->setText(QCoreApplication::translate("TextProducerWidget", "Typewriter", nullptr));
152 label->setText(QCoreApplication::translate("TextProducerWidget", "Text attributes are available in the <b>Filters</b> panel after clicking <b>OK</b>.", nullptr));
153 } // retranslateUi
154
155};
156
157namespace Ui {
158 class TextProducerWidget: public Ui_TextProducerWidget {};
159} // namespace Ui
160
161QT_END_NAMESPACE
162
163#endif // UI_TEXTPRODUCERWIDGET_H