options.h 702 B

1234567891011121314151617181920212223242526272829303132333435
  1. #ifndef OPTIONS_H
  2. #define OPTIONS_H
  3. #include <QApplication>
  4. class QString;
  5. class Options : public QObject
  6. {
  7. public:
  8. explicit Options (QString joueur1 = "Joueur 1", QString joueur2 = "Joueur 2", int temps = 5, bool son = true, QObject *parent = nullptr);
  9. virtual ~Options();
  10. void setTempsDepart (int temps);
  11. void setNomJoueur1 (QString joueur);
  12. void setNomJoueur2 (QString joueur);
  13. void setSon (bool son);
  14. QString nomJoueur1 () const;
  15. QString nomJoueur2 () const;
  16. int tempsDepart () const;
  17. bool son () const;
  18. public slots:
  19. signals:
  20. private:
  21. int _tempsDepart;
  22. QString _nomJoueur1;
  23. QString _nomJoueur2;
  24. bool _son;
  25. };
  26. #endif // OPTIONS_H