Dialog.h 450 B

123456789101112131415161718192021222324252627282930
  1. #ifndef DIALOG_H
  2. #define DIALOG_H
  3. #include <QDialog>
  4. class QLineEdit;
  5. class QSpinBox;
  6. class QString;
  7. class Options;
  8. class Dialog : public QDialog
  9. {
  10. Q_OBJECT
  11. public:
  12. explicit Dialog(Options *option, QWidget *parent = nullptr);
  13. ~Dialog();
  14. signals:
  15. public slots:
  16. void valider();
  17. private:
  18. Options * _option;
  19. QLineEdit* joueur1LineEdit;
  20. QLineEdit* joueur2LineEdit;
  21. QSpinBox* spinTempsDepart;
  22. };
  23. #endif // DIALOG_H