CuteLogger
Fast and simple logging solution for Qt based applications
ui_directshowvideowidget.h
1 /********************************************************************************
2 ** Form generated from reading UI file 'directshowvideowidget.ui'
3 **
4 ** Created by: Qt User Interface Compiler version 5.11.3
5 **
6 ** WARNING! All changes made in this file will be lost when recompiling UI file!
7 ********************************************************************************/
8 
9 #ifndef UI_DIRECTSHOWVIDEOWIDGET_H
10 #define UI_DIRECTSHOWVIDEOWIDGET_H
11 
12 #include <QtCore/QVariant>
13 #include <QtWidgets/QApplication>
14 #include <QtWidgets/QComboBox>
15 #include <QtWidgets/QGridLayout>
16 #include <QtWidgets/QLabel>
17 #include <QtWidgets/QSpacerItem>
18 #include <QtWidgets/QVBoxLayout>
19 #include <QtWidgets/QWidget>
20 
21 QT_BEGIN_NAMESPACE
22 
23 class Ui_DirectShowVideoWidget
24 {
25 public:
26  QVBoxLayout *verticalLayout;
27  QLabel *label;
28  QGridLayout *gridLayout;
29  QSpacerItem *horizontalSpacer;
30  QComboBox *videoCombo;
31  QLabel *label_3;
32  QLabel *label_2;
33  QComboBox *audioCombo;
34  QSpacerItem *verticalSpacer;
35 
36  void setupUi(QWidget *DirectShowVideoWidget)
37  {
38  if (DirectShowVideoWidget->objectName().isEmpty())
39  DirectShowVideoWidget->setObjectName(QStringLiteral("DirectShowVideoWidget"));
40  DirectShowVideoWidget->resize(384, 284);
41  verticalLayout = new QVBoxLayout(DirectShowVideoWidget);
42  verticalLayout->setObjectName(QStringLiteral("verticalLayout"));
43  label = new QLabel(DirectShowVideoWidget);
44  label->setObjectName(QStringLiteral("label"));
45  QFont font;
46  font.setBold(true);
47  font.setWeight(75);
48  label->setFont(font);
49  label->setAlignment(Qt::AlignCenter);
50 
51  verticalLayout->addWidget(label);
52 
53  gridLayout = new QGridLayout();
54  gridLayout->setObjectName(QStringLiteral("gridLayout"));
55  horizontalSpacer = new QSpacerItem(40, 20, QSizePolicy::Expanding, QSizePolicy::Minimum);
56 
57  gridLayout->addItem(horizontalSpacer, 0, 3, 3, 1);
58 
59  videoCombo = new QComboBox(DirectShowVideoWidget);
60  videoCombo->addItem(QString());
61  videoCombo->setObjectName(QStringLiteral("videoCombo"));
62 
63  gridLayout->addWidget(videoCombo, 1, 2, 1, 1);
64 
65  label_3 = new QLabel(DirectShowVideoWidget);
66  label_3->setObjectName(QStringLiteral("label_3"));
67  label_3->setAlignment(Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter);
68 
69  gridLayout->addWidget(label_3, 1, 0, 1, 1);
70 
71  label_2 = new QLabel(DirectShowVideoWidget);
72  label_2->setObjectName(QStringLiteral("label_2"));
73  label_2->setAlignment(Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter);
74 
75  gridLayout->addWidget(label_2, 2, 0, 1, 1);
76 
77  audioCombo = new QComboBox(DirectShowVideoWidget);
78  audioCombo->addItem(QString());
79  audioCombo->setObjectName(QStringLiteral("audioCombo"));
80 
81  gridLayout->addWidget(audioCombo, 2, 2, 1, 1);
82 
83 
84  verticalLayout->addLayout(gridLayout);
85 
86  verticalSpacer = new QSpacerItem(20, 260, QSizePolicy::Minimum, QSizePolicy::Expanding);
87 
88  verticalLayout->addItem(verticalSpacer);
89 
90 
91  retranslateUi(DirectShowVideoWidget);
92 
93  QMetaObject::connectSlotsByName(DirectShowVideoWidget);
94  } // setupUi
95 
96  void retranslateUi(QWidget *DirectShowVideoWidget)
97  {
98  DirectShowVideoWidget->setWindowTitle(QApplication::translate("DirectShowVideoWidget", "Form", nullptr));
99  label->setText(QApplication::translate("DirectShowVideoWidget", "Audio/Video Device", nullptr));
100  videoCombo->setItemText(0, QApplication::translate("DirectShowVideoWidget", "None", nullptr));
101 
102  label_3->setText(QApplication::translate("DirectShowVideoWidget", "Video Input", nullptr));
103  label_2->setText(QApplication::translate("DirectShowVideoWidget", "Audio Input", nullptr));
104  audioCombo->setItemText(0, QApplication::translate("DirectShowVideoWidget", "None", nullptr));
105 
106  } // retranslateUi
107 
108 };
109 
110 namespace Ui {
111  class DirectShowVideoWidget: public Ui_DirectShowVideoWidget {};
112 } // namespace Ui
113 
114 QT_END_NAMESPACE
115 
116 #endif // UI_DIRECTSHOWVIDEOWIDGET_H
Definition: addencodepresetdialog.h:24