|
@@ -5,16 +5,20 @@
|
|
|
#include <QSpinBox>
|
|
|
#include <QDialogButtonBox>
|
|
|
#include <QLabel>
|
|
|
+#include <QFormLayout>
|
|
|
+#include <QCheckBox>
|
|
|
|
|
|
Dialog::Dialog(Options *option, QWidget *parent) :
|
|
|
QDialog(parent),
|
|
|
_option(option)
|
|
|
{
|
|
|
QHBoxLayout *layoutLineEdit = new QHBoxLayout;
|
|
|
- QHBoxLayout *layoutTemps = new QHBoxLayout;
|
|
|
- QVBoxLayout *layoutDialog = new QVBoxLayout;
|
|
|
+ //QHBoxLayout *layoutTemps = new QHBoxLayout;
|
|
|
+ QVBoxLayout *layoutDialog = new QVBoxLayout;
|
|
|
+ QFormLayout *layoutForm = new QFormLayout;
|
|
|
QDialogButtonBox *boutonJouer = new QDialogButtonBox (QDialogButtonBox::Ok | QDialogButtonBox::Cancel);
|
|
|
- QLabel *labelTempsDepart= new QLabel("Temps départ (minutes)");
|
|
|
+ checkBoxSon = new QCheckBox();
|
|
|
+ checkBoxSon->setChecked(option->son());
|
|
|
spinTempsDepart = new QSpinBox;
|
|
|
spinTempsDepart->setMinimum(1);
|
|
|
spinTempsDepart->setMaximum(300);
|
|
@@ -25,9 +29,13 @@ Dialog::Dialog(Options *option, QWidget *parent) :
|
|
|
|
|
|
layoutLineEdit->addWidget(joueur1LineEdit);
|
|
|
layoutLineEdit->addWidget(joueur2LineEdit);
|
|
|
- layoutTemps->addWidget(labelTempsDepart);
|
|
|
- layoutTemps->addWidget(spinTempsDepart);
|
|
|
- layoutDialog->addLayout(layoutTemps);
|
|
|
+ //layoutTemps->addWidget(labelTempsDepart);
|
|
|
+ //layoutTemps->addWidget(spinTempsDepart);
|
|
|
+ layoutForm->addRow("Son", checkBoxSon);
|
|
|
+ layoutForm->addRow("Temps de départ (minutes)", spinTempsDepart);
|
|
|
+
|
|
|
+ layoutDialog->addLayout(layoutForm);
|
|
|
+ //layoutDialog->addLayout(layoutTemps);
|
|
|
layoutDialog->addLayout(layoutLineEdit);
|
|
|
layoutDialog->addWidget(boutonJouer);
|
|
|
setLayout(layoutDialog);
|
|
@@ -44,5 +52,6 @@ void Dialog::valider() {
|
|
|
_option->setNomJoueur1(joueur1LineEdit->text());
|
|
|
_option->setNomJoueur2(joueur2LineEdit->text());
|
|
|
_option->setTempsDepart(spinTempsDepart->value());
|
|
|
+ _option->setSon(checkBoxSon->isChecked());
|
|
|
this->accept();
|
|
|
}
|