ref: segregate systems, codestyle, busy message

This commit is contained in:
semenov
2024-12-27 15:41:41 +03:00
parent fc7f311d1e
commit f444b48892
103 changed files with 4756 additions and 2763 deletions

View File

@@ -0,0 +1,35 @@
#ifndef INSTRUCTORBUTTONGROUPWIDGET_H
#define INSTRUCTORBUTTONGROUPWIDGET_H
#include <QWidget>
#include "mainwindow.h"
namespace Ui {
class InstructorButtonGroupWidget;
}
class MainWindow;
class InstructorButtonGroupWidget : public QWidget
{
Q_OBJECT
public:
explicit InstructorButtonGroupWidget(QWidget *parent = nullptr);
void initialize(MainWindow *mainWindow);
~InstructorButtonGroupWidget();
private slots:
void on_loadToServerButton_clicked();
void on_undoChangesButton_clicked();
void on_startWithCurrentChangesButton_clicked();
private:
Ui::InstructorButtonGroupWidget *ui;
MainWindow *mainWindow;
};
#endif // INSTRUCTORBUTTONGROUPWIDGET_H