|
@@ -35,6 +35,7 @@
|
|
|
#include <QLineEdit>
|
|
|
#include <QDialogButtonBox>
|
|
|
#include <QMessageBox>
|
|
|
+#include <QSound>
|
|
|
|
|
|
MaFenetre::MaFenetre(Options* mesOptions) :
|
|
|
QMainWindow (),
|
|
@@ -43,8 +44,8 @@ MaFenetre::MaFenetre(Options* mesOptions) :
|
|
|
{
|
|
|
QWidget *centralWidget = new QWidget;
|
|
|
|
|
|
- chrono1 = new Chronometre(option->nomJoueur1() , option->tempsDepart(), option->son(), this);
|
|
|
- chrono2 = new Chronometre(option->nomJoueur2() , option->tempsDepart(), option->son(), this);
|
|
|
+ chrono1 = new Chronometre(option->nomJoueur1() , option->tempsDepart(), this);
|
|
|
+ chrono2 = new Chronometre(option->nomJoueur2() , option->tempsDepart(), this);
|
|
|
boutonInverser = new QPushButton ("<->");
|
|
|
boutonInverser->setMinimumWidth(50);
|
|
|
boutonInverser->setMaximumWidth(50);
|
|
@@ -148,6 +149,8 @@ void MaFenetre::arreter () {
|
|
|
|
|
|
void MaFenetre::afficheGagnant() {
|
|
|
arreter();
|
|
|
+ if (option->son() == true)
|
|
|
+ QSound::play(":/ressources/sonnette.wav");
|
|
|
QMessageBox message;
|
|
|
QString texte;
|
|
|
texte = "Le joueur " + (*chrono1+=*chrono2) + " a gagné au temps.";
|
|
@@ -168,11 +171,9 @@ void MaFenetre::lancerDialogueOptions() {
|
|
|
if (dialog.exec()) {
|
|
|
chrono1->modifierNomJoueur(option->nomJoueur1());
|
|
|
chrono1->definirTemps(option->tempsDepart());
|
|
|
- chrono1->modifierSon(option->son());
|
|
|
|
|
|
chrono2->modifierNomJoueur(option->nomJoueur2());
|
|
|
chrono2->definirTemps(option->tempsDepart());
|
|
|
- chrono2->modifierSon(option->son());
|
|
|
|
|
|
if (marche==false) {
|
|
|
init();
|