Chronometre.cpp 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149
  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 <QWidget>
  25. #include <QLabel>
  26. #include <QObject>
  27. #include <QHBoxLayout>
  28. #include <QDebug>
  29. Chronometre::Chronometre (const QString & nom , QWidget * parent = 0) : QGroupBox (nom , parent) {
  30. heure = 0;
  31. minute = 0;
  32. seconde = 0;
  33. centieme = 0;
  34. ecranHeure = new QLabel ("00", this);
  35. ecranMinute = new QLabel ("00" , this);
  36. ecranSeconde = new QLabel ("00" , this);
  37. ecranCentieme = new QLabel ("00" , this);
  38. ecranLayout = new QHBoxLayout;
  39. ecranLayout->addWidget(ecranHeure, Qt::AlignLeft);
  40. ecranLayout->addWidget(new QLabel(":"));
  41. ecranLayout->addWidget(ecranMinute , Qt::AlignLeft);
  42. ecranLayout->addWidget(new QLabel(":"));
  43. ecranLayout->addWidget(ecranSeconde, Qt::AlignLeft);
  44. ecranLayout->addWidget(new QLabel(":"));
  45. ecranLayout->addWidget(ecranCentieme, Qt::AlignLeft);
  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::refresh () {
  53. if (centieme == 99) {
  54. if (seconde == 59) {
  55. if (minute == 59) {
  56. heure += 1;
  57. minute = 0;
  58. seconde = 0;
  59. centieme = 0;
  60. }
  61. else {
  62. minute += 1;
  63. seconde = 0;
  64. centieme = 0;
  65. }
  66. }
  67. else {
  68. seconde += 1;
  69. centieme = 0;
  70. }
  71. }
  72. else {
  73. centieme += 1;
  74. }
  75. affichage ();
  76. }
  77. void Chronometre::start () {
  78. timer->start ();
  79. }
  80. void Chronometre::stop () {
  81. timer->stop();
  82. }
  83. int Chronometre::getHeure () {
  84. return heure;
  85. }
  86. int Chronometre::getMinute () {
  87. return minute;
  88. }
  89. int Chronometre::getSeconde () {
  90. return seconde;
  91. }
  92. int Chronometre::getCentieme () {
  93. return centieme;
  94. }
  95. QString Chronometre::qString (int nombre) {
  96. QString qNombre;
  97. qNombre = "<b>";
  98. if (nombre < 10) {
  99. qNombre.append("0");
  100. }
  101. qNombre.append(QString::number(nombre));
  102. qNombre.append("</b>");
  103. return qNombre;
  104. }
  105. void Chronometre::affichage () {
  106. ecranHeure->setText(qString (heure));
  107. ecranMinute->setText(qString(minute));
  108. ecranSeconde->setText(qString(seconde));
  109. ecranCentieme->setText(qString(centieme));
  110. }
  111. void Chronometre::reinit () {
  112. if (timer->isActive()) {
  113. timer->stop();
  114. }
  115. heure = 0;
  116. minute = 0;
  117. seconde = 0;
  118. centieme = 0;
  119. affichage();
  120. }
  121. void Chronometre::basculer () {
  122. if (timer->isActive()) {
  123. timer->stop();
  124. }
  125. else {
  126. timer->start ();
  127. }
  128. }