options.h 744 B

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