Added boilerplate license comment were it was missing
[quandoparte] / application / stationlistproxymodel.h
1 #ifndef STATIONLISTPROXYMODEL_H
2 #define STATIONLISTPROXYMODEL_H
3
4 /*
5
6 Copyright (C) 2011 Luciano Montanaro <mikelima@cirulla.net>
7
8 This program is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 2 of the License, or
11 (at your option) any later version.
12
13 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
16 General Public License for more details.
17
18 You should have received a copy of the GNU General Public License
19 along with this program; see the file COPYING.  If not, write to
20 the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
21 Boston, MA 02110-1301, USA.
22
23 */
24
25 #include <QSortFilterProxyModel>
26 #include <QGeoCoordinate>
27 #include <QStringList>
28
29 QTM_USE_NAMESPACE
30
31 class StationListProxyModel : public QSortFilterProxyModel
32 {
33     Q_OBJECT
34     Q_PROPERTY(QString searchPattern READ searchPattern WRITE setSearchPattern)
35     Q_PROPERTY(SortingMode sortingMode READ sortingMode WRITE setSortingMode NOTIFY sortingModeChanged)
36     Q_ENUMS(SortingMode)
37 public:
38
39     enum SortingMode {
40         NoSorting,
41         AlphaSorting,
42         DistanceSorting,
43         RecentUsageSorting
44     };
45
46     explicit StationListProxyModel(QObject *parent = 0);
47
48     QString searchPattern() const;
49     void setSearchPattern(const QString &pattern);
50
51     SortingMode sortingMode();
52     void setSortingMode(SortingMode mode);
53
54     Q_INVOKABLE void setUserPosition(const QGeoCoordinate &pos);
55     Q_INVOKABLE void setRecentStations(const QStringList &stations);
56     Q_INVOKABLE void setRecentOnlyFilter(bool);
57
58 signals:
59     void sortingModeChanged(SortingMode mode);
60
61 protected:
62     virtual bool lessThan(const QModelIndex &left, const QModelIndex &right) const;
63     virtual bool filterAcceptsRow(int sourceRow,
64             const QModelIndex &sourceParent) const;
65
66 private:
67     QString m_searchPattern;
68     QGeoCoordinate m_here;
69     QStringList m_stations;
70     SortingMode m_sortingMode;
71     bool m_filterRecentOnly;
72 };
73
74 #endif // STATIONLISTPROXYMODEL_H