소스 검색

QLabel remplace les QLCDNumber

François Drouhard 9 년 전
부모
커밋
7f52f785e1
3개의 변경된 파일37개의 추가작업 그리고 25개의 파일을 삭제
  1. 28 18
      Chronometre.cpp
  2. 7 5
      Chronometre.h
  3. 2 2
      chronoCheckMate.pro.user

+ 28 - 18
Chronometre.cpp

@@ -23,32 +23,31 @@
 #include "Chronometre.h"
 #include <QTimer>
 #include <QWidget>
-#include <QLCDNumber>
+#include <QLabel>
 #include <QObject>
 #include <QHBoxLayout>
+#include <QDebug>
 
 Chronometre::Chronometre (const QString & nom , QWidget * parent = 0) : QGroupBox (nom , parent) {
-	setFlat (false);
 
 	heure = 0;
 	minute = 0;
 	seconde = 0;
 	centieme = 0;
 	
-	ecranHeure = new QLCDNumber (2, this);
-	ecranMinute = new QLCDNumber (2, this);
-	ecranSeconde = new QLCDNumber (2, this);
-	ecranCentieme = new QLCDNumber (2 , this);
-    ecranHeure->setSegmentStyle (QLCDNumber::Flat);
-    ecranMinute->setSegmentStyle (QLCDNumber::Flat);
-    ecranSeconde->setSegmentStyle (QLCDNumber::Flat);
-    ecranCentieme->setSegmentStyle (QLCDNumber::Flat);
+    ecranHeure = new QLabel ("00", this);
+    ecranMinute = new QLabel ("00" , this);
+    ecranSeconde = new QLabel ("00" , this);
+    ecranCentieme = new QLabel ("00" , this);
 	
 	ecranLayout = new QHBoxLayout;
-	ecranLayout->addWidget(ecranHeure);
-	ecranLayout->addWidget(ecranMinute);
-	ecranLayout->addWidget(ecranSeconde);
-	ecranLayout->addWidget(ecranCentieme);
+    ecranLayout->addWidget(ecranHeure, Qt::AlignLeft);
+    ecranLayout->addWidget(new QLabel(":"));
+    ecranLayout->addWidget(ecranMinute , Qt::AlignLeft);
+    ecranLayout->addWidget(new QLabel(":"));
+    ecranLayout->addWidget(ecranSeconde, Qt::AlignLeft);
+    ecranLayout->addWidget(new QLabel(":"));
+    ecranLayout->addWidget(ecranCentieme, Qt::AlignLeft);
 	
 	setLayout (ecranLayout);
 	
@@ -110,11 +109,22 @@ 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->display(heure);
-	ecranMinute->display(minute);
-	ecranSeconde->display(seconde);
-	ecranCentieme->display (centieme);
+    ecranHeure->setText(qString (heure));
+    ecranMinute->setText(qString(minute));
+    ecranSeconde->setText(qString(seconde));
+    ecranCentieme->setText(qString(centieme));
 }
 
 void Chronometre::reinit () {

+ 7 - 5
Chronometre.h

@@ -25,9 +25,10 @@
  
 
 #include <QGroupBox>
-class QLCDNumber;
+class QLabel;
 class QHBoxLayout;
 class QTimer;
+class QString;
 
 class Chronometre : public QGroupBox {
 	
@@ -44,6 +45,7 @@ class Chronometre : public QGroupBox {
 	void affichage ();
 	void reinit ();
 	void basculer ();
+    QString qString (int number);
 	
 	private slots:
 	void refresh ();
@@ -55,10 +57,10 @@ class Chronometre : public QGroupBox {
 	int centieme;
 	QTimer *timer;
 	QHBoxLayout *ecranLayout;
-	QLCDNumber *ecranHeure;
-	QLCDNumber *ecranMinute;
-	QLCDNumber *ecranSeconde;
-	QLCDNumber *ecranCentieme;
+    QLabel *ecranHeure;
+    QLabel *ecranMinute;
+    QLabel *ecranSeconde;
+    QLabel *ecranCentieme;
 };
 
 #endif

+ 2 - 2
chronoCheckMate.pro.user

@@ -1,6 +1,6 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!DOCTYPE QtCreatorProject>
-<!-- Written by Qt Creator 2.4.1, 2015-07-19T11:28:52. -->
+<!-- Written by Qt Creator 2.4.1, 2015-07-19T20:30:18. -->
 <qtcreator>
  <data>
   <variable>ProjectExplorer.Project.ActiveTarget</variable>
@@ -52,7 +52,7 @@
    <value type="QString" key="ProjectExplorer.ProjectConfiguration.DefaultDisplayName">Desktop</value>
    <value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName">Desktop</value>
    <value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">Qt4ProjectManager.Target.DesktopTarget</value>
-   <value type="int" key="ProjectExplorer.Target.ActiveBuildConfiguration">0</value>
+   <value type="int" key="ProjectExplorer.Target.ActiveBuildConfiguration">1</value>
    <value type="int" key="ProjectExplorer.Target.ActiveDeployConfiguration">0</value>
    <value type="int" key="ProjectExplorer.Target.ActiveRunConfiguration">0</value>
    <valuemap type="QVariantMap" key="ProjectExplorer.Target.BuildConfiguration.0">