MaFenetre.cpp 5.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179
  1. /*
  2. * MaFenetre.cpp
  3. * This file is part of ChronoCheckMate
  4. *
  5. * Copyright (C) 2010 - François Drouhard
  6. *
  7. * ChronoCheckMate is free software; you can redistribute it and/or modify
  8. * it under the terms of the GNU General Public License as published by
  9. * the Free Software Foundation; either version 2 of the License, or
  10. * (at your option) any later version.
  11. *
  12. * ChronoCheckMate is distributed in the hope that it will be useful,
  13. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  15. * GNU General Public License for more details.
  16. *
  17. * You should have received a copy of the GNU General Public License
  18. * along with ChronoCheckMate; if not, write to the Free Software
  19. * Foundation, Inc., 51 Franklin St, Fifth Floor,
  20. * Boston, MA 02110-1301 USA
  21. */
  22. #include "MaFenetre.h"
  23. #include "Chronometre.h"
  24. #include "Dialog.h"
  25. #include <QMenuBar>
  26. #include <QHBoxLayout>
  27. #include <QVBoxLayout>
  28. #include <QPushButton>
  29. #include <QKeyEvent>
  30. #include <QApplication>
  31. #include <QLabel>
  32. #include <QDialog>
  33. #include <QLineEdit>
  34. #include <QDialogButtonBox>
  35. MaFenetre::MaFenetre() :
  36. QMainWindow (),
  37. marche(false),
  38. nomJoueur1 ("Joueur 1"),
  39. nomJoueur2 ("Joueur 2")
  40. {
  41. QWidget *centralWidget = new QWidget;
  42. chrono1 = new Chronometre(nomJoueur1 , this);
  43. chrono2 = new Chronometre(nomJoueur2 , this);
  44. boutonInverser = new QPushButton ("<->");
  45. boutonInverser->setMinimumWidth(50);
  46. boutonInverser->setMaximumWidth(50);
  47. ////////////////// Groupe Définition de la classe ///////////////////////////
  48. layoutChrono = new QHBoxLayout;
  49. layoutChrono->addWidget(chrono1);
  50. layoutChrono->addWidget(boutonInverser, Qt::AlignVCenter);
  51. layoutChrono->addWidget(chrono2);
  52. ///////////////////////////// Menus ////////////////////////////
  53. QMenu *menuFichier = menuBar()->addMenu("&Fichier");
  54. QAction *actionNouveau = new QAction ("&Nouveau" , this);
  55. QAction *actionChangerNom = new QAction ("&Changer nom des joueurs...", this);
  56. QAction *actionQuitter = new QAction ("&Quitter" , this);
  57. menuFichier->addAction(actionNouveau);
  58. menuFichier->addAction(actionChangerNom);
  59. menuFichier->addSeparator();
  60. menuFichier->addAction(actionQuitter);
  61. ///////////////////////////// Boutons /////////////////////////////
  62. boutonDemarrer = new QPushButton ("Commencer (Barre Espace)");
  63. boutonArreter = new QPushButton ("Arrêter(Touche Entrée)");
  64. boutonArreter->setFocusPolicy (Qt::NoFocus);
  65. boutonInverser->setFocusPolicy(Qt::NoFocus);
  66. etatBoutons (true , false);
  67. layoutBoutonSwitch = new QHBoxLayout;
  68. layoutBoutonSwitch->addWidget (boutonDemarrer);
  69. layoutBoutonSwitch->addWidget (boutonArreter);
  70. ///////////////////////////// Aide /////////////////////////////////////
  71. QLabel *labelAide = new QLabel ("<b>Aide</b><br />Espace : Lancer le chrono/Donner le chrono<br />Entrée : Stopper les deux chronos");
  72. /////////////////////////////Mise en page finale ///////////////////////////
  73. layoutComplet = new QVBoxLayout;
  74. layoutComplet->addLayout (layoutChrono);
  75. layoutComplet->addLayout (layoutBoutonSwitch);
  76. layoutComplet->addWidget (labelAide);
  77. centralWidget->setLayout (layoutComplet);
  78. setCentralWidget(centralWidget);
  79. setWindowTitle ("ChronoCheckMate");
  80. ///////////////////////////// Ouverture de la boite de dialogue /////////////////
  81. definirNomJoueurs();
  82. ///////////////////////////// connections ///////////////////////////
  83. QObject::connect (boutonDemarrer , SIGNAL(clicked () ) , this , SLOT(demarrer () ));
  84. QObject::connect (boutonInverser , SIGNAL(clicked()) , this , SLOT(inverser()));
  85. QObject::connect (boutonArreter , SIGNAL(clicked()), this, SLOT (arreter()));
  86. QObject::connect (actionNouveau, SIGNAL(triggered()) , this , SLOT(init()));
  87. QObject::connect (actionChangerNom , SIGNAL(triggered()), this, SLOT(definirNomJoueurs()));
  88. QObject::connect (actionQuitter , SIGNAL(triggered()) , qApp , SLOT(quit()));
  89. }
  90. ///////////////// Méthodes ////////////////////
  91. void MaFenetre::etatBoutons (bool etatBoutonStart, bool etatBoutonStop) {
  92. boutonDemarrer->setEnabled (etatBoutonStart);
  93. boutonArreter->setEnabled (etatBoutonStop);
  94. }
  95. ////////////////// SLOTS ////////////////////////
  96. void MaFenetre::inverser() {
  97. layoutChrono->removeWidget(chrono1);
  98. layoutChrono->removeWidget(chrono2);
  99. Chronometre *chronoTemp = chrono1;
  100. chrono1 = chrono2;
  101. chrono2 = chronoTemp;
  102. layoutChrono->insertWidget(0 , chrono1);
  103. layoutChrono->addWidget(chrono2);
  104. }
  105. void MaFenetre::demarrer () {
  106. if (marche == false ) {
  107. chrono1->reinit ();
  108. chrono2->reinit ();
  109. chrono1->start ();
  110. marche = true;
  111. etatBoutons (false , true);
  112. }
  113. }
  114. void MaFenetre::modifierNomJoueurs() {
  115. chrono1->modifierNomJoueur(nomJoueur1);
  116. chrono2->modifierNomJoueur(nomJoueur2);
  117. }
  118. void MaFenetre::switcher () {
  119. if (marche == true) {
  120. chrono1->basculer ();
  121. chrono2->basculer ();
  122. }
  123. }
  124. void MaFenetre::arreter () {
  125. chrono1->stop();
  126. chrono2->stop();
  127. marche = false;
  128. etatBoutons (true , false);
  129. }
  130. void MaFenetre::init () {
  131. chrono1->reinit();
  132. chrono2->reinit();
  133. marche = false;
  134. etatBoutons (true , false);
  135. }
  136. void MaFenetre::definirNomJoueurs() {
  137. Dialog dialog(nomJoueur1, nomJoueur2, this);
  138. if (dialog.exec()) {
  139. nomJoueur1 = dialog.joueur1();
  140. nomJoueur2 = dialog.joueur2();
  141. modifierNomJoueurs();
  142. }
  143. }
  144. void MaFenetre::keyReleaseEvent (QKeyEvent * evenement) {
  145. if (evenement->key() == Qt::Key_Space) {
  146. if (marche == true) {
  147. switcher();
  148. }
  149. if (marche == false) {
  150. demarrer();
  151. }
  152. }
  153. if (evenement->key() == Qt::Key_Return) {
  154. arreter();
  155. }
  156. }