MaFenetre.cpp 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139
  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 <QHBoxLayout>
  25. #include <QVBoxLayout>
  26. #include <QPushButton>
  27. #include <QKeyEvent>
  28. #include <QApplication>
  29. MaFenetre::MaFenetre() : QWidget () {
  30. setFixedSize (400,150);
  31. marche = false;
  32. chrono1 = new Chronometre("Joueur 1" , this);
  33. chrono2 = new Chronometre("Joueur 2" , this);
  34. ////////////////// Groupe Définition de la classe ///////////////////////////
  35. layoutChrono = new QHBoxLayout;
  36. layoutChrono->addWidget(chrono1);
  37. layoutChrono->addWidget(chrono2);
  38. /*groupChrono = new QGroupBox ("Chronomètre d'échecs");
  39. groupChrono->setLayout (layoutChrono);*/
  40. ///////////////////////////// Boutons /////////////////////////////
  41. boutonDemarrer = new QPushButton ("Commencer");
  42. boutonSwitch = new QPushButton ("Changer");
  43. boutonArreter = new QPushButton ("Arrêter");
  44. boutonInit = new QPushButton ("Remettre à Zéro");
  45. boutonArreter->setFocusPolicy (Qt::NoFocus);
  46. boutonSwitch->setFocusPolicy (Qt::NoFocus);
  47. boutonInit->setFocusPolicy (Qt::NoFocus);
  48. etatBoutons (true , false , false , false);
  49. layoutBoutonSwitch = new QHBoxLayout;
  50. layoutBoutonSwitch->addWidget (boutonDemarrer);
  51. layoutBoutonSwitch->addWidget (boutonSwitch);
  52. layoutBoutonSwitch->addWidget (boutonArreter);
  53. layoutBoutonSwitch->addWidget (boutonInit);
  54. ///////////////////////////// Bouton Quitter ///////////////////////////
  55. boutonQuitter = new QPushButton ("Quitter");
  56. boutonQuitter->setFocusPolicy (Qt::NoFocus);
  57. layoutBoutons = new QHBoxLayout;
  58. layoutBoutons->addWidget (boutonQuitter);
  59. /////////////////////////////Mise en page finale ///////////////////////////
  60. layoutComplet = new QVBoxLayout;
  61. layoutComplet->addLayout (layoutChrono);
  62. layoutComplet->addLayout (layoutBoutonSwitch);
  63. layoutComplet->addLayout (layoutBoutons);
  64. setLayout (layoutComplet);
  65. setWindowTitle ("ChronoCheckMate");
  66. ///////////////////////////// connections ///////////////////////////
  67. QObject::connect (boutonQuitter , SIGNAL(clicked ()) , qApp , SLOT(quit ())) ;
  68. QObject::connect (boutonDemarrer , SIGNAL (clicked () ) , this , SLOT (demarrer () ));
  69. QObject::connect (boutonSwitch , SIGNAL (clicked() ) , this , SLOT (switcher() ));
  70. QObject::connect (boutonArreter , SIGNAL (clicked() ) , this , SLOT (arreter() ));
  71. QObject::connect (boutonInit , SIGNAL (clicked () ) , this , SLOT (init () ));
  72. }
  73. ///////////////// Méthodes ////////////////////
  74. void MaFenetre::etatBoutons (bool bouton1, bool bouton2 , bool bouton3 , bool bouton4) {
  75. boutonDemarrer->setEnabled (bouton1);
  76. boutonSwitch->setEnabled (bouton2);
  77. boutonArreter->setEnabled (bouton3);
  78. boutonInit->setEnabled (bouton4);
  79. }
  80. ////////////////// SLOTS ////////////////////////
  81. void MaFenetre::demarrer () {
  82. if (marche == false ) {
  83. chrono1->reinit ();
  84. chrono2->reinit ();
  85. chrono1->start ();
  86. marche = true;
  87. etatBoutons (false , true , true , false);
  88. }
  89. }
  90. void MaFenetre::switcher () {
  91. if (marche == true) {
  92. chrono1->basculer ();
  93. chrono2->basculer ();
  94. }
  95. }
  96. void MaFenetre::arreter () {
  97. chrono1->stop();
  98. chrono2->stop();
  99. marche = false;
  100. etatBoutons (true , false , false , true);
  101. }
  102. void MaFenetre::init () {
  103. if (marche == false) {
  104. chrono1->reinit();
  105. chrono2->reinit();
  106. etatBoutons (true , false , false , false);
  107. }
  108. }
  109. void MaFenetre::keyReleaseEvent (QKeyEvent * evenement) {
  110. if (evenement->key() == Qt::Key_Space) {
  111. if (marche == true) {
  112. switcher();
  113. }
  114. if (marche == false) {
  115. demarrer();
  116. }
  117. }
  118. if (evenement->key() == Qt::Key_Return) {
  119. arreter();
  120. }
  121. }