eliot/qt/play_model.h

51 lines
1.4 KiB
C
Raw Normal View History

/*****************************************************************************
* Eliot
* Copyright (C) 2009-2012 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
*****************************************************************************/
2012-12-18 00:48:14 +01:00
#ifndef PLAY_MODEL_H_
#define PLAY_MODEL_H_
#include <QObject>
2012-02-18 22:26:52 +01:00
#include "coord.h"
2012-02-18 22:26:52 +01:00
#include "logging.h"
2012-12-18 00:48:14 +01:00
class PlayModel: public QObject
{
Q_OBJECT;
2012-02-18 22:26:52 +01:00
DEFINE_LOGGER();
public:
void setCoord(const Coord &iCoord);
void clear();
const Coord &getCoord() const { return m_currCoord; }
signals:
void coordChanged(const Coord &iNewCoord, const Coord &iOldCoord);
private:
Coord m_currCoord;
Coord m_prevCoord;
};
#endif