полная сборка рабочая с docTasks

This commit is contained in:
krivoshein
2024-11-27 16:39:01 +03:00
parent 9c0fae5df9
commit 923764eaf3
24 changed files with 235 additions and 206 deletions

View File

@@ -14,6 +14,8 @@
#include <QtWidgets/QGridLayout>
#include <QtWidgets/QGroupBox>
#include <QtWidgets/QHBoxLayout>
#include <QtWidgets/QLabel>
#include <QtWidgets/QLineEdit>
#include <QtWidgets/QWidget>
QT_BEGIN_NAMESPACE
@@ -26,6 +28,9 @@ public:
QGroupBox *groupBox;
QGridLayout *gridLayout_2;
QHBoxLayout *horizontalLayout_2;
QHBoxLayout *horizontalLayout_3;
QLabel *label;
QLineEdit *editCode;
void setupUi(QWidget *DocTasksWidget)
{
@@ -49,6 +54,21 @@ public:
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"));
horizontalLayout_3->addWidget(editCode);
gridLayout_2->addLayout(horizontalLayout_3, 1, 0, 1, 1);
horizontalLayout->addWidget(groupBox);
@@ -65,6 +85,7 @@ public:
{
DocTasksWidget->setWindowTitle(QCoreApplication::translate("DocTasksWidget", "Form", nullptr));
groupBox->setTitle(QCoreApplication::translate("DocTasksWidget", "Document", nullptr));
label->setText(QCoreApplication::translate("DocTasksWidget", "Code", nullptr));
} // retranslateUi
};