MaFenetre.cpp 6.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189
  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 "options.h"
  25. #include "Dialog.h"
  26. #include <QMenuBar>
  27. #include <QHBoxLayout>
  28. #include <QVBoxLayout>
  29. #include <QPushButton>
  30. #include <QKeyEvent>
  31. #include <QApplication>
  32. #include <QLabel>
  33. #include <QDialog>
  34. #include <QLineEdit>
  35. #include <QDialogButtonBox>
  36. #include <QMessageBox>
  37. MaFenetre::MaFenetre(Options* mesOptions) :
  38. QMainWindow (),
  39. marche(false),
  40. option(mesOptions)
  41. {
  42. QWidget *centralWidget = new QWidget;
  43. chrono1 = new Chronometre(option->nomJoueur1() , option->tempsDepart(), this);
  44. chrono2 = new Chronometre(option->nomJoueur2() , option->tempsDepart(), this);
  45. boutonInverser = new QPushButton ("<->");
  46. boutonInverser->setMinimumWidth(50);
  47. boutonInverser->setMaximumWidth(50);
  48. ////////////////// Groupe Définition de la classe ///////////////////////////
  49. layoutChrono = new QHBoxLayout;
  50. layoutChrono->addWidget(chrono1);
  51. layoutChrono->addWidget(boutonInverser, Qt::AlignVCenter);
  52. layoutChrono->addWidget(chrono2);
  53. ///////////////////////////// Menus ////////////////////////////
  54. QMenu *menuFichier = menuBar()->addMenu("&Fichier");
  55. QAction *actionNouveau = new QAction ("&Nouveau" , this);
  56. QAction *actionChangerNom = new QAction ("&Changer nom des joueurs...", this);
  57. QAction *actionQuitter = new QAction ("&Quitter" , this);
  58. menuFichier->addAction(actionNouveau);
  59. menuFichier->addAction(actionChangerNom);
  60. menuFichier->addSeparator();
  61. menuFichier->addAction(actionQuitter);
  62. ///////////////////////////// Boutons /////////////////////////////
  63. boutonDemarrer = new QPushButton ("Commencer (Barre Espace)");
  64. boutonArreter = new QPushButton ("Arrêter(Touche Entrée)");
  65. boutonArreter->setFocusPolicy (Qt::NoFocus);
  66. boutonInverser->setFocusPolicy(Qt::NoFocus);
  67. etatBoutons (true , false);
  68. layoutBoutonSwitch = new QHBoxLayout;
  69. layoutBoutonSwitch->addWidget (boutonDemarrer);
  70. layoutBoutonSwitch->addWidget (boutonArreter);
  71. ///////////////////////////// Aide /////////////////////////////////////
  72. QLabel *labelAide = new QLabel ("<b>Aide</b><br />Espace : Lancer le chrono/Donner le chrono<br />Entrée : Stopper les deux chronos");
  73. /////////////////////////////Mise en page finale ///////////////////////////
  74. layoutComplet = new QVBoxLayout;
  75. layoutComplet->addLayout (layoutChrono);
  76. layoutComplet->addLayout (layoutBoutonSwitch);
  77. layoutComplet->addWidget (labelAide);
  78. centralWidget->setLayout (layoutComplet);
  79. setCentralWidget(centralWidget);
  80. setWindowTitle ("ChronoCheckMate");
  81. ///////////////////////////// Ouverture de la boite de dialogue /////////////////
  82. lancerDialogueOptions();
  83. ///////////////////////////// connections ///////////////////////////
  84. QObject::connect (boutonDemarrer , SIGNAL(clicked () ) , this , SLOT(demarrer () ));
  85. QObject::connect (boutonInverser , SIGNAL(clicked()) , this , SLOT(inverser()));
  86. QObject::connect (boutonArreter , SIGNAL(clicked()), this, SLOT (arreter()));
  87. QObject::connect (actionNouveau, SIGNAL(triggered()) , this , SLOT(init()));
  88. QObject::connect (actionChangerNom , SIGNAL(triggered()), this, SLOT(lancerDialogueOptions()));
  89. QObject::connect (actionQuitter , SIGNAL(triggered()) , qApp , SLOT(quit()));
  90. QObject::connect (chrono1, SIGNAL(fin()), this, SLOT(arreter()));
  91. QObject::connect (chrono2, SIGNAL(fin()), this, SLOT(arreter()));
  92. }
  93. ///////////////// Méthodes ////////////////////
  94. void MaFenetre::etatBoutons (bool etatBoutonStart, bool etatBoutonStop) {
  95. boutonDemarrer->setEnabled (etatBoutonStart);
  96. boutonArreter->setEnabled (etatBoutonStop);
  97. }
  98. ////////////////// SLOTS ////////////////////////
  99. void MaFenetre::inverser() {
  100. layoutChrono->removeWidget(chrono1);
  101. layoutChrono->removeWidget(chrono2);
  102. Chronometre *chronoTemp = chrono1;
  103. chrono1 = chrono2;
  104. chrono2 = chronoTemp;
  105. layoutChrono->insertWidget(0 , chrono1);
  106. layoutChrono->addWidget(chrono2);
  107. }
  108. void MaFenetre::demarrer () {
  109. if (marche == false ) {
  110. chrono1->reinit ();
  111. chrono2->reinit ();
  112. chrono1->start ();
  113. marche = true;
  114. etatBoutons (false , true);
  115. }
  116. }
  117. void MaFenetre::switcher () {
  118. if (marche == true) {
  119. chrono1->basculer ();
  120. chrono2->basculer ();
  121. }
  122. }
  123. void MaFenetre::arreter () {
  124. chrono1->stop();
  125. chrono2->stop();
  126. marche = false;
  127. etatBoutons (true , false);
  128. /*
  129. QMessageBox message;
  130. message.setText("Le joueur bidule a gagné");
  131. message.setStandardButtons(QMessageBox::Ok);
  132. message.exec();
  133. */
  134. }
  135. void MaFenetre::init () {
  136. chrono1->reinit();
  137. chrono2->reinit();
  138. marche = false;
  139. etatBoutons (true , false);
  140. }
  141. void MaFenetre::lancerDialogueOptions() {
  142. Dialog dialog(option);
  143. if (dialog.exec()) {
  144. chrono1->modifierNomJoueur(option->nomJoueur1());
  145. chrono1->definirTemps(option->tempsDepart());
  146. chrono2->modifierNomJoueur(option->nomJoueur2());
  147. chrono2->definirTemps(option->tempsDepart());
  148. if (marche==false) {
  149. init();
  150. }
  151. }
  152. }
  153. void MaFenetre::keyReleaseEvent (QKeyEvent * evenement) {
  154. if (evenement->key() == Qt::Key_Space) {
  155. if (marche == true) {
  156. switcher();
  157. }
  158. if (marche == false) {
  159. demarrer();
  160. }
  161. }
  162. if (evenement->key() == Qt::Key_Return) {
  163. arreter();
  164. }
  165. }