Начал реализовывать обмен запросами к БД

This commit is contained in:
krivoshein
2024-12-06 11:15:02 +03:00
parent 53b37240eb
commit 2f48cf3921
107 changed files with 938 additions and 1189 deletions

View File

@@ -42,6 +42,7 @@ public:
QLabel *lblLoggedInInstructor;
QSpacerItem *horizontalSpacer;
QToolButton *btnUpdateStyleSheet;
QToolButton *btnQueryGetListInstructors;
void setupUi(QWidget *InstructorsAndTraineesWidget)
{
@@ -144,6 +145,12 @@ public:
horizontalLayout_1->addWidget(btnUpdateStyleSheet);
btnQueryGetListInstructors = new QToolButton(groupBox);
btnQueryGetListInstructors->setObjectName(QString::fromUtf8("btnQueryGetListInstructors"));
btnQueryGetListInstructors->setMinimumSize(QSize(58, 58));
horizontalLayout_1->addWidget(btnQueryGetListInstructors);
gridLayout_2->addLayout(horizontalLayout_1, 0, 0, 1, 1);
@@ -170,6 +177,7 @@ public:
lblLoggedInPrefix->setText(QCoreApplication::translate("InstructorsAndTraineesWidget", "Logged in Instructor: ", nullptr));
lblLoggedInInstructor->setText(QCoreApplication::translate("InstructorsAndTraineesWidget", "none", nullptr));
btnUpdateStyleSheet->setText(QCoreApplication::translate("InstructorsAndTraineesWidget", "Update StyleSheet", nullptr));
btnQueryGetListInstructors->setText(QCoreApplication::translate("InstructorsAndTraineesWidget", "GET_LIST_INSTRUCTORS", nullptr));
} // retranslateUi
};