Chronometre.h 2.0 KB

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