Chronometre.h 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. /*
  2. * Chronometre.h
  3. * This file is part of ChronoCheckMate
  4. *
  5. * Copyright (C) 2010 - François Drouhard
  6. *
  7. * ChronoCheckMate is free software; you can redistribute it and/or modify
  8. * it under the terms of the GNU General Public License as published by
  9. * the Free Software Foundation; either version 2 of the License, or
  10. * (at your option) any later version.
  11. *
  12. * ChronoCheckMate is distributed in the hope that it will be useful,
  13. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  15. * GNU General Public License for more details.
  16. *
  17. * You should have received a copy of the GNU General Public License
  18. * along with ChronoCheckMate; if not, write to the Free Software
  19. * Foundation, Inc., 51 Franklin St, Fifth Floor,
  20. * Boston, MA 02110-1301 USA
  21. */
  22. #ifndef DEF_CHRONOMETRE
  23. #define DEF_CHRONOMETRE
  24. #include <QGroupBox>
  25. #include <QTime>
  26. class QLabel;
  27. class QHBoxLayout;
  28. class QTimer;
  29. class QString;
  30. #define INTERVAL 1 // vitesse de défilement (1000ème de secondes)
  31. class Chronometre : public QGroupBox {
  32. Q_OBJECT
  33. public:
  34. Chronometre (const QString & nom , QTime const& tempsDepart, QWidget * parent);
  35. void start ();
  36. void stop ();
  37. void affichage ();
  38. void reinit ();
  39. void basculer ();
  40. void modifierNomJoueur (QString joueur);
  41. void definirTemps (QTime const& tempsDepart);
  42. QString operator+=(Chronometre const& joueur) const;
  43. signals:
  44. void fin();
  45. private slots:
  46. void refresh ();
  47. private:
  48. QTime temps;
  49. QTime msTempsDepart;
  50. QTimer *timer;
  51. QHBoxLayout *ecranLayout;
  52. QLabel *ecranTemps;
  53. };
  54. #endif