mirror of
https://gitea.msk.dinamika-avia.ru/Constanta-Design/RRJServer.git
synced 2026-03-28 19:55:48 +03:00
101 lines
3.2 KiB
C++
101 lines
3.2 KiB
C++
/********************************************************************************
|
|
** Form generated from reading UI file 'doctaskswidget.ui'
|
|
**
|
|
** Created by: Qt User Interface Compiler version 5.14.2
|
|
**
|
|
** WARNING! All changes made in this file will be lost when recompiling UI file!
|
|
********************************************************************************/
|
|
|
|
#ifndef UI_DOCTASKSWIDGET_H
|
|
#define UI_DOCTASKSWIDGET_H
|
|
|
|
#include <QtCore/QVariant>
|
|
#include <QtWidgets/QApplication>
|
|
#include <QtWidgets/QGridLayout>
|
|
#include <QtWidgets/QGroupBox>
|
|
#include <QtWidgets/QHBoxLayout>
|
|
#include <QtWidgets/QLabel>
|
|
#include <QtWidgets/QLineEdit>
|
|
#include <QtWidgets/QWidget>
|
|
|
|
QT_BEGIN_NAMESPACE
|
|
|
|
class Ui_DocTasksWidget
|
|
{
|
|
public:
|
|
QGridLayout *gridLayout;
|
|
QHBoxLayout *horizontalLayout;
|
|
QGroupBox *groupBox;
|
|
QGridLayout *gridLayout_2;
|
|
QHBoxLayout *horizontalLayout_2;
|
|
QHBoxLayout *horizontalLayout_3;
|
|
QLabel *label;
|
|
QLineEdit *editCode;
|
|
|
|
void setupUi(QWidget *DocTasksWidget)
|
|
{
|
|
if (DocTasksWidget->objectName().isEmpty())
|
|
DocTasksWidget->setObjectName(QString::fromUtf8("DocTasksWidget"));
|
|
DocTasksWidget->resize(400, 300);
|
|
QFont font;
|
|
font.setFamily(QString::fromUtf8("Tahoma"));
|
|
font.setPointSize(10);
|
|
DocTasksWidget->setFont(font);
|
|
gridLayout = new QGridLayout(DocTasksWidget);
|
|
gridLayout->setObjectName(QString::fromUtf8("gridLayout"));
|
|
horizontalLayout = new QHBoxLayout();
|
|
horizontalLayout->setObjectName(QString::fromUtf8("horizontalLayout"));
|
|
groupBox = new QGroupBox(DocTasksWidget);
|
|
groupBox->setObjectName(QString::fromUtf8("groupBox"));
|
|
gridLayout_2 = new QGridLayout(groupBox);
|
|
gridLayout_2->setObjectName(QString::fromUtf8("gridLayout_2"));
|
|
horizontalLayout_2 = new QHBoxLayout();
|
|
horizontalLayout_2->setObjectName(QString::fromUtf8("horizontalLayout_2"));
|
|
|
|
gridLayout_2->addLayout(horizontalLayout_2, 0, 0, 1, 1);
|
|
|
|
horizontalLayout_3 = new QHBoxLayout();
|
|
horizontalLayout_3->setObjectName(QString::fromUtf8("horizontalLayout_3"));
|
|
label = new QLabel(groupBox);
|
|
label->setObjectName(QString::fromUtf8("label"));
|
|
|
|
horizontalLayout_3->addWidget(label);
|
|
|
|
editCode = new QLineEdit(groupBox);
|
|
editCode->setObjectName(QString::fromUtf8("editCode"));
|
|
editCode->setReadOnly(true);
|
|
|
|
horizontalLayout_3->addWidget(editCode);
|
|
|
|
|
|
gridLayout_2->addLayout(horizontalLayout_3, 1, 0, 1, 1);
|
|
|
|
|
|
horizontalLayout->addWidget(groupBox);
|
|
|
|
|
|
gridLayout->addLayout(horizontalLayout, 0, 0, 1, 1);
|
|
|
|
|
|
retranslateUi(DocTasksWidget);
|
|
|
|
QMetaObject::connectSlotsByName(DocTasksWidget);
|
|
} // setupUi
|
|
|
|
void retranslateUi(QWidget *DocTasksWidget)
|
|
{
|
|
DocTasksWidget->setWindowTitle(QCoreApplication::translate("DocTasksWidget", "Form", nullptr));
|
|
groupBox->setTitle(QCoreApplication::translate("DocTasksWidget", "Document", nullptr));
|
|
label->setText(QCoreApplication::translate("DocTasksWidget", "Code", nullptr));
|
|
} // retranslateUi
|
|
|
|
};
|
|
|
|
namespace Ui {
|
|
class DocTasksWidget: public Ui_DocTasksWidget {};
|
|
} // namespace Ui
|
|
|
|
QT_END_NAMESPACE
|
|
|
|
#endif // UI_DOCTASKSWIDGET_H
|