Chronometre.cpp 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111
  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 , QTime const& tempsDepart, bool son, QWidget * parent = nullptr) :
  33. QGroupBox (nom , parent),
  34. temps(tempsDepart),
  35. msTempsDepart(tempsDepart),
  36. sonnette(son)
  37. {
  38. setFlat(false);
  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. timer = new QTimer (this);
  48. timer->setInterval (INTERVAL);
  49. QObject::connect (timer , SIGNAL (timeout() ) , this , SLOT (refresh()));
  50. }
  51. void Chronometre::modifierNomJoueur(QString joueur) {
  52. setTitle(joueur);
  53. }
  54. void Chronometre::definirTemps(QTime const& tempsDepart) {
  55. msTempsDepart = tempsDepart;
  56. }
  57. void Chronometre::modifierSon(bool son) {
  58. sonnette = son;
  59. }
  60. void Chronometre::refresh () {
  61. temps = temps.addMSecs(-INTERVAL);
  62. if (temps <= QTime (0,0,0,0)) {
  63. if (sonnette == true)
  64. QSound::play(":/ressources/sonnette.wav");
  65. emit fin();
  66. }
  67. affichage ();
  68. }
  69. void Chronometre::start () {
  70. timer->start ();
  71. }
  72. void Chronometre::stop () {
  73. timer->stop();
  74. }
  75. void Chronometre::affichage () {
  76. QString chaineTemps = temps.toString("hh:mm:ss:zzz");
  77. ecranTemps->setText(chaineTemps);
  78. }
  79. void Chronometre::reinit () {
  80. if (timer->isActive()) {
  81. timer->stop();
  82. }
  83. temps = msTempsDepart;
  84. affichage();
  85. }
  86. void Chronometre::basculer () {
  87. if (timer->isActive()) {
  88. timer->stop();
  89. }
  90. else {
  91. timer->start ();
  92. }
  93. }