|
@@ -27,9 +27,9 @@
|
|
|
#include <QPushButton>
|
|
|
#include <QKeyEvent>
|
|
|
#include <QApplication>
|
|
|
+#include <QLabel>
|
|
|
|
|
|
MaFenetre::MaFenetre() : QWidget () {
|
|
|
- setFixedSize (400,150);
|
|
|
marche = false;
|
|
|
chrono1 = new Chronometre("Joueur 1" , this);
|
|
|
chrono2 = new Chronometre("Joueur 2" , this);
|
|
@@ -66,12 +66,16 @@ MaFenetre::MaFenetre() : QWidget () {
|
|
|
|
|
|
layoutBoutons = new QHBoxLayout;
|
|
|
layoutBoutons->addWidget (boutonQuitter);
|
|
|
+
|
|
|
+ ///////////////////////////// Aide /////////////////////////////////////
|
|
|
+ QLabel *labelAide = new QLabel ("<b>Aide</b><br />Espace : Lancer le chrono/Donner le chrono<br />Entrée : Stopper les deux chronos");
|
|
|
|
|
|
|
|
|
/////////////////////////////Mise en page finale ///////////////////////////
|
|
|
layoutComplet = new QVBoxLayout;
|
|
|
layoutComplet->addLayout (layoutChrono);
|
|
|
layoutComplet->addLayout (layoutBoutonSwitch);
|
|
|
+ layoutComplet->addWidget (labelAide);
|
|
|
layoutComplet->addLayout (layoutBoutons);
|
|
|
setLayout (layoutComplet);
|
|
|
setWindowTitle ("ChronoCheckMate");
|