Fix mergelist.xq script
[quandoparte] / application / stationschedulemodel.h
1 /*
2
3 Copyright (C) 2011 mikelima
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; either version 2 of the License, or
8 (at your option) any later version.
9
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13 General Public License for more details.
14
15 You should have received a copy of the GNU General Public License
16 along with this program; see the file COPYING.  If not, write to
17 the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
18 Boston, MA 02110-1301, USA.
19
20 */
21
22 #ifndef STATIONSCHEDULEMODEL_H
23 #define STATIONSCHEDULEMODEL_H
24
25 #include "stationscheduleitem.h"
26
27 #include <QObject>
28 #include <QAbstractListModel>
29 #include <QUrl>
30
31 class StationScheduleModel : public QAbstractListModel
32 {
33     Q_OBJECT
34     Q_PROPERTY(QString name READ name WRITE setName NOTIFY nameChanged)
35     Q_PROPERTY(ScheduleType type READ type WRITE setType NOTIFY typeChanged)
36     Q_ENUMS(ScheduleType)
37
38     enum StationRoles {
39         TrainRole = Qt::UserRole +1,
40         DepartureStationRole,
41         DepartureTimeRole,
42         ArrivalStationRole,
43         ArrivalTimeRole,
44         DetailsUrlRole,
45         DelayRole,
46         DelayClassRole,
47         ExpectedPlatformRole,
48         ActualPlatformRole
49     };
50
51 public:
52     enum ScheduleType {
53         DepartureSchedule,
54         ArrivalSchedule
55     };
56
57     explicit StationScheduleModel(const QString &name = "", QObject *parent = 0);
58
59     QString &name();
60     void setName(const QString &name);
61
62     ScheduleType type();
63     void setType(ScheduleType type);
64
65     int rowCount(const QModelIndex &parent) const;
66     QVariant data(const QModelIndex &index, int role) const;
67
68 signals:
69     void nameChanged();
70     void typeChanged();
71
72 public slots:
73     void fetch(const QString &name);
74
75 private slots:
76     void parse(const QByteArray &htmlReply, const QUrl &baseUrl);
77
78 private:
79     QString m_name;
80     QList<StationScheduleItem> m_departureSchedules;
81     QList<StationScheduleItem> m_arrivalSchedules;
82     ScheduleType m_scheduleType;
83 };
84
85 #endif // STATIONSCHEDULEMODEL_H