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.9.2
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/QAction>
14 #include <QtWidgets/QApplication>
15 #include <QtWidgets/QButtonGroup>
16 #include <QtWidgets/QComboBox>
17 #include <QtWidgets/QGridLayout>
18 #include <QtWidgets/QHeaderView>
19 #include <QtWidgets/QLabel>
20 #include <QtWidgets/QSpacerItem>
21 #include <QtWidgets/QVBoxLayout>
22 #include <QtWidgets/QWidget>
23 
24 QT_BEGIN_NAMESPACE
25 
26 class Ui_DirectShowVideoWidget
27 {
28 public:
29  QVBoxLayout *verticalLayout;
30  QLabel *label;
31  QGridLayout *gridLayout;
32  QSpacerItem *horizontalSpacer;
33  QComboBox *videoCombo;
34  QLabel *label_3;
35  QLabel *label_2;
36  QComboBox *audioCombo;
37  QSpacerItem *verticalSpacer;
38 
39  void setupUi(QWidget *DirectShowVideoWidget)
40  {
41  if (DirectShowVideoWidget->objectName().isEmpty())
42  DirectShowVideoWidget->setObjectName(QStringLiteral("DirectShowVideoWidget"));
43  DirectShowVideoWidget->resize(384, 284);
44  verticalLayout = new QVBoxLayout(DirectShowVideoWidget);
45  verticalLayout->setObjectName(QStringLiteral("verticalLayout"));
46  label = new QLabel(DirectShowVideoWidget);
47  label->setObjectName(QStringLiteral("label"));
48  QFont font;
49  font.setBold(true);
50  font.setWeight(75);
51  label->setFont(font);
52  label->setAlignment(Qt::AlignCenter);
53 
54  verticalLayout->addWidget(label);
55 
56  gridLayout = new QGridLayout();
57  gridLayout->setObjectName(QStringLiteral("gridLayout"));
58  horizontalSpacer = new QSpacerItem(40, 20, QSizePolicy::Expanding, QSizePolicy::Minimum);
59 
60  gridLayout->addItem(horizontalSpacer, 0, 3, 3, 1);
61 
62  videoCombo = new QComboBox(DirectShowVideoWidget);
63  videoCombo->setObjectName(QStringLiteral("videoCombo"));
64 
65  gridLayout->addWidget(videoCombo, 1, 2, 1, 1);
66 
67  label_3 = new QLabel(DirectShowVideoWidget);
68  label_3->setObjectName(QStringLiteral("label_3"));
69  label_3->setAlignment(Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter);
70 
71  gridLayout->addWidget(label_3, 1, 0, 1, 1);
72 
73  label_2 = new QLabel(DirectShowVideoWidget);
74  label_2->setObjectName(QStringLiteral("label_2"));
75  label_2->setAlignment(Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter);
76 
77  gridLayout->addWidget(label_2, 2, 0, 1, 1);
78 
79  audioCombo = new QComboBox(DirectShowVideoWidget);
80  audioCombo->setObjectName(QStringLiteral("audioCombo"));
81 
82  gridLayout->addWidget(audioCombo, 2, 2, 1, 1);
83 
84 
85  verticalLayout->addLayout(gridLayout);
86 
87  verticalSpacer = new QSpacerItem(20, 260, QSizePolicy::Minimum, QSizePolicy::Expanding);
88 
89  verticalLayout->addItem(verticalSpacer);
90 
91 
92  retranslateUi(DirectShowVideoWidget);
93 
94  QMetaObject::connectSlotsByName(DirectShowVideoWidget);
95  } // setupUi
96 
97  void retranslateUi(QWidget *DirectShowVideoWidget)
98  {
99  DirectShowVideoWidget->setWindowTitle(QApplication::translate("DirectShowVideoWidget", "Form", Q_NULLPTR));
100  label->setText(QApplication::translate("DirectShowVideoWidget", "DirectShow", Q_NULLPTR));
101  videoCombo->clear();
102  videoCombo->insertItems(0, QStringList()
103  << QApplication::translate("DirectShowVideoWidget", "None", Q_NULLPTR)
104  );
105  label_3->setText(QApplication::translate("DirectShowVideoWidget", "Video Input", Q_NULLPTR));
106  label_2->setText(QApplication::translate("DirectShowVideoWidget", "Audio Input", Q_NULLPTR));
107  audioCombo->clear();
108  audioCombo->insertItems(0, QStringList()
109  << QApplication::translate("DirectShowVideoWidget", "None", Q_NULLPTR)
110  );
111  } // retranslateUi
112 
113 };
114 
115 namespace Ui {
116  class DirectShowVideoWidget: public Ui_DirectShowVideoWidget {};
117 } // namespace Ui
118 
119 QT_END_NAMESPACE
120 
121 #endif // UI_DIRECTSHOWVIDEOWIDGET_H
Definition: addencodepresetdialog.h:24