CuteLogger
Fast and simple logging solution for Qt based applications
ui_toneproducerwidget.h
1/********************************************************************************
2** Form generated from reading UI file 'toneproducerwidget.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_TONEPRODUCERWIDGET_H
10#define UI_TONEPRODUCERWIDGET_H
11
12#include <QtCore/QVariant>
13#include <QtWidgets/QApplication>
14#include <QtWidgets/QGridLayout>
15#include <QtWidgets/QLabel>
16#include <QtWidgets/QSpacerItem>
17#include <QtWidgets/QSpinBox>
18#include <QtWidgets/QVBoxLayout>
19#include <QtWidgets/QWidget>
20#include "widgets/servicepresetwidget.h"
21
22QT_BEGIN_NAMESPACE
23
24class Ui_ToneProducerWidget
25{
26public:
27 QVBoxLayout *verticalLayout;
28 QLabel *nameLabel;
29 ServicePresetWidget *preset;
30 QGridLayout *gridLayout;
31 QLabel *label;
32 QSpinBox *frequencySpinBox;
33 QSpacerItem *horizontalSpacer;
34 QLabel *label_3;
35 QSpinBox *levelSpinBox;
36 QSpacerItem *verticalSpacer;
37
38 void setupUi(QWidget *ToneProducerWidget)
39 {
40 if (ToneProducerWidget->objectName().isEmpty())
41 ToneProducerWidget->setObjectName("ToneProducerWidget");
42 ToneProducerWidget->resize(394, 294);
43#if QT_CONFIG(whatsthis)
44 ToneProducerWidget->setWhatsThis(QString::fromUtf8("https://forum.shotcut.org/t/open-other-audio-tone/12932/1"));
45#endif // QT_CONFIG(whatsthis)
46 verticalLayout = new QVBoxLayout(ToneProducerWidget);
47 verticalLayout->setObjectName("verticalLayout");
48 nameLabel = new QLabel(ToneProducerWidget);
49 nameLabel->setObjectName("nameLabel");
50 QFont font;
51 font.setBold(true);
52 nameLabel->setFont(font);
53 nameLabel->setAlignment(Qt::AlignmentFlag::AlignCenter);
54
55 verticalLayout->addWidget(nameLabel);
56
57 preset = new ServicePresetWidget(ToneProducerWidget);
58 preset->setObjectName("preset");
59
60 verticalLayout->addWidget(preset);
61
62 gridLayout = new QGridLayout();
63 gridLayout->setObjectName("gridLayout");
64 label = new QLabel(ToneProducerWidget);
65 label->setObjectName("label");
66 label->setAlignment(Qt::AlignmentFlag::AlignRight|Qt::AlignmentFlag::AlignTrailing|Qt::AlignmentFlag::AlignVCenter);
67
68 gridLayout->addWidget(label, 0, 0, 1, 1);
69
70 frequencySpinBox = new QSpinBox(ToneProducerWidget);
71 frequencySpinBox->setObjectName("frequencySpinBox");
72 frequencySpinBox->setMinimum(20);
73 frequencySpinBox->setMaximum(20000);
74 frequencySpinBox->setValue(1000);
75
76 gridLayout->addWidget(frequencySpinBox, 0, 1, 1, 1);
77
78 horizontalSpacer = new QSpacerItem(40, 20, QSizePolicy::Policy::Expanding, QSizePolicy::Policy::Minimum);
79
80 gridLayout->addItem(horizontalSpacer, 0, 2, 1, 1);
81
82 label_3 = new QLabel(ToneProducerWidget);
83 label_3->setObjectName("label_3");
84 label_3->setAlignment(Qt::AlignmentFlag::AlignRight|Qt::AlignmentFlag::AlignTrailing|Qt::AlignmentFlag::AlignVCenter);
85
86 gridLayout->addWidget(label_3, 1, 0, 1, 1);
87
88 levelSpinBox = new QSpinBox(ToneProducerWidget);
89 levelSpinBox->setObjectName("levelSpinBox");
90 levelSpinBox->setMinimum(-90);
91 levelSpinBox->setMaximum(0);
92 levelSpinBox->setValue(0);
93
94 gridLayout->addWidget(levelSpinBox, 1, 1, 1, 1);
95
96
97 verticalLayout->addLayout(gridLayout);
98
99 verticalSpacer = new QSpacerItem(20, 40, QSizePolicy::Policy::Minimum, QSizePolicy::Policy::Expanding);
100
101 verticalLayout->addItem(verticalSpacer);
102
103
104 retranslateUi(ToneProducerWidget);
105
106 QMetaObject::connectSlotsByName(ToneProducerWidget);
107 } // setupUi
108
109 void retranslateUi(QWidget *ToneProducerWidget)
110 {
111 ToneProducerWidget->setWindowTitle(QCoreApplication::translate("ToneProducerWidget", "Form", nullptr));
112 nameLabel->setText(QCoreApplication::translate("ToneProducerWidget", "Audio Tone", nullptr));
113 label->setText(QCoreApplication::translate("ToneProducerWidget", "Frequency", nullptr));
114 frequencySpinBox->setSuffix(QCoreApplication::translate("ToneProducerWidget", " Hz", nullptr));
115 label_3->setText(QCoreApplication::translate("ToneProducerWidget", "Level", nullptr));
116 levelSpinBox->setSuffix(QCoreApplication::translate("ToneProducerWidget", " dB", nullptr));
117 } // retranslateUi
118
119};
120
121namespace Ui {
122 class ToneProducerWidget: public Ui_ToneProducerWidget {};
123} // namespace Ui
124
125QT_END_NAMESPACE
126
127#endif // UI_TONEPRODUCERWIDGET_H