Przeglądaj źródła

petites corrections bêtes

francois 7 lat temu
rodzic
commit
b4febc394a
3 zmienionych plików z 7 dodań i 6 usunięć
  1. 1 1
      Chronometre.cpp
  2. 5 4
      MaFenetre.cpp
  3. 1 1
      MaFenetre.h

+ 1 - 1
Chronometre.cpp

@@ -37,7 +37,7 @@ Chronometre::Chronometre (const QString & nom , QWidget * parent = 0) :
     setFlat(false);
 
     temps = new QTime (0,0,0,0);
-    QFont font("Times New Roman" , 22 , 5);
+    QFont font("Arial" , 22 , 5);
 
     ecranTemps = new QLabel (temps->toString("hh:mm::ss:zzz"));
     ecranTemps->setFont(font);

+ 5 - 4
MaFenetre.cpp

@@ -35,12 +35,12 @@
 
 MaFenetre::MaFenetre() :
     QMainWindow (),
+    marche(false),
     nomJoueur1 ("Joueur 1"),
     nomJoueur2 ("Joueur 2")
 {
     QWidget *centralWidget = new QWidget;
 
-    marche = false;
     chrono1 = new Chronometre(nomJoueur1 , this);
     chrono2 = new Chronometre(nomJoueur2 , this);
     boutonInverser = new QPushButton ("<->");
@@ -92,15 +92,16 @@ MaFenetre::MaFenetre() :
 	///////////////////////////// connections ///////////////////////////
     QObject::connect (boutonDemarrer , SIGNAL(clicked () ) , this , SLOT(demarrer () ));
     QObject::connect (boutonInverser , SIGNAL(clicked()) , this , SLOT(inverser()));
+    QObject::connect (boutonArreter , SIGNAL(clicked()), this, SLOT (arreter()));
     QObject::connect (actionNouveau, SIGNAL(triggered()) , this , SLOT(init()));
     QObject::connect (actionChangerNom , SIGNAL(triggered()), this, SLOT(definirNomJoueurs()));
     QObject::connect (actionQuitter , SIGNAL(triggered()) , qApp , SLOT(quit()));
 }
 
 ///////////////// Méthodes ////////////////////
-void MaFenetre::etatBoutons (bool bouton1, bool bouton2) {
-	boutonDemarrer->setEnabled (bouton1);
-    boutonArreter->setEnabled (bouton2);
+void MaFenetre::etatBoutons (bool etatBoutonStart, bool etatBoutonStop) {
+    boutonDemarrer->setEnabled (etatBoutonStart);
+    boutonArreter->setEnabled (etatBoutonStop);
 }
 
 ////////////////// SLOTS ////////////////////////

+ 1 - 1
MaFenetre.h

@@ -36,7 +36,7 @@ class MaFenetre : public QMainWindow { // On hérite de QMainWindow (IMPORTANT)
 
 	public:
 	MaFenetre();
-    void etatBoutons (bool bouton1 , bool bouton2);
+    void etatBoutons (bool etatBoutonStart , bool etatBoutonStop);
     void modifierNomJoueurs ();
 
 	private slots: