/* * MaFenetre.cpp * This file is part of ChronoCheckMate * * Copyright (C) 2010 - François Drouhard * * ChronoCheckMate is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * ChronoCheckMate is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with ChronoCheckMate; if not, write to the Free Software * Foundation, Inc., 51 Franklin St, Fifth Floor, * Boston, MA 02110-1301 USA */ #include "MaFenetre.h" #include "Chronometre.h" #include "options.h" #include "Dialog.h" #include #include #include #include #include #include #include #include #include #include #include MaFenetre::MaFenetre(Options* mesOptions) : QMainWindow (), marche(false), option(mesOptions) { QWidget *centralWidget = new QWidget; chrono1 = new Chronometre(option->nomJoueur1() , option->tempsDepart(), this); chrono2 = new Chronometre(option->nomJoueur2() , option->tempsDepart(), this); boutonInverser = new QPushButton ("<->"); boutonInverser->setMinimumWidth(50); boutonInverser->setMaximumWidth(50); ////////////////// Groupe Définition de la classe /////////////////////////// layoutChrono = new QHBoxLayout; layoutChrono->addWidget(chrono1); layoutChrono->addWidget(boutonInverser, Qt::AlignVCenter); layoutChrono->addWidget(chrono2); ///////////////////////////// Menus //////////////////////////// QMenu *menuFichier = menuBar()->addMenu("&Fichier"); QAction *actionNouveau = new QAction ("&Nouveau" , this); QAction *actionChangerNom = new QAction ("&Changer nom des joueurs...", this); QAction *actionQuitter = new QAction ("&Quitter" , this); menuFichier->addAction(actionNouveau); menuFichier->addAction(actionChangerNom); menuFichier->addSeparator(); menuFichier->addAction(actionQuitter); ///////////////////////////// Boutons ///////////////////////////// boutonDemarrer = new QPushButton ("Commencer (Barre Espace)"); boutonArreter = new QPushButton ("Arrêter(Touche Entrée)"); boutonArreter->setFocusPolicy (Qt::NoFocus); boutonInverser->setFocusPolicy(Qt::NoFocus); etatBoutons (true , false); layoutBoutonSwitch = new QHBoxLayout; layoutBoutonSwitch->addWidget (boutonDemarrer); layoutBoutonSwitch->addWidget (boutonArreter); ///////////////////////////// Aide ///////////////////////////////////// QLabel *labelAide = new QLabel ("Aide
Espace : Lancer le chrono/Donner le chrono
Entrée : Stopper les deux chronos"); /////////////////////////////Mise en page finale /////////////////////////// layoutComplet = new QVBoxLayout; layoutComplet->addLayout (layoutChrono); layoutComplet->addLayout (layoutBoutonSwitch); layoutComplet->addWidget (labelAide); centralWidget->setLayout (layoutComplet); setCentralWidget(centralWidget); setWindowTitle ("ChronoCheckMate"); ///////////////////////////// Ouverture de la boite de dialogue ///////////////// lancerDialogueOptions(); ///////////////////////////// connections /////////////////////////// QObject::connect (boutonDemarrer , SIGNAL(clicked () ) , this , SLOT(demarrer () )); QObject::connect (boutonInverser , SIGNAL(clicked()) , this , SLOT(inverser())); QObject::connect (boutonArreter , SIGNAL(clicked()), this, SLOT (arreter())); QObject::connect (actionNouveau, SIGNAL(triggered()) , this , SLOT(init())); QObject::connect (actionChangerNom , SIGNAL(triggered()), this, SLOT(lancerDialogueOptions())); QObject::connect (actionQuitter , SIGNAL(triggered()) , qApp , SLOT(quit())); QObject::connect (chrono1, SIGNAL(fin()), this, SLOT(arreter())); QObject::connect (chrono2, SIGNAL(fin()), this, SLOT(arreter())); } ///////////////// Méthodes //////////////////// void MaFenetre::etatBoutons (bool etatBoutonStart, bool etatBoutonStop) { boutonDemarrer->setEnabled (etatBoutonStart); boutonArreter->setEnabled (etatBoutonStop); } ////////////////// SLOTS //////////////////////// void MaFenetre::inverser() { layoutChrono->removeWidget(chrono1); layoutChrono->removeWidget(chrono2); Chronometre *chronoTemp = chrono1; chrono1 = chrono2; chrono2 = chronoTemp; layoutChrono->insertWidget(0 , chrono1); layoutChrono->addWidget(chrono2); } void MaFenetre::demarrer () { if (marche == false ) { chrono1->reinit (); chrono2->reinit (); chrono1->start (); marche = true; etatBoutons (false , true); } } void MaFenetre::switcher () { if (marche == true) { chrono1->basculer (); chrono2->basculer (); } } void MaFenetre::arreter () { chrono1->stop(); chrono2->stop(); marche = false; etatBoutons (true , false); /* QMessageBox message; message.setText("Le joueur bidule a gagné"); message.setStandardButtons(QMessageBox::Ok); message.exec(); */ } void MaFenetre::init () { chrono1->reinit(); chrono2->reinit(); marche = false; etatBoutons (true , false); } void MaFenetre::lancerDialogueOptions() { Dialog dialog(option); if (dialog.exec()) { chrono1->modifierNomJoueur(option->nomJoueur1()); chrono1->definirTemps(option->tempsDepart()); chrono2->modifierNomJoueur(option->nomJoueur2()); chrono2->definirTemps(option->tempsDepart()); if (marche==false) { init(); } } } void MaFenetre::keyReleaseEvent (QKeyEvent * evenement) { if (evenement->key() == Qt::Key_Space) { if (marche == true) { switcher(); } if (marche == false) { demarrer(); } } if (evenement->key() == Qt::Key_Return) { arreter(); } }