|
@@ -27,18 +27,25 @@
|
|
|
#include <QObject>
|
|
|
#include <QHBoxLayout>
|
|
|
#include <QDebug>
|
|
|
+#include <QFont>
|
|
|
|
|
|
Chronometre::Chronometre (const QString & nom , QWidget * parent = 0) : QGroupBox (nom , parent) {
|
|
|
heure = 0;
|
|
|
minute = 0;
|
|
|
seconde = 0;
|
|
|
centieme = 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);
|
|
|
+
|
|
|
ecranLayout = new QHBoxLayout;
|
|
|
ecranLayout->addWidget(ecranHeure, Qt::AlignLeft);
|
|
|
ecranLayout->addWidget(new QLabel(":"));
|