|
@@ -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 ////////////////////////
|