new branch

This commit is contained in:
krivoshein
2024-11-27 09:51:01 +03:00
parent ce4e3e0a95
commit b94bc4764e
53 changed files with 16860 additions and 503 deletions

View File

@@ -0,0 +1,78 @@
/********************************************************************************
** 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/QWidget>
QT_BEGIN_NAMESPACE
class Ui_DocTasksWidget
{
public:
QGridLayout *gridLayout;
QHBoxLayout *horizontalLayout;
QGroupBox *groupBox;
QGridLayout *gridLayout_2;
QHBoxLayout *horizontalLayout_2;
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->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));
} // retranslateUi
};
namespace Ui {
class DocTasksWidget: public Ui_DocTasksWidget {};
} // namespace Ui
QT_END_NAMESPACE
#endif // UI_DOCTASKSWIDGET_H

View File

@@ -38,6 +38,7 @@ public:
QSpacerItem *horizontalSpacer;
QLabel *label;
QLabel *lblLoggedInInstructor;
QToolButton *btnDocTasks;
void setupUi(QWidget *InstructorsAndTraineesWidget)
{
@@ -104,6 +105,17 @@ public:
horizontalLayout_2->addWidget(lblLoggedInInstructor);
btnDocTasks = new QToolButton(groupBox);
btnDocTasks->setObjectName(QString::fromUtf8("btnDocTasks"));
btnDocTasks->setMinimumSize(QSize(140, 58));
QIcon icon2;
icon2.addFile(QString::fromUtf8(":/icons/docTasks.png"), QSize(), QIcon::Normal, QIcon::Off);
btnDocTasks->setIcon(icon2);
btnDocTasks->setIconSize(QSize(32, 32));
btnDocTasks->setToolButtonStyle(Qt::ToolButtonTextUnderIcon);
horizontalLayout_2->addWidget(btnDocTasks);
verticalLayout_2->addLayout(horizontalLayout_2);
@@ -130,6 +142,10 @@ public:
btnAuthorizationInstructor->setText(QCoreApplication::translate("InstructorsAndTraineesWidget", "Authorization Instructor", nullptr));
label->setText(QCoreApplication::translate("InstructorsAndTraineesWidget", "Logged in instructor:", nullptr));
lblLoggedInInstructor->setText(QCoreApplication::translate("InstructorsAndTraineesWidget", "none", nullptr));
btnDocTasks->setText(QCoreApplication::translate("InstructorsAndTraineesWidget", "Doc tasks", nullptr));
#if QT_CONFIG(shortcut)
btnDocTasks->setShortcut(QCoreApplication::translate("InstructorsAndTraineesWidget", "Ctrl+Shift+S", nullptr));
#endif // QT_CONFIG(shortcut)
} // retranslateUi
};