Browse Source

passage des options comme un objet du main

François Drouhard 6 years ago
parent
commit
68b642ea9f
5 changed files with 27 additions and 43 deletions
  1. 8 12
      Dialog.cpp
  2. 2 3
      Dialog.h
  3. 12 23
      MaFenetre.cpp
  4. 2 4
      MaFenetre.h
  5. 3 1
      main.cpp

+ 8 - 12
Dialog.cpp

@@ -7,7 +7,8 @@
 #include <QLabel>
 
 Dialog::Dialog(Options *option, QWidget *parent) :
-    QDialog(parent)
+    QDialog(parent),
+    _option(option)
 {
     QHBoxLayout *layoutLineEdit = new QHBoxLayout;
     QHBoxLayout *layoutTemps    = new QHBoxLayout;
@@ -31,7 +32,7 @@ Dialog::Dialog(Options *option, QWidget *parent) :
     layoutDialog->addWidget(boutonJouer);
     setLayout(layoutDialog);
 
-    QObject::connect(boutonJouer , SIGNAL(accepted()) , this, SLOT(accept()));
+    QObject::connect(boutonJouer , SIGNAL(accepted()) , this, SLOT(valider()));
     QObject::connect(boutonJouer , SIGNAL(rejected()) , this, SLOT(close()));
 }
 
@@ -39,14 +40,9 @@ Dialog::~Dialog() {
 
 }
 
-QString Dialog::joueur1 () const {
-    return joueur1LineEdit->text();
-}
-
-QString Dialog::joueur2 () const {
-    return joueur2LineEdit->text();
-}
-
-int Dialog::tempsDepart () const {
-    return spinTempsDepart->value();
+void Dialog::valider() {
+    _option->setNomJoueur1(joueur1LineEdit->text());
+    _option->setNomJoueur2(joueur2LineEdit->text());
+    _option->setTempsDepart(spinTempsDepart->value());
+    this->accept();
 }

+ 2 - 3
Dialog.h

@@ -13,15 +13,14 @@ class Dialog : public QDialog
 public:
     explicit Dialog(Options *option, QWidget *parent = nullptr);
     ~Dialog();
-    QString joueur1 () const;
-    QString joueur2 () const;
-    int tempsDepart () const;
 
 signals:
 
 public slots:
+    void valider();
 
 private:
+    Options  * _option;
     QLineEdit* joueur1LineEdit;
     QLineEdit* joueur2LineEdit;
     QSpinBox*  spinTempsDepart;

+ 12 - 23
MaFenetre.cpp

@@ -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();
         }
     }
 }

+ 2 - 4
MaFenetre.h

@@ -36,17 +36,15 @@ class MaFenetre : public QMainWindow { // On hérite de QMainWindow (IMPORTANT)
 	Q_OBJECT
 
 	public:
-	MaFenetre();
+    MaFenetre(Options* mesOptions);
     void etatBoutons (bool etatBoutonStart , bool etatBoutonStop);
-    void modifierNomJoueurs ();
-    void modifierTemps();
 
 	private slots:
 	void demarrer ();
 	void switcher ();
 	void init ();
 	void arreter ();
-    void definirNomJoueurs();
+    void lancerDialogueOptions();
     void inverser ();
 	
 	private:

+ 3 - 1
main.cpp

@@ -22,12 +22,14 @@
 
 #include <QApplication>
 #include "MaFenetre.h"
+#include "options.h"
 
 int main(int argc, char *argv[])
 {
 	QApplication app(argc, argv);
 
-	MaFenetre fenetre;
+    Options option("François", "Joueur 2", 5);
+    MaFenetre fenetre(&option);
 	fenetre.show();
 	
 	return app.exec();