|
@@ -36,13 +36,13 @@
|
|
|
#include <QDialogButtonBox>
|
|
|
#include <QMessageBox>
|
|
|
|
|
|
-MaFenetre::MaFenetre() :
|
|
|
+MaFenetre::MaFenetre(Options* mesOptions) :
|
|
|
QMainWindow (),
|
|
|
- marche(false)
|
|
|
+ marche(false),
|
|
|
+ option(mesOptions)
|
|
|
{
|
|
|
QWidget *centralWidget = new QWidget;
|
|
|
|
|
|
- option = new Options ("Bibi", "baba", 6);
|
|
|
chrono1 = new Chronometre(option->nomJoueur1() , option->tempsDepart(), this);
|
|
|
chrono2 = new Chronometre(option->nomJoueur2() , option->tempsDepart(), this);
|
|
|
boutonInverser = new QPushButton ("<->");
|
|
@@ -91,7 +91,7 @@ MaFenetre::MaFenetre() :
|
|
|
setWindowTitle ("ChronoCheckMate");
|
|
|
|
|
|
///////////////////////////// Ouverture de la boite de dialogue /////////////////
|
|
|
- definirNomJoueurs();
|
|
|
+ lancerDialogueOptions();
|
|
|
|
|
|
|
|
|
///////////////////////////// connections ///////////////////////////
|
|
@@ -99,7 +99,7 @@ MaFenetre::MaFenetre() :
|
|
|
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 (actionChangerNom , 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()));
|
|
@@ -133,16 +133,6 @@ void MaFenetre::demarrer () {
|
|
|
}
|
|
|
}
|
|
|
|
|
|
-void MaFenetre::modifierNomJoueurs() {
|
|
|
- chrono1->modifierNomJoueur(option->nomJoueur1());
|
|
|
- chrono2->modifierNomJoueur(option->nomJoueur2());
|
|
|
-}
|
|
|
-
|
|
|
-void MaFenetre::modifierTemps() {
|
|
|
- chrono1->definirTemps(option->tempsDepart());
|
|
|
- chrono2->definirTemps(option->tempsDepart());
|
|
|
-}
|
|
|
-
|
|
|
void MaFenetre::switcher () {
|
|
|
if (marche == true) {
|
|
|
chrono1->basculer ();
|
|
@@ -164,17 +154,16 @@ void MaFenetre::init () {
|
|
|
etatBoutons (true , false);
|
|
|
}
|
|
|
|
|
|
-void MaFenetre::definirNomJoueurs() {
|
|
|
+void MaFenetre::lancerDialogueOptions() {
|
|
|
Dialog dialog(option);
|
|
|
if (dialog.exec()) {
|
|
|
- option->setNomJoueur1(dialog.joueur1());
|
|
|
- option->setNomJoueur2(dialog.joueur2());
|
|
|
- option->setTempsDepart(dialog.tempsDepart());
|
|
|
- modifierTemps();
|
|
|
- modifierNomJoueurs();
|
|
|
+ chrono1->modifierNomJoueur(option->nomJoueur1());
|
|
|
+ chrono1->definirTemps(option->tempsDepart());
|
|
|
+
|
|
|
+ chrono2->modifierNomJoueur(option->nomJoueur2());
|
|
|
+ chrono2->definirTemps(option->tempsDepart());
|
|
|
if (marche==false) {
|
|
|
- chrono1->reinit();
|
|
|
- chrono2->reinit();
|
|
|
+ init();
|
|
|
}
|
|
|
}
|
|
|
}
|