aboutsummaryrefslogtreecommitdiffstats
path: root/qt-models/divelistmodel.cpp
diff options
context:
space:
mode:
authorGravatar Grace Karanja <gracie.karanja89@gmail.com>2015-06-11 09:39:32 +0300
committerGravatar Dirk Hohndel <dirk@hohndel.org>2015-06-20 14:28:39 -0700
commitee9452ae8ace9e5ec6b6c99ebb01ec3748e1bfaa (patch)
treed419139e5c00a1de0db6ec90fe43c03decdedd98 /qt-models/divelistmodel.cpp
parentf0c777975315e87a1ac7fe9ae31ce2a800420fdd (diff)
downloadsubsurface-ee9452ae8ace9e5ec6b6c99ebb01ec3748e1bfaa.tar.gz
Group dives by trips
Group dives according to the allocated dive trips. Signed-off-by: Grace Karanja <gracie.karanja89@gmail.com> Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'qt-models/divelistmodel.cpp')
-rw-r--r--qt-models/divelistmodel.cpp21
1 files changed, 21 insertions, 0 deletions
diff --git a/qt-models/divelistmodel.cpp b/qt-models/divelistmodel.cpp
index c1862b829..ad360965f 100644
--- a/qt-models/divelistmodel.cpp
+++ b/qt-models/divelistmodel.cpp
@@ -5,6 +5,14 @@ Dive::Dive(dive *d)
{
m_thisDive = d;
setDiveNumber(QString::number(d->number));
+
+ dive_trip *trip = d->divetrip;
+
+ if(trip) {
+ //trip is valid
+ setTrip(trip->location);
+ }
+
setDate(get_dive_date_string(d->when));
setDepth(get_depth_string(d->maxdepth));
setDuration(get_dive_duration_string(d->duration.seconds, "h:","min"));
@@ -153,6 +161,16 @@ void Dive::setNotes(const QString &notes)
{
m_notes = notes;
}
+QString Dive::trip() const
+{
+ return m_trip;
+}
+
+void Dive::setTrip(const QString &trip)
+{
+ m_trip = trip;
+}
+
@@ -184,6 +202,8 @@ QVariant DiveListModel::data(const QModelIndex &index, int role) const
if (role == DiveNumberRole)
return dive.diveNumber();
+ else if (role == DiveTripRole)
+ return dive.trip();
else if (role == DiveDateRole)
return dive.date();
else if (role == DiveRatingRole)
@@ -217,6 +237,7 @@ QHash<int, QByteArray> DiveListModel::roleNames() const
{
QHash<int, QByteArray> roles;
roles[DiveNumberRole] = "diveNumber";
+ roles[DiveTripRole] = "trip";
roles[DiveDateRole] = "date";
roles[DiveRatingRole] = "rating";
roles[DiveDepthRole] = "depth";