9 #ifndef UI_SELECTOR_WID_H
10 #define UI_SELECTOR_WID_H
12 #include <QtCore/QVariant>
13 #include <QtGui/QAction>
14 #include <QtGui/QApplication>
15 #include <QtGui/QButtonGroup>
16 #include <QtGui/QGridLayout>
17 #include <QtGui/QHeaderView>
18 #include <QtGui/QLabel>
19 #include <QtGui/QLineEdit>
20 #include <QtGui/QWidget>
27 QGridLayout *gridLayout;
29 QLineEdit *findLineEdit;
31 void setupUi(QWidget *SelectorWid)
33 if (SelectorWid->objectName().isEmpty())
34 SelectorWid->setObjectName(QString::fromUtf8(
"SelectorWid"));
35 SelectorWid->resize(292, 287);
36 gridLayout =
new QGridLayout(SelectorWid);
37 gridLayout->setObjectName(QString::fromUtf8(
"gridLayout"));
38 findLabel =
new QLabel(SelectorWid);
39 findLabel->setObjectName(QString::fromUtf8(
"findLabel"));
40 findLabel->setPixmap(QPixmap(QString::fromUtf8(
":/icons/find.png")));
42 gridLayout->addWidget(findLabel, 0, 0, 1, 1);
44 findLineEdit =
new QLineEdit(SelectorWid);
45 findLineEdit->setObjectName(QString::fromUtf8(
"findLineEdit"));
47 gridLayout->addWidget(findLineEdit, 0, 1, 1, 1);
50 retranslateUi(SelectorWid);
52 QMetaObject::connectSlotsByName(SelectorWid);
55 void retranslateUi(QWidget *SelectorWid)
57 SelectorWid->setWindowTitle(QApplication::translate(
"SelectorWid",
"Selector", 0, QApplication::UnicodeUTF8));
58 findLabel->setText(QString());
69 #endif // UI_SELECTOR_WID_H
Definition: ui_selector_wid.h:64
Definition: ui_selector_wid.h:24