mirror of
https://gitea.msk.dinamika-avia.ru/Constanta-Design/RRJClient.git
synced 2026-03-28 05:25:39 +03:00
* add buttonsView common(complete) * add buttonsView instructor(notWorking) * BUGFIX sendSystem meth update files * BUGFIX updateController meth checkNeedUpdate
35 lines
695 B
C++
35 lines
695 B
C++
#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
|