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 5.15.8
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(QString::fromUtf8("ToneProducerWidget"));
42 ToneProducerWidget->resize(394, 294);
43 verticalLayout = new QVBoxLayout(ToneProducerWidget);
44 verticalLayout->setObjectName(QString::fromUtf8("verticalLayout"));
45 nameLabel = new QLabel(ToneProducerWidget);
46 nameLabel->setObjectName(QString::fromUtf8("nameLabel"));
47 QFont font;
48 font.setBold(true);
49 font.setWeight(75);
50 nameLabel->setFont(font);
51 nameLabel->setAlignment(Qt::AlignCenter);
52
53 verticalLayout->addWidget(nameLabel);
54
55 preset = new ServicePresetWidget(ToneProducerWidget);
56 preset->setObjectName(QString::fromUtf8("preset"));
57
58 verticalLayout->addWidget(preset);
59
60 gridLayout = new QGridLayout();
61 gridLayout->setObjectName(QString::fromUtf8("gridLayout"));
62 label = new QLabel(ToneProducerWidget);
63 label->setObjectName(QString::fromUtf8("label"));
64 label->setAlignment(Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter);
65
66 gridLayout->addWidget(label, 0, 0, 1, 1);
67
68 frequencySpinBox = new QSpinBox(ToneProducerWidget);
69 frequencySpinBox->setObjectName(QString::fromUtf8("frequencySpinBox"));
70 frequencySpinBox->setMinimum(20);
71 frequencySpinBox->setMaximum(20000);
72 frequencySpinBox->setValue(1000);
73
74 gridLayout->addWidget(frequencySpinBox, 0, 1, 1, 1);
75
76 horizontalSpacer = new QSpacerItem(40, 20, QSizePolicy::Expanding, QSizePolicy::Minimum);
77
78 gridLayout->addItem(horizontalSpacer, 0, 2, 1, 1);
79
80 label_3 = new QLabel(ToneProducerWidget);
81 label_3->setObjectName(QString::fromUtf8("label_3"));
82 label_3->setAlignment(Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter);
83
84 gridLayout->addWidget(label_3, 1, 0, 1, 1);
85
86 levelSpinBox = new QSpinBox(ToneProducerWidget);
87 levelSpinBox->setObjectName(QString::fromUtf8("levelSpinBox"));
88 levelSpinBox->setMinimum(-90);
89 levelSpinBox->setMaximum(0);
90 levelSpinBox->setValue(0);
91
92 gridLayout->addWidget(levelSpinBox, 1, 1, 1, 1);
93
94
95 verticalLayout->addLayout(gridLayout);
96
97 verticalSpacer = new QSpacerItem(20, 40, QSizePolicy::Minimum, QSizePolicy::Expanding);
98
99 verticalLayout->addItem(verticalSpacer);
100
101
102 retranslateUi(ToneProducerWidget);
103
104 QMetaObject::connectSlotsByName(ToneProducerWidget);
105 } // setupUi
106
107 void retranslateUi(QWidget *ToneProducerWidget)
108 {
109 ToneProducerWidget->setWindowTitle(QCoreApplication::translate("ToneProducerWidget", "Form", nullptr));
110 nameLabel->setText(QCoreApplication::translate("ToneProducerWidget", "Audio Tone", nullptr));
111 label->setText(QCoreApplication::translate("ToneProducerWidget", "Frequency", nullptr));
112 frequencySpinBox->setSuffix(QCoreApplication::translate("ToneProducerWidget", " Hz", nullptr));
113 label_3->setText(QCoreApplication::translate("ToneProducerWidget", "Level", nullptr));
114 levelSpinBox->setSuffix(QCoreApplication::translate("ToneProducerWidget", " dB", nullptr));
115 } // retranslateUi
116
117};
118
119namespace Ui {
120 class ToneProducerWidget: public Ui_ToneProducerWidget {};
121} // namespace Ui
122
123QT_END_NAMESPACE
124
125#endif // UI_TONEPRODUCERWIDGET_H