35 lines
594 B
C++
35 lines
594 B
C++
#ifndef DELETEREPORTDIALOG_H
|
|
#define DELETEREPORTDIALOG_H
|
|
|
|
#include <QDialog>
|
|
|
|
namespace Ui {
|
|
class DeleteReportDialog;
|
|
}
|
|
|
|
class DeleteReportDialog : public QDialog
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit DeleteReportDialog(QWidget *parent = nullptr);
|
|
~DeleteReportDialog();
|
|
bool isDeletedUser();
|
|
protected:
|
|
void paintEvent(QPaintEvent *event);
|
|
|
|
virtual void changeEvent(QEvent* event);
|
|
private slots:
|
|
void on_cancel_Btn_clicked();
|
|
|
|
void on_confirm_Btn_clicked();
|
|
|
|
private:
|
|
|
|
bool m_isdeleted;
|
|
private:
|
|
Ui::DeleteReportDialog *ui;
|
|
};
|
|
|
|
#endif // DELETEREPORTDIALOG_H
|