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