summaryrefslogtreecommitdiffstats
path: root/pokemodr/models/MapModel.h
blob: f3f0b7ffe685c94e60acea28202565e87eff85b9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
/*
 * Copyright 2008 Ben Boeckel <MathStuf@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 3 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, see <http://www.gnu.org/licenses/>.
 */

#ifndef __POKEMODR_MAPMODEL__
#define __POKEMODR_MAPMODEL__

// Model includes
#include "BaseModel.h"

// Forward declarations
class Map;

class MapEffectGroupModel : public GroupModel
{
    public:
        MapEffectGroupModel(BaseModel* parent, Map* map);
        ~MapEffectGroupModel();
        
        int indexNumber() const;
        
        bool insertRows(const int rows);
        
        bool removeRows(const int position, const int rows);
    protected:
        void setupData();
};

class MapTrainerGroupModel : public GroupModel
{
    public:
        MapTrainerGroupModel(BaseModel* parent, Map* map);
        ~MapTrainerGroupModel();
        
        int indexNumber() const;
        
        bool insertRows(const int rows);
        
        bool removeRows(const int position, const int rows);
    protected:
        void setupData();
};

class MapWarpGroupModel : public GroupModel
{
    public:
        MapWarpGroupModel(BaseModel* parent, Map* map);
        ~MapWarpGroupModel();
        
        int indexNumber() const;
        
        bool insertRows(const int rows);
        
        bool removeRows(const int position, const int rows);
    protected:
        void setupData();
};

class MapWildListGroupModel : public GroupModel
{
    public:
        MapWildListGroupModel(BaseModel* parent, Map* map);
        ~MapWildListGroupModel();
        
        int indexNumber() const;
        
        bool insertRows(const int rows);
        
        bool removeRows(const int position, const int rows);
    protected:
        void setupData();
};

class MapModel : public GroupObjectModel
{
    public:
        MapModel(BaseModel* parent, Map* map);
        ~MapModel();
        
        QVariant data(int role = Qt::DisplayRole) const;
        int rowCount() const;
        
        bool setData(const QVariant& value, int role = Qt::EditRole);
        
        BaseModel* childItem(const int row);
        int indexNumber() const;
        
        bool insertRows(const int /*rows*/);
        
        bool removeRows(const int /*position*/, const int /*rows*/);
    protected:
        void setupData();
        void clearData();
    private:
        MapEffectGroupModel* m_effects;
        MapTrainerGroupModel* m_trainers;
        MapWarpGroupModel* m_warps;
        MapWildListGroupModel* m_wildLists;
};

#endif