Bump version to 0.9.0
[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(QString code READ code WRITE setCode NOTIFY codeChanged)
36     Q_PROPERTY(ScheduleType type READ type WRITE setType NOTIFY typeChanged)
37     Q_PROPERTY(QString error READ error WRITE setError NOTIFY errorChanged)
38     Q_ENUMS(ScheduleType)
39
40     enum StationRoles {
41         TrainRole = Qt::UserRole +1,
42         DepartureStationRole,
43         DepartureTimeRole,
44         ArrivalStationRole,
45         ArrivalTimeRole,
46         DetailsUrlRole,
47         DelayRole,
48         DelayClassRole,
49         ExpectedPlatformRole,
50         ActualPlatformRole
51     };
52
53 public:
54     enum ScheduleType {
55         DepartureSchedule,
56         ArrivalSchedule
57     };
58
59     explicit StationScheduleModel(const QString &name = "", QObject *parent = 0);
60
61     const QString &name();
62     void setName(const QString &name);
63
64     const QString &code();
65     void setCode(const QString &code);
66
67     ScheduleType type();
68     void setType(ScheduleType type);
69
70     int rowCount(const QModelIndex &parent) const;
71     QVariant data(const QModelIndex &index, int role) const;
72
73     const QString &error();
74     void setError(const QString &code);
75
76     QHash<int, QByteArray> roleNames() const;
77
78 signals:
79     void nameChanged();
80     void codeChanged();
81     void typeChanged();
82     void errorChanged();
83
84 public slots:
85     void fetch(const QString &name, const QString &code = QString());
86
87 private slots:
88     void parse(const QByteArray &htmlReply, const QUrl &baseUrl);
89     void onNetworkError(void);
90
91 private:
92     QString m_name;
93     QString m_code;
94     QString m_error;
95     QList<StationScheduleItem> m_departureSchedules;
96     QList<StationScheduleItem> m_arrivalSchedules;
97     ScheduleType m_scheduleType;
98 };
99
100 #endif // STATIONSCHEDULEMODEL_H