mirror of
https://github.com/Cockatrice/Cockatrice.git
synced 2026-07-05 04:53:54 -07:00
Added confirmation dialogue when set added.
This commit is contained in:
parent
c914395236
commit
54a759497f
4 changed files with 61 additions and 0 deletions
18
cockatrice/src/dlg_add_set.h
Normal file
18
cockatrice/src/dlg_add_set.h
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
#ifndef DLG_ADD_SET_H
|
||||
#define DLG_ADD_SET_H
|
||||
|
||||
#include <QDialog>
|
||||
#include <QLabel>
|
||||
|
||||
class DlgAddSet : public QDialog {
|
||||
Q_OBJECT
|
||||
public:
|
||||
DlgAddSet(QWidget *parent, bool success);
|
||||
private slots:
|
||||
void closeDialog();
|
||||
private:
|
||||
QLabel *status, *restart;
|
||||
QPushButton *ok;
|
||||
};
|
||||
|
||||
#endif
|
||||
Loading…
Add table
Add a link
Reference in a new issue