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