|
@@ -2,7 +2,9 @@
|
|
|
#include "options.h"
|
|
|
#include <QBoxLayout>
|
|
|
#include <QLineEdit>
|
|
|
-#include <QSpinBox>
|
|
|
+//#include <QSpinBox>
|
|
|
+#include <QTimeEdit>
|
|
|
+#include <QTime>
|
|
|
#include <QDialogButtonBox>
|
|
|
#include <QLabel>
|
|
|
#include <QFormLayout>
|
|
@@ -12,31 +14,28 @@ Dialog::Dialog(Options *option, QWidget *parent) :
|
|
|
QDialog(parent),
|
|
|
_option(option)
|
|
|
{
|
|
|
- QHBoxLayout *layoutLineEdit = new QHBoxLayout;
|
|
|
- //QHBoxLayout *layoutTemps = new QHBoxLayout;
|
|
|
- QVBoxLayout *layoutDialog = new QVBoxLayout;
|
|
|
- QFormLayout *layoutForm = new QFormLayout;
|
|
|
+ QHBoxLayout *layoutLineEdit = new QHBoxLayout;
|
|
|
+ QVBoxLayout *layoutDialog = new QVBoxLayout;
|
|
|
+ QFormLayout *layoutForm = new QFormLayout;
|
|
|
QDialogButtonBox *boutonJouer = new QDialogButtonBox (QDialogButtonBox::Ok | QDialogButtonBox::Cancel);
|
|
|
checkBoxSon = new QCheckBox();
|
|
|
- checkBoxSon->setChecked(option->son());
|
|
|
- spinTempsDepart = new QSpinBox;
|
|
|
- spinTempsDepart->setMinimum(1);
|
|
|
- spinTempsDepart->setMaximum(300);
|
|
|
- spinTempsDepart->setValue(option->tempsDepart());
|
|
|
- joueur1LineEdit = new QLineEdit(option->nomJoueur1() , this);
|
|
|
- joueur2LineEdit = new QLineEdit(option->nomJoueur2() , this);
|
|
|
+ checkBoxSon->setChecked(_option->son());
|
|
|
+ spinTempsDepart = new QTimeEdit;
|
|
|
+ spinTempsDepart->setTime(_option->tempsDepart());
|
|
|
+ spinTempsDepart->setDisplayFormat("HH:mm:ss");
|
|
|
+
|
|
|
+ joueur1LineEdit = new QLineEdit(_option->nomJoueur1() , this);
|
|
|
+ joueur2LineEdit = new QLineEdit(_option->nomJoueur2() , this);
|
|
|
joueur1LineEdit->selectAll();
|
|
|
|
|
|
layoutLineEdit->addWidget(joueur1LineEdit);
|
|
|
layoutLineEdit->addWidget(joueur2LineEdit);
|
|
|
- //layoutTemps->addWidget(labelTempsDepart);
|
|
|
- //layoutTemps->addWidget(spinTempsDepart);
|
|
|
+
|
|
|
layoutForm->addRow("Son", checkBoxSon);
|
|
|
- layoutForm->addRow("Temps de départ (minutes)", spinTempsDepart);
|
|
|
+ layoutForm->addRow("Temps de départ", spinTempsDepart);
|
|
|
|
|
|
- layoutDialog->addLayout(layoutForm);
|
|
|
- //layoutDialog->addLayout(layoutTemps);
|
|
|
layoutDialog->addLayout(layoutLineEdit);
|
|
|
+ layoutDialog->addLayout(layoutForm);
|
|
|
layoutDialog->addWidget(boutonJouer);
|
|
|
setLayout(layoutDialog);
|
|
|
|
|
@@ -51,7 +50,7 @@ Dialog::~Dialog() {
|
|
|
void Dialog::valider() {
|
|
|
_option->setNomJoueur1(joueur1LineEdit->text());
|
|
|
_option->setNomJoueur2(joueur2LineEdit->text());
|
|
|
- _option->setTempsDepart(spinTempsDepart->value());
|
|
|
- _option->setSon(checkBoxSon->isChecked());
|
|
|
+ _option->setTempsDepart(spinTempsDepart->time());
|
|
|
+ _option->setSon(checkBoxSon->isChecked());
|
|
|
this->accept();
|
|
|
}
|