diff options
author | Tomaz Canabrava <tomaz.canabrava@intel.com> | 2015-05-26 17:36:06 -0300 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2015-05-26 21:48:22 -0700 |
commit | ee7e5113723cf40d598ed30a6f8409b5d4504422 (patch) | |
tree | 7ebbf1c003e62d194f19f2200f675853efa1ac5b /qt-ui/locationinformation.h | |
parent | 785051c9dd0734acfdbb14fea558aa6e59917b68 (diff) | |
download | subsurface-ee7e5113723cf40d598ed30a6f8409b5d4504422.tar.gz |
Create signals/slots for filtering the dive_site,
The dive site management requires that we filter all the dives that are on
the current dive_site, this is the preparatory work for that.
Signed-off-by: Tomaz Canabrava <tomaz.canabrava@intel.com>
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'qt-ui/locationinformation.h')
-rw-r--r-- | qt-ui/locationinformation.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/qt-ui/locationinformation.h b/qt-ui/locationinformation.h index 41f626b3f..49db2ce47 100644 --- a/qt-ui/locationinformation.h +++ b/qt-ui/locationinformation.h @@ -22,7 +22,7 @@ public: LocationInformationWidget(QWidget *parent = 0); protected: void showEvent(QShowEvent *); -\ + public slots: void acceptChanges(); void rejectChanges(); @@ -40,7 +40,8 @@ public slots: signals: void informationManagementEnded(); void coordinatesChanged(); - + void startFilterDiveSite(uint32_t uuid); + void stopFilterFiveSite(); private: struct dive_site *currentDs; Ui::LocationInformation ui; |