Chronometre.cpp 2.8 KB

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