|
@@ -22,6 +22,7 @@
|
|
|
|
|
|
#include "MaFenetre.h"
|
|
|
#include "Chronometre.h"
|
|
|
+#include "Dialog.h"
|
|
|
#include <QMenuBar>
|
|
|
#include <QHBoxLayout>
|
|
|
#include <QVBoxLayout>
|
|
@@ -155,26 +156,10 @@ void MaFenetre::init () {
|
|
|
}
|
|
|
|
|
|
void MaFenetre::definirNomJoueurs() {
|
|
|
- QDialog *dialog = new QDialog (this);
|
|
|
- QHBoxLayout *layoutLineEdit = new QHBoxLayout;
|
|
|
- QVBoxLayout *layoutDialog = new QVBoxLayout;
|
|
|
- QDialogButtonBox *boutonJouer = new QDialogButtonBox (QDialogButtonBox::Ok | QDialogButtonBox::Cancel);
|
|
|
- QLineEdit *joueur1LineEdit = new QLineEdit(nomJoueur1 , this);
|
|
|
- QLineEdit *joueur2LineEdit = new QLineEdit(nomJoueur2 , this);
|
|
|
- joueur1LineEdit->selectAll();
|
|
|
-
|
|
|
- layoutLineEdit->addWidget(joueur1LineEdit);
|
|
|
- layoutLineEdit->addWidget(joueur2LineEdit);
|
|
|
- layoutDialog->addLayout(layoutLineEdit);
|
|
|
- layoutDialog->addWidget(boutonJouer);
|
|
|
- dialog->setLayout(layoutDialog);
|
|
|
-
|
|
|
- QObject::connect(boutonJouer , SIGNAL(accepted()) , dialog, SLOT(accept()));
|
|
|
- QObject::connect(boutonJouer , SIGNAL(rejected()) , dialog, SLOT(close()));
|
|
|
-
|
|
|
- if (dialog->exec()) {
|
|
|
- nomJoueur1 = joueur1LineEdit->text();
|
|
|
- nomJoueur2 = joueur2LineEdit->text();
|
|
|
+ Dialog dialog(nomJoueur1, nomJoueur2, this);
|
|
|
+ if (dialog.exec()) {
|
|
|
+ nomJoueur1 = dialog.joueur1();
|
|
|
+ nomJoueur2 = dialog.joueur2();
|
|
|
modifierNomJoueurs();
|
|
|
}
|
|
|
}
|