eliot/qt/player_widget.h
Olivier Teulière ed2a20a3e3 - Allow setting the coordinates of the played word by clicking on the board
- New PlayWordMediator class, to encapsulate the behaviour of the controls
   used to play a word
 - The Training mode now has input fields to play words directly, without
   choosing them in the search results
2009-02-19 18:25:17 +00:00

106 lines
2.8 KiB
C++

/*****************************************************************************
* Eliot
* Copyright (C) 2008 Olivier Teulière
* Authors: Olivier Teulière <ipkiss @@ gmail.com>
*
* This program 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.
*
* This program 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 this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*****************************************************************************/
#ifndef PLAYER_WIDGET_H_
#define PLAYER_WIDGET_H_
#include <QtGui/QWidget>
#include <QtGui/QTabWidget>
#include "ui/player_widget.ui.h"
class QLineEdit;
class PublicGame;
class PlayWordMediator;
class CoordModel;
class Coord;
class PlayerWidget: public QWidget, private Ui::PlayerWidget
{
Q_OBJECT;
public:
explicit PlayerWidget(QWidget *parent,
CoordModel &iCoordModel,
unsigned int iPlayerNb = 0,
PublicGame *iGame = NULL);
signals:
void gameUpdated();
void notifyProblem(QString iMsg);
void notifyInfo(QString iMsg);
public slots:
void refresh();
protected:
virtual QSize sizeHint() const;
private slots:
void on_pushButtonShuffle_clicked();
void on_pushButtonChange_clicked() { on_lineEditChange_returnPressed(); }
void on_pushButtonPass_clicked() { on_lineEditChange_returnPressed(); }
void on_lineEditChange_textChanged();
void on_lineEditChange_returnPressed();
private:
/// Encapsulated game, can be NULL
PublicGame *m_game;
/// Mediator for the "play word" controls
PlayWordMediator *m_mediator;
/// Encapsulated player, valid iff m_game is not NULL
unsigned int m_player;
};
class PlayerTabWidget: public QTabWidget
{
Q_OBJECT;
public:
explicit PlayerTabWidget(CoordModel &iCoordModel, QWidget *parent = 0);
public slots:
void setGame(PublicGame *iGame);
void refresh();
signals:
void refreshSignal();
void gameUpdated();
void notifyProblem(QString iMsg);
void notifyInfo(QString iMsg);
void trainingRackUpdated(const QString &iRack);
private slots:
void changeCurrentPlayer(int);
private:
/// Encapsulated game, can be NULL
PublicGame *m_game;
/// Model for the word coordinates
CoordModel &m_coordModel;
};
#endif