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>
This commit is contained in:
Tomaz Canabrava 2015-05-26 17:36:06 -03:00 committed by Dirk Hohndel
parent 785051c9dd
commit ee7e511372
3 changed files with 20 additions and 3 deletions

View file

@ -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;