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 5.15.7
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
24QT_BEGIN_NAMESPACE
25
26class Ui_AlsaWidget
27{
28public:
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(QString::fromUtf8("AlsaWidget"));
45 AlsaWidget->resize(296, 204);
46 verticalLayout = new QVBoxLayout(AlsaWidget);
47 verticalLayout->setObjectName(QString::fromUtf8("verticalLayout"));
48 label_2 = new QLabel(AlsaWidget);
49 label_2->setObjectName(QString::fromUtf8("label_2"));
50 QFont font;
51 font.setBold(true);
52 font.setWeight(75);
53 label_2->setFont(font);
54 label_2->setAlignment(Qt::AlignCenter);
55
56 verticalLayout->addWidget(label_2);
57
58 preset = new ServicePresetWidget(AlsaWidget);
59 preset->setObjectName(QString::fromUtf8("preset"));
60
61 verticalLayout->addWidget(preset);
62
63 gridLayout = new QGridLayout();
64 gridLayout->setObjectName(QString::fromUtf8("gridLayout"));
65 horizontalSpacer = new QSpacerItem(40, 20, QSizePolicy::Expanding, QSizePolicy::Minimum);
66
67 gridLayout->addItem(horizontalSpacer, 0, 2, 1, 1);
68
69 applyButton = new QPushButton(AlsaWidget);
70 applyButton->setObjectName(QString::fromUtf8("applyButton"));
71
72 gridLayout->addWidget(applyButton, 2, 0, 1, 1);
73
74 label = new QLabel(AlsaWidget);
75 label->setObjectName(QString::fromUtf8("label"));
76 label->setAlignment(Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter);
77
78 gridLayout->addWidget(label, 0, 0, 1, 1);
79
80 lineEdit = new QLineEdit(AlsaWidget);
81 lineEdit->setObjectName(QString::fromUtf8("lineEdit"));
82
83 gridLayout->addWidget(lineEdit, 0, 1, 1, 1);
84
85 label_3 = new QLabel(AlsaWidget);
86 label_3->setObjectName(QString::fromUtf8("label_3"));
87 label_3->setAlignment(Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter);
88
89 gridLayout->addWidget(label_3, 1, 0, 1, 1);
90
91 alsaChannelsSpinBox = new QSpinBox(AlsaWidget);
92 alsaChannelsSpinBox->setObjectName(QString::fromUtf8("alsaChannelsSpinBox"));
93 alsaChannelsSpinBox->setMaximum(8);
94 alsaChannelsSpinBox->setValue(2);
95
96 gridLayout->addWidget(alsaChannelsSpinBox, 1, 1, 1, 1);
97
98
99 verticalLayout->addLayout(gridLayout);
100
101 verticalSpacer = new QSpacerItem(20, 40, QSizePolicy::Minimum, QSizePolicy::Expanding);
102
103 verticalLayout->addItem(verticalSpacer);
104
105 QWidget::setTabOrder(lineEdit, alsaChannelsSpinBox);
106 QWidget::setTabOrder(alsaChannelsSpinBox, applyButton);
107
108 retranslateUi(AlsaWidget);
109
110 QMetaObject::connectSlotsByName(AlsaWidget);
111 } // setupUi
112
113 void retranslateUi(QWidget *AlsaWidget)
114 {
115 AlsaWidget->setWindowTitle(QCoreApplication::translate("AlsaWidget", "Form", nullptr));
116 label_2->setText(QCoreApplication::translate("AlsaWidget", "ALSA Audio", nullptr));
117 applyButton->setText(QCoreApplication::translate("AlsaWidget", "Apply", nullptr));
118 label->setText(QCoreApplication::translate("AlsaWidget", "PCM Device", nullptr));
119 lineEdit->setText(QCoreApplication::translate("AlsaWidget", "default", nullptr));
120 label_3->setText(QCoreApplication::translate("AlsaWidget", "Channels", nullptr));
121 } // retranslateUi
122
123};
124
125namespace Ui {
126 class AlsaWidget: public Ui_AlsaWidget {};
127} // namespace Ui
128
129QT_END_NAMESPACE
130
131#endif // UI_ALSAWIDGET_H