CuteLogger
Fast and simple logging solution for Qt based applications
ui_alsawidget.h
1 /********************************************************************************
2 ** Form generated from reading UI file 'alsawidget.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_ALSAWIDGET_H
10 #define UI_ALSAWIDGET_H
11 
12 #include <QtCore/QVariant>
13 #include <QtWidgets/QApplication>
14 #include <QtWidgets/QGridLayout>
15 #include <QtWidgets/QLabel>
16 #include <QtWidgets/QLineEdit>
17 #include <QtWidgets/QPushButton>
18 #include <QtWidgets/QSpacerItem>
19 #include <QtWidgets/QSpinBox>
20 #include <QtWidgets/QVBoxLayout>
21 #include <QtWidgets/QWidget>
22 #include "widgets/servicepresetwidget.h"
23 
24 QT_BEGIN_NAMESPACE
25 
26 class Ui_AlsaWidget
27 {
28 public:
29  QVBoxLayout *verticalLayout;
30  QLabel *label_2;
31  ServicePresetWidget *preset;
32  QGridLayout *gridLayout;
33  QSpacerItem *horizontalSpacer;
34  QPushButton *applyButton;
35  QLabel *label;
36  QLineEdit *lineEdit;
37  QLabel *label_3;
38  QSpinBox *alsaChannelsSpinBox;
39  QSpacerItem *verticalSpacer;
40 
41  void setupUi(QWidget *AlsaWidget)
42  {
43  if (AlsaWidget->objectName().isEmpty())
44  AlsaWidget->setObjectName("AlsaWidget");
45  AlsaWidget->resize(296, 204);
46  verticalLayout = new QVBoxLayout(AlsaWidget);
47  verticalLayout->setObjectName("verticalLayout");
48  label_2 = new QLabel(AlsaWidget);
49  label_2->setObjectName("label_2");
50  QFont font;
51  font.setBold(true);
52  label_2->setFont(font);
53  label_2->setAlignment(Qt::AlignCenter);
54 
55  verticalLayout->addWidget(label_2);
56 
57  preset = new ServicePresetWidget(AlsaWidget);
58  preset->setObjectName("preset");
59 
60  verticalLayout->addWidget(preset);
61 
62  gridLayout = new QGridLayout();
63  gridLayout->setObjectName("gridLayout");
64  horizontalSpacer = new QSpacerItem(40, 20, QSizePolicy::Policy::Expanding, QSizePolicy::Policy::Minimum);
65 
66  gridLayout->addItem(horizontalSpacer, 0, 2, 1, 1);
67 
68  applyButton = new QPushButton(AlsaWidget);
69  applyButton->setObjectName("applyButton");
70 
71  gridLayout->addWidget(applyButton, 2, 0, 1, 1);
72 
73  label = new QLabel(AlsaWidget);
74  label->setObjectName("label");
75  label->setAlignment(Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter);
76 
77  gridLayout->addWidget(label, 0, 0, 1, 1);
78 
79  lineEdit = new QLineEdit(AlsaWidget);
80  lineEdit->setObjectName("lineEdit");
81 
82  gridLayout->addWidget(lineEdit, 0, 1, 1, 1);
83 
84  label_3 = new QLabel(AlsaWidget);
85  label_3->setObjectName("label_3");
86  label_3->setAlignment(Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter);
87 
88  gridLayout->addWidget(label_3, 1, 0, 1, 1);
89 
90  alsaChannelsSpinBox = new QSpinBox(AlsaWidget);
91  alsaChannelsSpinBox->setObjectName("alsaChannelsSpinBox");
92  alsaChannelsSpinBox->setMaximum(8);
93  alsaChannelsSpinBox->setValue(2);
94 
95  gridLayout->addWidget(alsaChannelsSpinBox, 1, 1, 1, 1);
96 
97 
98  verticalLayout->addLayout(gridLayout);
99 
100  verticalSpacer = new QSpacerItem(20, 40, QSizePolicy::Policy::Minimum, QSizePolicy::Policy::Expanding);
101 
102  verticalLayout->addItem(verticalSpacer);
103 
104  QWidget::setTabOrder(lineEdit, alsaChannelsSpinBox);
105  QWidget::setTabOrder(alsaChannelsSpinBox, applyButton);
106 
107  retranslateUi(AlsaWidget);
108 
109  QMetaObject::connectSlotsByName(AlsaWidget);
110  } // setupUi
111 
112  void retranslateUi(QWidget *AlsaWidget)
113  {
114  AlsaWidget->setWindowTitle(QCoreApplication::translate("AlsaWidget", "Form", nullptr));
115  label_2->setText(QCoreApplication::translate("AlsaWidget", "ALSA Audio", nullptr));
116  applyButton->setText(QCoreApplication::translate("AlsaWidget", "Apply", nullptr));
117  label->setText(QCoreApplication::translate("AlsaWidget", "PCM Device", nullptr));
118  lineEdit->setText(QCoreApplication::translate("AlsaWidget", "default", nullptr));
119  label_3->setText(QCoreApplication::translate("AlsaWidget", "Channels", nullptr));
120  } // retranslateUi
121 
122 };
123 
124 namespace Ui {
125  class AlsaWidget: public Ui_AlsaWidget {};
126 } // namespace Ui
127 
128 QT_END_NAMESPACE
129 
130 #endif // UI_ALSAWIDGET_H