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