|
1 /* |
|
2 * Hedgewars, a free turn based strategy game |
|
3 * Copyright (c) 2004-2012 Andrey Korotaev <unC0Rr@gmail.com> |
|
4 * |
|
5 * This program is free software; you can redistribute it and/or modify |
|
6 * it under the terms of the GNU General Public License as published by |
|
7 * the Free Software Foundation; version 2 of the License |
|
8 * |
|
9 * This program 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. |
|
13 * |
|
14 * You should have received a copy of the GNU General Public License |
|
15 * along with this program; if not, write to the Free Software |
|
16 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA |
|
17 */ |
|
18 |
|
19 /** |
|
20 * @file |
|
21 * @brief HatModel class definition |
|
22 */ |
|
23 |
|
24 #ifndef HEDGEWARS_HATMODEL_H |
|
25 #define HEDGEWARS_HATMODEL_H |
|
26 |
|
27 #include <QAbstractListModel> |
|
28 #include <QStringList> |
|
29 #include <QVector> |
|
30 #include <QPair> |
|
31 #include <QIcon> |
|
32 |
|
33 class HatModel : public QAbstractListModel |
|
34 { |
|
35 Q_OBJECT |
|
36 |
|
37 public: |
|
38 HatModel(QObject *parent = 0); |
|
39 |
|
40 QVariant headerData(int section, Qt::Orientation orientation, int role) const; |
|
41 int rowCount(const QModelIndex & parent) const; |
|
42 //int columnCount(const QModelIndex & parent) const; |
|
43 |
|
44 public slots: |
|
45 /// Reloads hats using the DataManager. |
|
46 void loadHats(); |
|
47 |
|
48 QVariant data(const QModelIndex &index, int role) const; |
|
49 protected: |
|
50 QVector<QPair<QString, QIcon> > hats; |
|
51 }; |
|
52 |
|
53 #endif // HEDGEWARS_HATMODEL_H |