Add move list support to the GUI.
[sloppygui.git] / projects / gui / src / movelistmodel.h
blobeac74d337f274c9afed4404e997c30d8e2ec75e3
1 /*
2 This file is part of Cute Chess.
4 Cute Chess is free software: you can redistribute it and/or modify
5 it under the terms of the GNU General Public License as published by
6 the Free Software Foundation, either version 3 of the License, or
7 (at your option) any later version.
9 Cute Chess is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 GNU General Public License for more details.
14 You should have received a copy of the GNU General Public License
15 along with Cute Chess. If not, see <http://www.gnu.org/licenses/>.
18 #ifndef MOVE_LIST_MODEL_H
19 #define MOVE_LIST_MODEL_H
21 #include <QAbstractItemModel>
23 class ChessGame;
25 class MoveListModel : public QAbstractItemModel
27 Q_OBJECT
29 public:
30 MoveListModel(QObject* parent = 0);
31 void setGame(ChessGame* game);
33 // Inherited from QAbstractItemModel
34 QModelIndex index(int row, int column,
35 const QModelIndex& parent = QModelIndex()) const;
36 QModelIndex parent(const QModelIndex& index) const;
37 bool hasChildren(const QModelIndex& parent = QModelIndex()) const;
38 int rowCount(const QModelIndex& parent = QModelIndex()) const;
39 int columnCount(const QModelIndex& parent = QModelIndex()) const;
40 QVariant data(const QModelIndex& index, int role) const;
41 QVariant headerData(int section, Qt::Orientation orientation,
42 int role = Qt::DisplayRole) const;
43 private slots:
44 void boardReset();
45 void onMoveMade();
47 private:
48 static const QStringList m_headers;
49 ChessGame* m_game;
53 #endif // MOVE_LIST_MODEL_H