|
@@ -100,8 +100,8 @@ MaFenetre::MaFenetre(Options* mesOptions) :
|
|
|
QObject::connect (actionNouveau, SIGNAL(triggered()) , this , SLOT(init()));
|
|
|
QObject::connect (actionOptions , SIGNAL(triggered()), this, SLOT(lancerDialogueOptions()));
|
|
|
QObject::connect (actionQuitter , SIGNAL(triggered()) , qApp , SLOT(quit()));
|
|
|
- QObject::connect (chrono1, SIGNAL(fin()), this, SLOT(arreter()));
|
|
|
- QObject::connect (chrono2, SIGNAL(fin()), this, SLOT(arreter()));
|
|
|
+ QObject::connect (chrono1, SIGNAL(fin()), this, SLOT(afficheGagnant()));
|
|
|
+ QObject::connect (chrono2, SIGNAL(fin()), this, SLOT(afficheGagnant()));
|
|
|
|
|
|
}
|
|
|
|
|
@@ -144,12 +144,16 @@ void MaFenetre::arreter () {
|
|
|
chrono2->stop();
|
|
|
marche = false;
|
|
|
etatBoutons (true , false);
|
|
|
- /*
|
|
|
+}
|
|
|
+
|
|
|
+void MaFenetre::afficheGagnant() {
|
|
|
+ arreter();
|
|
|
QMessageBox message;
|
|
|
- message.setText("Le joueur bidule a gagné");
|
|
|
+ QString texte;
|
|
|
+ texte = "Le joueur " + (*chrono1+=*chrono2) + " a gagné au temps.";
|
|
|
+ message.setText(texte);
|
|
|
message.setStandardButtons(QMessageBox::Ok);
|
|
|
message.exec();
|
|
|
- */
|
|
|
}
|
|
|
|
|
|
void MaFenetre::init () {
|