浏览代码

Le temps est maintenant déclaré en QTime

Francois Drouhard 6 年之前
父节点
当前提交
8125cb2bc1
共有 9 个文件被更改,包括 50 次插入56 次删除
  1. 10 17
      Chronometre.cpp
  2. 5 6
      Chronometre.h
  3. 18 19
      Dialog.cpp
  4. 2 2
      Dialog.h
  5. 1 2
      MaFenetre.cpp
  6. 0 2
      MaFenetre.h
  7. 3 1
      main.cpp
  8. 6 3
      options.cpp
  9. 5 4
      options.h

+ 10 - 17
Chronometre.cpp

@@ -31,22 +31,17 @@
 #include <QTime>
 #include <QSound>
 
-Chronometre::Chronometre (const QString & nom , int tempsDepart, bool son, QWidget * parent = nullptr) :
+Chronometre::Chronometre (const QString & nom , QTime const& tempsDepart, bool son, QWidget * parent = nullptr) :
     QGroupBox (nom , parent),
-    ms(0),
-    msTempsDepart(0),
+    temps(tempsDepart),
+    msTempsDepart(tempsDepart),
     sonnette(son)
 {
-    // init des compteurs
-    definirTemps(tempsDepart);
-    ms = msTempsDepart;
-
     setFlat(false);
 
-    temps = new QTime (0,0,0,0);
     QFont font("Arial" , 22 , 5);
 
-    ecranTemps = new QLabel (temps->toString("hh:mm::ss:zzz"));
+    ecranTemps = new QLabel(temps.toString("hh:mm:ss:zzz"));
     ecranTemps->setFont(font);
 
     ecranLayout = new QHBoxLayout;
@@ -54,10 +49,8 @@ Chronometre::Chronometre (const QString & nom , int tempsDepart, bool son, QWidg
     ecranLayout->addWidget(ecranTemps);
     ecranLayout->addSpacing(40);
 
-
     setLayout (ecranLayout);
 	
-    affichage();
     timer = new QTimer  (this);
     timer->setInterval (INTERVAL);
 	QObject::connect (timer , SIGNAL (timeout() ) , this , SLOT (refresh()));
@@ -67,8 +60,8 @@ void Chronometre::modifierNomJoueur(QString joueur) {
     setTitle(joueur);
 }
 
-void Chronometre::definirTemps(int tempsDepart) {
-    msTempsDepart = tempsDepart*1000*60;
+void Chronometre::definirTemps(QTime const& tempsDepart) {
+    msTempsDepart = tempsDepart;
 }
 
 void Chronometre::modifierSon(bool son) {
@@ -76,8 +69,8 @@ void Chronometre::modifierSon(bool son) {
 }
 
 void Chronometre::refresh () {
-    ms -= INTERVAL;
-    if (ms <= 0) {
+    temps = temps.addMSecs(-INTERVAL);
+    if (temps <= QTime (0,0,0,0)) {
         if (sonnette == true)
             QSound::play(":/ressources/sonnette.wav");
         emit fin();
@@ -95,7 +88,7 @@ void Chronometre::stop () {
 
 
 void Chronometre::affichage () {
-    QString chaineTemps = temps->addMSecs(ms).toString("hh:mm:ss:zzz");
+    QString chaineTemps = temps.toString("hh:mm:ss:zzz");
     ecranTemps->setText(chaineTemps);
 }
 
@@ -103,7 +96,7 @@ void Chronometre::reinit () {
 	if (timer->isActive()) {
 		timer->stop();
 	}
-    ms  = msTempsDepart;
+    temps  = msTempsDepart;
 	affichage();
 }
 

+ 5 - 6
Chronometre.h

@@ -25,11 +25,11 @@
  
 
 #include <QGroupBox>
+#include <QTime>
 class QLabel;
 class QHBoxLayout;
 class QTimer;
 class QString;
-class QTime;
 
 #define INTERVAL 1 // vitesse de défilement (1000ème de secondes)
 
@@ -38,14 +38,14 @@ class Chronometre : public QGroupBox {
 	Q_OBJECT
 	
 	public:
-    Chronometre (const QString & nom , int tempsDepart, bool son, QWidget * parent);
+    Chronometre (const QString & nom , QTime const& tempsDepart, bool son, QWidget * parent);
 	void start ();
 	void stop ();
 	void affichage ();
 	void reinit ();
 	void basculer ();
     void modifierNomJoueur (QString joueur);
-    void definirTemps (int tempsDepart);
+    void definirTemps (QTime const& tempsDepart);
     void modifierSon(bool son);
 
     signals:
@@ -56,11 +56,10 @@ class Chronometre : public QGroupBox {
     void refresh ();
 	
 	private:
-    int ms;
-    int msTempsDepart;
+    QTime temps;
+    QTime msTempsDepart;
     bool sonnette;
 	QTimer *timer;
-    QTime  *temps;
     QHBoxLayout *ecranLayout;
     QLabel *ecranTemps;
 };

+ 18 - 19
Dialog.cpp

@@ -2,7 +2,9 @@
 #include "options.h"
 #include <QBoxLayout>
 #include <QLineEdit>
-#include <QSpinBox>
+//#include <QSpinBox>
+#include <QTimeEdit>
+#include <QTime>
 #include <QDialogButtonBox>
 #include <QLabel>
 #include <QFormLayout>
@@ -12,31 +14,28 @@ Dialog::Dialog(Options *option, QWidget *parent) :
     QDialog(parent),
     _option(option)
 {
-    QHBoxLayout *layoutLineEdit = new QHBoxLayout;
-    //QHBoxLayout *layoutTemps    = new QHBoxLayout;
-    QVBoxLayout *layoutDialog   = new QVBoxLayout;
-    QFormLayout *layoutForm      = new QFormLayout;
+    QHBoxLayout *layoutLineEdit   = new QHBoxLayout;
+    QVBoxLayout *layoutDialog     = new QVBoxLayout;
+    QFormLayout *layoutForm       = new QFormLayout;
     QDialogButtonBox *boutonJouer = new QDialogButtonBox (QDialogButtonBox::Ok | QDialogButtonBox::Cancel);
     checkBoxSon      = new QCheckBox();
-    checkBoxSon->setChecked(option->son());
-    spinTempsDepart     = new QSpinBox;
-    spinTempsDepart->setMinimum(1);
-    spinTempsDepart->setMaximum(300);
-    spinTempsDepart->setValue(option->tempsDepart());
-    joueur1LineEdit = new QLineEdit(option->nomJoueur1() , this);
-    joueur2LineEdit = new QLineEdit(option->nomJoueur2() , this);
+    checkBoxSon->setChecked(_option->son());
+    spinTempsDepart               = new QTimeEdit;
+    spinTempsDepart->setTime(_option->tempsDepart());
+    spinTempsDepart->setDisplayFormat("HH:mm:ss");
+
+    joueur1LineEdit = new QLineEdit(_option->nomJoueur1() , this);
+    joueur2LineEdit = new QLineEdit(_option->nomJoueur2() , this);
     joueur1LineEdit->selectAll();
 
     layoutLineEdit->addWidget(joueur1LineEdit);
     layoutLineEdit->addWidget(joueur2LineEdit);
-    //layoutTemps->addWidget(labelTempsDepart);
-    //layoutTemps->addWidget(spinTempsDepart);
+
     layoutForm->addRow("Son", checkBoxSon);
-    layoutForm->addRow("Temps de départ (minutes)", spinTempsDepart);
+    layoutForm->addRow("Temps de départ", spinTempsDepart);
 
-    layoutDialog->addLayout(layoutForm);
-    //layoutDialog->addLayout(layoutTemps);
     layoutDialog->addLayout(layoutLineEdit);
+    layoutDialog->addLayout(layoutForm);
     layoutDialog->addWidget(boutonJouer);
     setLayout(layoutDialog);
 
@@ -51,7 +50,7 @@ Dialog::~Dialog() {
 void Dialog::valider() {
     _option->setNomJoueur1(joueur1LineEdit->text());
     _option->setNomJoueur2(joueur2LineEdit->text());
-    _option->setTempsDepart(spinTempsDepart->value());
-     _option->setSon(checkBoxSon->isChecked());
+    _option->setTempsDepart(spinTempsDepart->time());
+    _option->setSon(checkBoxSon->isChecked());
     this->accept();
 }

+ 2 - 2
Dialog.h

@@ -3,7 +3,7 @@
 
 #include <QDialog>
 class QLineEdit;
-class QSpinBox;
+class QTimeEdit;
 class QString;
 class Options;
 class QCheckBox;
@@ -24,7 +24,7 @@ private:
     Options  * _option;
     QLineEdit* joueur1LineEdit;
     QLineEdit* joueur2LineEdit;
-    QSpinBox*  spinTempsDepart;
+    QTimeEdit *spinTempsDepart;
     QCheckBox* checkBoxSon;
 
 };

+ 1 - 2
MaFenetre.cpp

@@ -91,8 +91,7 @@ MaFenetre::MaFenetre(Options* mesOptions) :
 	setWindowTitle ("ChronoCheckMate");
 
     ///////////////////////////// Ouverture de la boite de dialogue /////////////////
-    lancerDialogueOptions();
-
+    //lancerDialogueOptions();
 
 	///////////////////////////// connections ///////////////////////////
     QObject::connect (boutonDemarrer , SIGNAL(clicked () ) , this , SLOT(demarrer () ));

+ 0 - 2
MaFenetre.h

@@ -63,8 +63,6 @@ class MaFenetre : public QMainWindow { // On hérite de QMainWindow (IMPORTANT)
     QPushButton *boutonArreter;
     QPushButton *boutonInverser;
     QHBoxLayout *layoutBoutonSwitch;
-
-
 };
 
 #endif

+ 3 - 1
main.cpp

@@ -21,6 +21,7 @@
  */
 
 #include <QApplication>
+#include <QTime>
 #include "MaFenetre.h"
 #include "options.h"
 
@@ -28,7 +29,8 @@ int main(int argc, char *argv[])
 {
 	QApplication app(argc, argv);
 
-    Options option("François", "Joueur 2", 5);
+    QTime time(0,0,5,0);
+    Options option("François", "Joueur 2", time);
     MaFenetre fenetre(&option);
 	fenetre.show();
 	

+ 6 - 3
options.cpp

@@ -1,7 +1,10 @@
 #include "options.h"
 #include <QApplication>
+#include <QTime>
+#include <QString>
+#include <QObject>
 
-Options::Options(QString joueur1, QString joueur2, int temps, bool son, QObject *parent) :
+Options::Options(QString joueur1, QString joueur2, QTime const& temps, bool son, QObject *parent) :
     QObject(parent),
     _tempsDepart(temps),
     _nomJoueur1 (joueur1),
@@ -23,7 +26,7 @@ void Options::setNomJoueur2(QString joueur) {
     _nomJoueur2 = joueur;
 }
 
-void Options::setTempsDepart(int temps) {
+void Options::setTempsDepart(QTime const& temps) {
     _tempsDepart = temps;
 }
 
@@ -39,7 +42,7 @@ QString Options::nomJoueur2() const {
     return _nomJoueur2;
 }
 
-int Options::tempsDepart() const {
+QTime Options::tempsDepart() const {
     return _tempsDepart;
 }
 

+ 5 - 4
options.h

@@ -2,6 +2,7 @@
 #define OPTIONS_H
 
 #include <QApplication>
+#include <QTime>
 
 class QString;
 
@@ -9,15 +10,15 @@ class Options : public QObject
 {
 
 public:
-    explicit Options (QString joueur1 = "Joueur 1", QString joueur2 = "Joueur 2", int temps = 5, bool son = true, QObject *parent = nullptr);
+    explicit Options (QString joueur1 = "Joueur 1", QString joueur2 = "Joueur 2", QTime const& time = QTime (0,0,0,0), bool son = true, QObject *parent = nullptr);
     virtual ~Options();
-    void setTempsDepart (int temps);
+    void setTempsDepart (QTime const& temps);
     void setNomJoueur1 (QString joueur);
     void setNomJoueur2 (QString joueur);
     void setSon (bool son);
     QString nomJoueur1 () const;
     QString nomJoueur2 () const;
-    int tempsDepart () const;
+    QTime tempsDepart () const;
     bool son () const;
 
 public slots:
@@ -25,7 +26,7 @@ public slots:
 signals:
 
 private:
-    int _tempsDepart;
+    QTime   _tempsDepart;
     QString _nomJoueur1;
     QString _nomJoueur2;
     bool    _son;