35 lines
570 B
C
Raw Normal View History

2024-11-25 17:15:44 +08:00
#ifndef DELETEUSERDIALOG_H
#define DELETEUSERDIALOG_H
#include <QDialog>
namespace Ui {
class DeleteUserDialog;
}
class DeleteUserDialog : public QDialog
{
Q_OBJECT
public:
explicit DeleteUserDialog(QWidget *parent = nullptr);
~DeleteUserDialog();
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:
Ui::DeleteUserDialog *ui;
bool m_isdeleted;
};
#endif // DELETEUSERDIALOG_H