1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96
|
/********************************************************************************
** Form generated from reading UI file 'findstuff.ui'
**
** Created by: Qt User Interface Compiler version 5.10.1
**
** WARNING! All changes made in this file will be lost when recompiling UI file!
********************************************************************************/
#ifndef UI_FINDSTUFF_H
#define UI_FINDSTUFF_H
#include <QtCore/QVariant>
#include <QtWidgets/QAction>
#include <QtWidgets/QApplication>
#include <QtWidgets/QButtonGroup>
#include <QtWidgets/QGridLayout>
#include <QtWidgets/QHeaderView>
#include <QtWidgets/QLabel>
#include <QtWidgets/QLineEdit>
#include <QtWidgets/QPushButton>
#include <QtWidgets/QTextEdit>
#include <QtWidgets/QVBoxLayout>
#include <QtWidgets/QWidget>
QT_BEGIN_NAMESPACE
class Ui_findStuff
{
public:
QVBoxLayout *verticalLayout;
QTextEdit *textEdit;
QGridLayout *gridLayout;
QLabel *label;
QLineEdit *lineEdit;
QPushButton *searchButton;
void setupUi(QWidget *findStuff)
{
if (findStuff->objectName().isEmpty())
findStuff->setObjectName(QStringLiteral("findStuff"));
findStuff->resize(400, 300);
verticalLayout = new QVBoxLayout(findStuff);
verticalLayout->setSpacing(6);
verticalLayout->setContentsMargins(11, 11, 11, 11);
verticalLayout->setObjectName(QStringLiteral("verticalLayout"));
textEdit = new QTextEdit(findStuff);
textEdit->setObjectName(QStringLiteral("textEdit"));
verticalLayout->addWidget(textEdit);
gridLayout = new QGridLayout();
gridLayout->setSpacing(6);
gridLayout->setObjectName(QStringLiteral("gridLayout"));
label = new QLabel(findStuff);
label->setObjectName(QStringLiteral("label"));
gridLayout->addWidget(label, 0, 0, 1, 1);
lineEdit = new QLineEdit(findStuff);
lineEdit->setObjectName(QStringLiteral("lineEdit"));
gridLayout->addWidget(lineEdit, 0, 1, 1, 1);
searchButton = new QPushButton(findStuff);
searchButton->setObjectName(QStringLiteral("searchButton"));
gridLayout->addWidget(searchButton, 0, 2, 1, 1);
verticalLayout->addLayout(gridLayout);
retranslateUi(findStuff);
QMetaObject::connectSlotsByName(findStuff);
} // setupUi
void retranslateUi(QWidget *findStuff)
{
findStuff->setWindowTitle(QApplication::translate("findStuff", "findStuff", nullptr));
label->setText(QApplication::translate("findStuff", "search", nullptr));
searchButton->setText(QApplication::translate("findStuff", "Search", nullptr));
} // retranslateUi
};
namespace Ui {
class findStuff: public Ui_findStuff {}; // why do we add this namespace at the end of the file
} // namespace Ui
QT_END_NAMESPACE
#endif // UI_FINDSTUFF_H
|