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