author | Wuzzy <Wuzzy2@mail.ru> |
Wed, 19 Sep 2018 09:31:06 +0200 | |
changeset 13825 | 096cc009e0b8 |
parent 11046 | 47a8c19ecb60 |
permissions | -rw-r--r-- |
6958 | 1 |
/* |
2 |
* Hedgewars, a free turn based strategy game |
|
11046 | 3 |
* Copyright (c) 2004-2015 Andrey Korotaev <unC0Rr@gmail.com> |
6958 | 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 |
|
10108
c68cf030eded
update FSF address. note: two sdl include files (by Sam Lantinga) still have the old FSF address in their copyright - but I ain't gonna touch their copyright headers
sheepluva
parents:
9998
diff
changeset
|
16 |
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA |
6958 | 17 |
*/ |
18 |
||
19 |
/** |
|
20 |
* @file |
|
21 |
* @brief GameStyleModel class definition |
|
22 |
*/ |
|
23 |
||
24 |
#ifndef HEDGEWARS_GAMESTYLEMODEL_H |
|
25 |
#define HEDGEWARS_GAMESTYLEMODEL_H |
|
26 |
||
27 |
#include <QStandardItemModel> |
|
28 |
#include <QStringList> |
|
29 |
#include <QMap> |
|
30 |
||
31 |
#include "DataManager.h" |
|
32 |
||
33 |
/** |
|
34 |
* @brief A model listing available game styles |
|
35 |
*/ |
|
36 |
class GameStyleModel : public QStandardItemModel |
|
37 |
{ |
|
38 |
Q_OBJECT |
|
39 |
||
40 |
public: |
|
8419
d99f46b676b5
Prepends an asterisk on maps, styles, and themes that are DLC. (Resolves issue 515)
dag10
parents:
6958
diff
changeset
|
41 |
enum DataRoles { ScriptRole = Qt::UserRole+1, SchemeRole, WeaponsRole, IsDlcRole }; |
6958 | 42 |
|
43 |
public slots: |
|
44 |
/// reloads the themes from the DataManager |
|
45 |
void loadGameStyles(); |
|
46 |
}; |
|
47 |
||
48 |
#endif // HEDGEWARS_GAMESTYLEMODEL_H |