Chronometre.cpp 2.6 KB

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