Update copyright year in license headers.
[profile/ivi/qtxmlpatterns.git] / examples / xmlpatterns / trafficinfo / stationdialog.cpp
1 /****************************************************************************
2 **
3 ** Copyright (C) 2012 Nokia Corporation and/or its subsidiary(-ies).
4 ** All rights reserved.
5 ** Contact: Nokia Corporation (qt-info@nokia.com)
6 **
7 ** This file is part of the examples of the Qt Toolkit.
8 **
9 ** $QT_BEGIN_LICENSE:BSD$
10 ** You may use this file under the terms of the BSD license as follows:
11 **
12 ** "Redistribution and use in source and binary forms, with or without
13 ** modification, are permitted provided that the following conditions are
14 ** met:
15 **   * Redistributions of source code must retain the above copyright
16 **     notice, this list of conditions and the following disclaimer.
17 **   * Redistributions in binary form must reproduce the above copyright
18 **     notice, this list of conditions and the following disclaimer in
19 **     the documentation and/or other materials provided with the
20 **     distribution.
21 **   * Neither the name of Nokia Corporation and its Subsidiary(-ies) nor
22 **     the names of its contributors may be used to endorse or promote
23 **     products derived from this software without specific prior written
24 **     permission.
25 **
26 ** THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
27 ** "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
28 ** LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
29 ** A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
30 ** OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
31 ** SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
32 ** LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
33 ** DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
34 ** THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
35 ** (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
36 ** OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE."
37 ** $QT_END_LICENSE$
38 **
39 ****************************************************************************/
40
41 #include "stationdialog.h"
42 #include "ui_stationdialog.h"
43
44 #include <QtCore/QAbstractListModel>
45
46 class StationModel : public QAbstractListModel
47 {
48     public:
49         enum Role
50         {
51             StationIdRole = Qt::UserRole + 1,
52             StationNameRole
53         };
54
55         StationModel(QObject *parent = 0)
56             : QAbstractListModel(parent)
57         {
58         }
59
60         void setStations(const StationInformation::List &list)
61         {
62             m_stations = list;
63             layoutChanged();
64         }
65
66         virtual int rowCount(const QModelIndex &parent = QModelIndex()) const
67         {
68             if (!parent.isValid())
69                 return m_stations.count();
70             else
71                 return 0;
72         }
73
74         virtual int columnCount(const QModelIndex &parent = QModelIndex()) const
75         {
76             if (!parent.isValid())
77                 return 1;
78             else
79                 return 0;
80         }
81
82         virtual QVariant data(const QModelIndex &index, int role = Qt::DisplayRole) const
83         {
84             if (!index.isValid())
85                 return QVariant();
86
87             if (index.column() > 1 || index.row() >= m_stations.count())
88                 return QVariant();
89
90             const StationInformation info = m_stations.at(index.row());
91             if (role == Qt::DisplayRole || role == StationNameRole)
92                 return info.name();
93             else if (role == StationIdRole)
94                 return info.id();
95
96             return QVariant();
97         }
98
99     private:
100         StationInformation::List m_stations;
101 };
102
103 StationDialog::StationDialog(const QString &name, const QStringList &lineNumbers, QWidget *parent)
104     : QDialog(parent)
105 {
106     m_ui.setupUi(this);
107
108     connect(m_ui.m_searchButton, SIGNAL(clicked()), this, SLOT(searchStations()));
109
110     m_ui.m_searchButton->setDefault(true);
111     m_ui.m_input->setText(name);
112
113     m_model = new StationModel(this);
114     m_ui.m_view->setModel(m_model);
115
116     for (int i = 0; i < lineNumbers.count(); ++i) {
117         if (i == 0)
118             m_ui.m_line1->setText(lineNumbers.at(i));
119         else if (i == 1)
120             m_ui.m_line2->setText(lineNumbers.at(i));
121         else if (i == 2)
122             m_ui.m_line3->setText(lineNumbers.at(i));
123         else if (i == 3)
124             m_ui.m_line4->setText(lineNumbers.at(i));
125     }
126
127     QMetaObject::invokeMethod(this, SLOT(searchStations()), Qt::QueuedConnection);
128 }
129
130 StationInformation StationDialog::selectedStation() const
131 {
132     const QModelIndex index = m_ui.m_view->currentIndex();
133
134     if (!index.isValid())
135         return StationInformation();
136
137     return StationInformation(index.data(StationModel::StationIdRole).toString(),
138                               index.data(StationModel::StationNameRole).toString());
139 }
140
141 QStringList StationDialog::lineNumbers() const
142 {
143     QStringList lines;
144
145     if (!m_ui.m_line1->text().simplified().isEmpty())
146         lines.append(m_ui.m_line1->text().simplified());
147     if (!m_ui.m_line2->text().simplified().isEmpty())
148         lines.append(m_ui.m_line2->text().simplified());
149     if (!m_ui.m_line3->text().simplified().isEmpty())
150         lines.append(m_ui.m_line3->text().simplified());
151     if (!m_ui.m_line4->text().simplified().isEmpty())
152         lines.append(m_ui.m_line4->text().simplified());
153
154     return lines;
155 }
156
157 void StationDialog::searchStations()
158 {
159     m_model->setStations(StationQuery::query(m_ui.m_input->text()));
160     m_ui.m_view->keyboardSearch(m_ui.m_input->text());
161 }