Перед внедрением списочной модели БД в GUI

This commit is contained in:
krivoshein
2024-12-10 10:27:00 +03:00
parent e6da40c4e7
commit 4556c07fc9
96 changed files with 1044 additions and 444 deletions

View File

@@ -42,7 +42,7 @@ public:
QLabel *lblLoggedInInstructor;
QSpacerItem *horizontalSpacer;
QToolButton *btnUpdateStyleSheet;
QToolButton *btnQueryGetListInstructors;
QToolButton *btnQueryGetAllLists;
void setupUi(QWidget *InstructorsAndTraineesWidget)
{
@@ -145,11 +145,11 @@ public:
horizontalLayout_1->addWidget(btnUpdateStyleSheet);
btnQueryGetListInstructors = new QToolButton(groupBox);
btnQueryGetListInstructors->setObjectName(QString::fromUtf8("btnQueryGetListInstructors"));
btnQueryGetListInstructors->setMinimumSize(QSize(58, 58));
btnQueryGetAllLists = new QToolButton(groupBox);
btnQueryGetAllLists->setObjectName(QString::fromUtf8("btnQueryGetAllLists"));
btnQueryGetAllLists->setMinimumSize(QSize(58, 58));
horizontalLayout_1->addWidget(btnQueryGetListInstructors);
horizontalLayout_1->addWidget(btnQueryGetAllLists);
gridLayout_2->addLayout(horizontalLayout_1, 0, 0, 1, 1);
@@ -177,7 +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));
btnQueryGetAllLists->setText(QCoreApplication::translate("InstructorsAndTraineesWidget", "GET_ALL_LISTS", nullptr));
} // retranslateUi
};