Chronometre.h 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  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 <QWidget>
  25. #include <QTime>
  26. class QGroupBox;
  27. class QLabel;
  28. class QHBoxLayout;
  29. class QTimer;
  30. class QString;
  31. class QPixmap;
  32. #define INTERVAL 1 // vitesse de défilement (1000ème de secondes)
  33. class Chronometre : public QWidget {
  34. Q_OBJECT
  35. public:
  36. Chronometre (const QString & nom , QString unecouleur, QTime const& tempsDepart, QWidget * parent);
  37. void start ();
  38. void stop ();
  39. void affichage ();
  40. void reinit ();
  41. void basculer ();
  42. void modifierNomJoueur (QString joueur);
  43. void definirTemps (QTime const& tempsDepart);
  44. QString operator+=(Chronometre const& joueur) const;
  45. signals:
  46. void fin();
  47. private slots:
  48. void refresh ();
  49. private:
  50. QString couleur;
  51. QGroupBox *groupBox;
  52. QPixmap *pion;
  53. QTime temps;
  54. QTime msTempsDepart;
  55. QTimer *timer;
  56. QHBoxLayout *ecranLayout;
  57. QLabel *ecranTemps;
  58. };
  59. #endif