mirror of
https://gitea.msk.dinamika-avia.ru/Constanta-Design/RRJClient.git
synced 2026-03-28 05:25:39 +03:00
33 lines
703 B
C++
33 lines
703 B
C++
#ifndef INSTRUCTORBUTTONGROUPWIDGET_H
|
|
#define INSTRUCTORBUTTONGROUPWIDGET_H
|
|
|
|
#include <QWidget>
|
|
|
|
namespace Ui {
|
|
class InstructorButtonGroupWidget;
|
|
}
|
|
|
|
class InstructorButtonGroupWidget : public QWidget
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit InstructorButtonGroupWidget(QWidget *parent = nullptr);
|
|
void initialize();
|
|
|
|
~InstructorButtonGroupWidget();
|
|
signals:
|
|
void sigLoadToServer();
|
|
void sigUndoCurrentChanges();
|
|
void sigStartUnityClient();
|
|
private slots:
|
|
void on_loadToServerButton_clicked();
|
|
void on_undoChangesButton_clicked();
|
|
void on_startWithCurrentChangesButton_clicked();
|
|
|
|
private:
|
|
Ui::InstructorButtonGroupWidget *ui;
|
|
};
|
|
|
|
#endif // INSTRUCTORBUTTONGROUPWIDGET_H
|