Use the new Settings class
[quandoparte] / application / view.cpp
1 /*
2
3 Copyright (C) 2011 Luciano Montanaro <mikelima@cirulla.net>
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 #include "view.h"
23 #include "settings.h"
24 #include "stationlistmodel.h"
25 #include "stationlistproxymodel.h"
26
27 #include <QDebug>
28 #include <QDir>
29 #include <QFile>
30 #include <QtDeclarative>
31
32 // search Paths seem to be broken in Harmattan?
33
34 static QString trueFilePath(QString path)
35 {
36     qDebug() << "searching for" << path;
37     QString searchPathName = path.section(':', 0, 0);
38     qDebug() << "path is" << searchPathName;
39     QString fileName = path.section(':', 1, 1);
40     qDebug() << "filename is" << fileName;
41     QStringList dirs = QDir::searchPaths(searchPathName);
42     foreach(QString dir, dirs) {
43         qDebug() << "searching in" << dir;
44        QDir current(dir);
45        QString absoluteFileName = current.absoluteFilePath(fileName);
46         if (current.exists(fileName)) {
47             qDebug() << "found " << fileName << "in path" << absoluteFileName;
48             return absoluteFileName;
49         }
50     }
51     qDebug() << "file not found";
52     return QString();
53 }
54
55 View::View(QWidget *parent) :
56     QDeclarativeView(parent),
57     stationListModel(new StationListModel(this)),
58     stationListProxyModel(new StationListProxyModel(this))
59 {
60     showFullScreen();
61     stationListModel->load(trueFilePath("stations:stations.qpl"));
62
63     stationListProxyModel->setSourceModel(stationListModel);
64
65     /* Types to be made accessible to QML */
66     qmlRegisterType<Settings>("net.cirulla.quandoparte", 1, 0, "Settings");
67     qmlRegisterType<StationListProxyModel>(
68                 "net.cirulla.quandoparte", 1, 0, "StationListProxyModel");
69
70     QDeclarativeContext *context = this->rootContext();
71     /* objects to be made accessible to QML */
72     context->setContextProperty("settings", Settings::instance());
73     context->setContextProperty("stationList", stationListModel);
74     context->setContextProperty("stationListProxyModel", stationListProxyModel);
75
76     // This does not seem ot work in harmattan. As a workaround, change dir to
77     // the qml dir, then load the file.
78     // m_view->setSource(QUrl::fromLocalFile("qml:main.qml"));
79     setSource(QUrl::fromLocalFile(trueFilePath("qml:main.qml")));
80
81 }