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