Chronometre.h 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  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. enum Couleur {
  34. Blanc,
  35. Noir,
  36. };
  37. class Chronometre : public QWidget {
  38. Q_OBJECT
  39. public:
  40. Chronometre (const QString & nom , Couleur unecouleur, QTime const& tempsDepart, QWidget * parent);
  41. void start ();
  42. void stop ();
  43. void affichage ();
  44. void reinit ();
  45. void basculer ();
  46. void echangerCouleur (Chronometre & chrono);
  47. void setCouleur (Couleur color);
  48. void modifierNomJoueur (QString joueur);
  49. void definirTemps (QTime const& tempsDepart);
  50. QString operator+=(Chronometre const& joueur) const;
  51. signals:
  52. void fin();
  53. private slots:
  54. void refresh ();
  55. private:
  56. QLabel *labelPion;
  57. Couleur couleur;
  58. QGroupBox *groupBox;
  59. QPixmap *pion;
  60. QTime temps;
  61. QTime msTempsDepart;
  62. QTimer *timer;
  63. QHBoxLayout *ecranLayout;
  64. QLabel *ecranTemps;
  65. };
  66. #endif