Доделал стилизацию интерфейса

This commit is contained in:
krivoshein
2024-12-02 12:12:21 +03:00
parent d4ec9a3ce8
commit 7e810e584c
58 changed files with 511 additions and 323 deletions

View File

@@ -41,6 +41,7 @@ public:
QLabel *lblLoggedInInstructor;
QSpacerItem *horizontalSpacer;
QToolButton *btnDocTasks;
QToolButton *toolButton;
void setupUi(QWidget *InstructorsAndTraineesWidget)
{
@@ -140,6 +141,12 @@ public:
horizontalLayout_2->addWidget(btnDocTasks);
toolButton = new QToolButton(groupBox);
toolButton->setObjectName(QString::fromUtf8("toolButton"));
toolButton->setMinimumSize(QSize(58, 58));
horizontalLayout_2->addWidget(toolButton);
verticalLayout_2->addLayout(horizontalLayout_2);
@@ -172,6 +179,7 @@ public:
#if QT_CONFIG(shortcut)
btnDocTasks->setShortcut(QCoreApplication::translate("InstructorsAndTraineesWidget", "Ctrl+Shift+S", nullptr));
#endif // QT_CONFIG(shortcut)
toolButton->setText(QCoreApplication::translate("InstructorsAndTraineesWidget", "Update StyleSheet", nullptr));
} // retranslateUi
};