1234567891011121314151617181920212223242526272829303132 |
- #ifndef DIALOG_H
- #define DIALOG_H
- #include <QDialog>
- class QLineEdit;
- class QTimeEdit;
- class QString;
- class Options;
- class QCheckBox;
- class Dialog : public QDialog
- {
- Q_OBJECT
- public:
- explicit Dialog(Options *option, QWidget *parent = nullptr);
- ~Dialog();
- signals:
- public slots:
- void accept();
- private:
- Options * _option;
- QLineEdit* joueur1LineEdit;
- QLineEdit* joueur2LineEdit;
- QTimeEdit *spinTempsDepart;
- QCheckBox* checkBoxSon;
- };
- #endif // DIALOG_H
|