#ifndef UI_PLANE_H
#define UI_PLANE_H
#include <QtCore/QVariant>
#include <QtGui/QAction>
#include <QtGui/QApplication>
#include <QtGui/QButtonGroup>
#include <QtGui/QFormLayout>
#include <QtGui/QGroupBox>
#include <QtGui/QHeaderView>
#include <QtGui/QLabel>
#include <QtGui/QLineEdit>
#include <QtGui/QVBoxLayout>
#include <QtGui/QWidget>
QT_BEGIN_NAMESPACE
class Ui_PlaneUi
{
public:
QVBoxLayout *verticalLayout;
QGroupBox *plane_group;
QFormLayout *formLayout_2;
QLabel *name_label;
QLineEdit *name;
QLabel *people_capacity_label;
QLabel *cargo_capacity_label;
QLineEdit *people_capacity;
QLineEdit *cargo_capacity;
QLineEdit *count;
QLineEdit *correct_ratio;
QLabel *count_label;
QLabel *correct_ratio_label;
void setupUi(QWidget *PlaneUi)
{
if (PlaneUi->objectName().isEmpty())
PlaneUi->setObjectName(QString::fromUtf8("PlaneUi"));
PlaneUi->resize(531, 198);
verticalLayout = new QVBoxLayout(PlaneUi);
verticalLayout->setObjectName(QString::fromUtf8("verticalLayout"));
plane_group = new QGroupBox(PlaneUi);
plane_group->setObjectName(QString::fromUtf8("plane_group"));
formLayout_2 = new QFormLayout(plane_group);
formLayout_2->setObjectName(QString::fromUtf8("formLayout_2"));
name_label = new QLabel(plane_group);
name_label->setObjectName(QString::fromUtf8("name_label"));
formLayout_2->setWidget(0, QFormLayout::LabelRole, name_label);
name = new QLineEdit(plane_group);
name->setObjectName(QString::fromUtf8("name"));
formLayout_2->setWidget(0, QFormLayout::FieldRole, name);
people_capacity_label = new QLabel(plane_group);
people_capacity_label->setObjectName(QString::fromUtf8("people_capacity_label"));
formLayout_2->setWidget(1, QFormLayout::LabelRole, people_capacity_label);
cargo_capacity_label = new QLabel(plane_group);
cargo_capacity_label->setObjectName(QString::fromUtf8("cargo_capacity_label"));
formLayout_2->setWidget(2, QFormLayout::LabelRole, cargo_capacity_label);
people_capacity = new QLineEdit(plane_group);
people_capacity->setObjectName(QString::fromUtf8("people_capacity"));
formLayout_2->setWidget(1, QFormLayout::FieldRole, people_capacity);
cargo_capacity = new QLineEdit(plane_group);
cargo_capacity->setObjectName(QString::fromUtf8("cargo_capacity"));
formLayout_2->setWidget(2, QFormLayout::FieldRole, cargo_capacity);
count = new QLineEdit(plane_group);
count->setObjectName(QString::fromUtf8("count"));
formLayout_2->setWidget(3, QFormLayout::FieldRole, count);
correct_ratio = new QLineEdit(plane_group);
correct_ratio->setObjectName(QString::fromUtf8("correct_ratio"));
formLayout_2->setWidget(4, QFormLayout::FieldRole, correct_ratio);
count_label = new QLabel(plane_group);
count_label->setObjectName(QString::fromUtf8("count_label"));
formLayout_2->setWidget(3, QFormLayout::LabelRole, count_label);
correct_ratio_label = new QLabel(plane_group);
correct_ratio_label->setObjectName(QString::fromUtf8("correct_ratio_label"));
formLayout_2->setWidget(4, QFormLayout::LabelRole, correct_ratio_label);
verticalLayout->addWidget(plane_group);
retranslateUi(PlaneUi);
QMetaObject::connectSlotsByName(PlaneUi);
} // setupUi
void retranslateUi(QWidget *PlaneUi)
{
PlaneUi->setWindowTitle(QApplication::translate("PlaneUi", "Form", 0, QApplication::UnicodeUTF8));
plane_group->setTitle(QApplication::translate("PlaneUi", "Plane", 0, QApplication::UnicodeUTF8));
name_label->setText(QApplication::translate("PlaneUi", "Name", 0, QApplication::UnicodeUTF8));
people_capacity_label->setText(QApplication::translate("PlaneUi", "People Capacity", 0, QApplication::UnicodeUTF8));
cargo_capacity_label->setText(QApplication::translate("PlaneUi", "Cargo Capacity", 0, QApplication::UnicodeUTF8));
count_label->setText(QApplication::translate("PlaneUi", "Count", 0, QApplication::UnicodeUTF8));
correct_ratio_label->setText(QApplication::translate("PlaneUi", "Correct Ratio", 0, QApplication::UnicodeUTF8));
Q_UNUSED(PlaneUi);
} // retranslateUi
};
namespace Ui {
class PlaneUi: public Ui_PlaneUi {};
} // namespace Ui
QT_END_NAMESPACE
#endif // UI_PLANE_H