iVS3D v2.0.0
Loading...
Searching...
No Matches
reallydeletedialog.h
1#ifndef REALLYDELETEDIALOG_H
2#define REALLYDELETEDIALOG_H
3
4#include <QDialog>
5
6namespace Ui {
8}
20class ReallyDeleteDialog : public QDialog
21{
22 Q_OBJECT
23
24public:
29 explicit ReallyDeleteDialog(QWidget *parent = nullptr);
31
32private slots:
33 void on_pushButton_2_clicked();
34
35 void on_pushButton_clicked();
36
37private:
38 Ui::ReallyDeleteDialog *ui;
39};
40
41#endif // REALYDELETEDIALOG_H
The ReallyDeleteDialog class is handling the pop up window confirming to deselect all currently selec...
Definition reallydeletedialog.h:21