Dialog.h 509 B

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