Chronometre.h 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  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 basculer (Chronometre & Chrono);
  47. void echangerCouleur (Chronometre & chrono);
  48. void setCouleur (Couleur const& color);
  49. Couleur getCouleur () const;
  50. void modifierNomJoueur (QString const& joueur);
  51. void definirTemps (QTime const& tempsDepart);
  52. QString operator+=(Chronometre const& joueur) const;
  53. signals:
  54. void fin();
  55. private slots:
  56. void refresh ();
  57. private:
  58. QLabel *labelPion;
  59. Couleur couleur;
  60. QGroupBox *groupBox;
  61. QPixmap *pion;
  62. QTime temps;
  63. QTime msTempsDepart;
  64. QTimer *timer;
  65. QHBoxLayout *ecranLayout;
  66. QLabel *ecranTemps;
  67. };
  68. #endif