mirror of
https://gitea.msk.dinamika-avia.ru/Constanta-Design/RRJServer.git
synced 2026-03-28 19:55:48 +03:00
42 lines
737 B
C++
42 lines
737 B
C++
#ifndef DIALOGCHECKTASK_H
|
|
#define DIALOGCHECKTASK_H
|
|
|
|
#include <QWidget>
|
|
#include "tasksAmmFim.h"
|
|
#include "fimtaskswidget.h"
|
|
|
|
namespace Ui {
|
|
class DialogCheckTask;
|
|
}
|
|
|
|
class DialogCheckTask : public QWidget
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit DialogCheckTask(ConnectorToServer* connectorToServer, QWidget *parent = nullptr);
|
|
~DialogCheckTask();
|
|
|
|
public:
|
|
void setTask(TaskAmmFim* task);
|
|
TaskAmmFim getTask();
|
|
|
|
private slots:
|
|
void on_btnWrong_clicked();
|
|
void on_btnRight_clicked();
|
|
|
|
private:
|
|
void outReport(FIMReport report);
|
|
|
|
private:
|
|
TaskAmmFim task;
|
|
|
|
private:
|
|
Ui::DialogCheckTask *ui;
|
|
private:
|
|
ConnectorToServer* connectorToServer;
|
|
FIMtasksWidget* fimTasksWidget;
|
|
};
|
|
|
|
#endif // DIALOGCHECKTASK_H
|