Chronometre.cpp 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106
  1. /*
  2. * Chronometre.cpp
  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. #include "Chronometre.h"
  23. #include <QTimer>
  24. #include <QtWidgets>
  25. #include <QLabel>
  26. #include <QObject>
  27. #include <QHBoxLayout>
  28. #include <QDebug>
  29. #include <QFont>
  30. #include <QTime>
  31. Chronometre::Chronometre (const QString & nom , int tempsDepart, QWidget * parent = nullptr) :
  32. QGroupBox (nom , parent),
  33. ms(1000*60*tempsDepart),
  34. msTempsDepart(1000*60*tempsDepart)
  35. {
  36. setFlat(false);
  37. temps = new QTime (0,0,0,0);
  38. QFont font("Arial" , 22 , 5);
  39. ecranTemps = new QLabel (temps->toString("hh:mm::ss:zzz"));
  40. ecranTemps->setFont(font);
  41. ecranLayout = new QHBoxLayout;
  42. ecranLayout->addSpacing(40);
  43. ecranLayout->addWidget(ecranTemps);
  44. ecranLayout->addSpacing(40);
  45. setLayout (ecranLayout);
  46. affichage();
  47. timer = new QTimer (this);
  48. timer->setInterval (10);
  49. QObject::connect (timer , SIGNAL (timeout() ) , this , SLOT (refresh()));
  50. }
  51. void Chronometre::modifierNomJoueur(QString joueur) {
  52. setTitle(joueur);
  53. }
  54. void Chronometre::definirTemps(int tempsDepart) {
  55. msTempsDepart = tempsDepart*60*1000;
  56. }
  57. void Chronometre::refresh () {
  58. ms -= 10;
  59. if (ms <= 0) {
  60. emit fin();
  61. }
  62. affichage ();
  63. }
  64. void Chronometre::start () {
  65. timer->start ();
  66. }
  67. void Chronometre::stop () {
  68. timer->stop();
  69. }
  70. void Chronometre::affichage () {
  71. QString chaineTemps = temps->addMSecs(ms).toString("hh:mm:ss:zzz");
  72. ecranTemps->setText(chaineTemps);
  73. }
  74. void Chronometre::reinit () {
  75. if (timer->isActive()) {
  76. timer->stop();
  77. }
  78. ms = msTempsDepart;
  79. affichage();
  80. }
  81. void Chronometre::basculer () {
  82. if (timer->isActive()) {
  83. timer->stop();
  84. }
  85. else {
  86. timer->start ();
  87. }
  88. }