mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-19 22:16:15 +00:00
Dive list model: add GPS string access
If the QML UI needs the GPS information, we need a way to get to it. I'm not convinced that having it as comma separated string is the best way to go, but that's what I need for the Google API so that's what I picked for now. Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
parent
07a0ef2139
commit
7ffe7a8c8a
4 changed files with 21 additions and 0 deletions
|
@ -18,6 +18,7 @@ private:
|
|||
timestamp_t m_timestamp;
|
||||
QString m_time;
|
||||
QString m_location;
|
||||
QString m_gps;
|
||||
QString m_duration;
|
||||
QString m_depth;
|
||||
QString m_divemaster;
|
||||
|
@ -38,6 +39,7 @@ private:
|
|||
void put_date_time();
|
||||
void put_timestamp();
|
||||
void put_location();
|
||||
void put_gps();
|
||||
void put_duration();
|
||||
void put_depth();
|
||||
void put_divemaster();
|
||||
|
@ -63,6 +65,7 @@ public:
|
|||
m_rating = dive->rating;
|
||||
put_date_time();
|
||||
put_location();
|
||||
put_gps();
|
||||
put_duration();
|
||||
put_depth();
|
||||
put_divemaster();
|
||||
|
@ -89,6 +92,7 @@ public:
|
|||
timestamp_t timestamp() const;
|
||||
QString time() const;
|
||||
QString location() const;
|
||||
QString gps() const;
|
||||
QString duration() const;
|
||||
QString depth() const;
|
||||
QString divemaster() const;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue