|
@@ -28,35 +28,23 @@
|
|
|
#include <QHBoxLayout>
|
|
|
#include <QDebug>
|
|
|
#include <QFont>
|
|
|
+#include <QTime>
|
|
|
|
|
|
-Chronometre::Chronometre (const QString & nom , QWidget * parent = 0) : QGroupBox (nom , parent) {
|
|
|
+Chronometre::Chronometre (const QString & nom , QWidget * parent = 0) :
|
|
|
+ QGroupBox (nom , parent),
|
|
|
+ ms(0)
|
|
|
+{
|
|
|
setFlat(false);
|
|
|
- heure = 0;
|
|
|
- minute = 0;
|
|
|
- seconde = 0;
|
|
|
- centieme = 0;
|
|
|
|
|
|
+ temps = new QTime (0,0,0,0);
|
|
|
QFont font("Times New Roman" , 22 , 5);
|
|
|
|
|
|
- ecranHeure = new QLabel ("00", this);
|
|
|
- ecranMinute = new QLabel ("00" , this);
|
|
|
- ecranSeconde = new QLabel ("00" , this);
|
|
|
- ecranCentieme = new QLabel ("00" , this);
|
|
|
- ecranHeure->setFont(font);
|
|
|
- ecranMinute->setFont(font);
|
|
|
- ecranSeconde->setFont(font);
|
|
|
- ecranCentieme->setFont(font);
|
|
|
+ ecranTemps = new QLabel (temps->toString("hh:mm::ss:zzz"));
|
|
|
+ ecranTemps->setFont(font);
|
|
|
|
|
|
ecranLayout = new QHBoxLayout;
|
|
|
- ecranLayout->addWidget(ecranHeure);
|
|
|
- ecranLayout->addWidget(new QLabel(":"));
|
|
|
- ecranLayout->addWidget(ecranMinute);
|
|
|
- ecranLayout->addWidget(new QLabel(":"));
|
|
|
- ecranLayout->addWidget(ecranSeconde);
|
|
|
- ecranLayout->addWidget(new QLabel(":"));
|
|
|
- ecranLayout->addWidget(ecranCentieme);
|
|
|
+ ecranLayout->addWidget(ecranTemps);
|
|
|
ecranLayout->addSpacing(40);
|
|
|
- //ecranLayout->addStretch(-1);
|
|
|
|
|
|
setLayout (ecranLayout);
|
|
|
|
|
@@ -68,29 +56,7 @@ Chronometre::Chronometre (const QString & nom , QWidget * parent = 0) : QGroupBo
|
|
|
}
|
|
|
|
|
|
void Chronometre::refresh () {
|
|
|
- if (centieme == 99) {
|
|
|
- if (seconde == 59) {
|
|
|
- if (minute == 59) {
|
|
|
- heure += 1;
|
|
|
- minute = 0;
|
|
|
- seconde = 0;
|
|
|
- centieme = 0;
|
|
|
- }
|
|
|
- else {
|
|
|
- minute += 1;
|
|
|
- seconde = 0;
|
|
|
- centieme = 0;
|
|
|
- }
|
|
|
- }
|
|
|
- else {
|
|
|
- seconde += 1;
|
|
|
- centieme = 0;
|
|
|
- }
|
|
|
- }
|
|
|
- else {
|
|
|
- centieme += 1;
|
|
|
- }
|
|
|
-
|
|
|
+ ms += 10;
|
|
|
affichage ();
|
|
|
}
|
|
|
|
|
@@ -99,51 +65,20 @@ void Chronometre::start () {
|
|
|
}
|
|
|
|
|
|
void Chronometre::stop () {
|
|
|
- timer->stop();
|
|
|
+ timer->stop();
|
|
|
}
|
|
|
|
|
|
-int Chronometre::getHeure () {
|
|
|
- return heure;
|
|
|
-}
|
|
|
-
|
|
|
-int Chronometre::getMinute () {
|
|
|
- return minute;
|
|
|
-}
|
|
|
-
|
|
|
-int Chronometre::getSeconde () {
|
|
|
- return seconde;
|
|
|
-}
|
|
|
-
|
|
|
-int Chronometre::getCentieme () {
|
|
|
- return centieme;
|
|
|
-}
|
|
|
-
|
|
|
-QString Chronometre::qString (int nombre) {
|
|
|
- QString qNombre;
|
|
|
- qNombre = "<b>";
|
|
|
- if (nombre < 10) {
|
|
|
- qNombre.append("0");
|
|
|
- }
|
|
|
- qNombre.append(QString::number(nombre));
|
|
|
- qNombre.append("</b>");
|
|
|
- return qNombre;
|
|
|
-}
|
|
|
|
|
|
void Chronometre::affichage () {
|
|
|
- ecranHeure->setText(qString (heure));
|
|
|
- ecranMinute->setText(qString(minute));
|
|
|
- ecranSeconde->setText(qString(seconde));
|
|
|
- ecranCentieme->setText(qString(centieme));
|
|
|
+ QString chaineTemps = temps->addMSecs(ms).toString("hh:mm:ss:zzz");
|
|
|
+ ecranTemps->setText(chaineTemps);
|
|
|
}
|
|
|
|
|
|
void Chronometre::reinit () {
|
|
|
if (timer->isActive()) {
|
|
|
timer->stop();
|
|
|
}
|
|
|
- heure = 0;
|
|
|
- minute = 0;
|
|
|
- seconde = 0;
|
|
|
- centieme = 0;
|
|
|
+ ms = 0;
|
|
|
affichage();
|
|
|
}
|
|
|
|