Chronometre.cpp 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128
  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 <QGroupBox>
  32. #include <QDebug>
  33. Chronometre::Chronometre (const QString & nom, QString unecouleur, QTime const& tempsDepart, QWidget * parent = nullptr) :
  34. QWidget (parent),
  35. couleur(unecouleur),
  36. temps(tempsDepart),
  37. msTempsDepart(tempsDepart)
  38. {
  39. QHBoxLayout *layoutPrincipal = new QHBoxLayout;
  40. QLabel *labelPion = new QLabel;
  41. pion = new QPixmap(QString (":/ressources/pawn_%1.svg").arg(couleur));
  42. labelPion->setPixmap(*pion);
  43. groupBox = new QGroupBox(nom);
  44. groupBox->setFlat(false);
  45. QFont font("Arial" , 25, 75);
  46. ecranTemps = new QLabel(temps.toString("hh:mm:ss:zzz"));
  47. ecranTemps->setMinimumWidth(195);
  48. ecranTemps->setFont(font);
  49. ecranLayout = new QHBoxLayout;
  50. ecranLayout->addSpacing(40);
  51. ecranLayout->addStretch(1);
  52. ecranLayout->addWidget(ecranTemps, 0);
  53. ecranLayout->addStretch(1);
  54. ecranLayout->addSpacing(40);
  55. layoutPrincipal->addWidget(labelPion,0);
  56. layoutPrincipal->addWidget(groupBox,1);
  57. groupBox->setLayout (ecranLayout);
  58. setLayout(layoutPrincipal);
  59. timer = new QTimer (this);
  60. timer->setInterval (INTERVAL);
  61. QObject::connect (timer , SIGNAL (timeout() ) , this , SLOT (refresh()));
  62. }
  63. void Chronometre::modifierNomJoueur(QString joueur) {
  64. groupBox->setTitle(joueur);
  65. }
  66. void Chronometre::definirTemps(QTime const& tempsDepart) {
  67. msTempsDepart = tempsDepart;
  68. }
  69. void Chronometre::refresh () {
  70. temps = temps.addMSecs(-INTERVAL);
  71. affichage ();
  72. if (temps <= QTime (0,0,0,0)) {
  73. emit fin();
  74. }
  75. }
  76. void Chronometre::start () {
  77. timer->start ();
  78. }
  79. void Chronometre::stop () {
  80. timer->stop();
  81. }
  82. void Chronometre::affichage () {
  83. QString chaineTemps = temps.toString("hh:mm:ss:zzz");
  84. ecranTemps->setText(chaineTemps);
  85. //qDebug() << "Taille : " << ecranTemps->width();
  86. }
  87. void Chronometre::reinit () {
  88. if (timer->isActive()) {
  89. timer->stop();
  90. }
  91. temps = msTempsDepart;
  92. affichage();
  93. }
  94. void Chronometre::basculer () {
  95. if (timer->isActive()) {
  96. stop();
  97. }
  98. else {
  99. start ();
  100. }
  101. }
  102. QString Chronometre::operator+=(Chronometre const& joueur) const {
  103. if (temps <= QTime (0,0,0,0)) {
  104. return joueur.groupBox->title();
  105. } else if (joueur.temps <= QTime(0,0,0,0)) {
  106. return groupBox->title();
  107. }
  108. return "Nope";
  109. }