diff options
author | Berthold Stoeger <bstoeger@mail.tuwien.ac.at> | 2019-03-13 21:56:41 +0100 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2019-04-12 18:19:07 +0300 |
commit | b5daa8a3d8ee02d966bf5e5bc85d700722cabb57 (patch) | |
tree | 9b269773344f74b18061ae6e5ecc7178900589aa /desktop-widgets | |
parent | aac8eacfa2b4621efadf1fb2b6d255f69394be55 (diff) | |
download | subsurface-b5daa8a3d8ee02d966bf5e5bc85d700722cabb57.tar.gz |
Dive site: scroll to changed dive site
If the name of a dive site is edited, it might wander somewhere
else in the table and thus out of view. Hook into the "dive site
changed" signal and scroll there.
The code is rather subtle as it depends on signals being called
in a certain order: First the item is moved in the model, only
then can we scroll to the correct place.
Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
Diffstat (limited to 'desktop-widgets')
-rw-r--r-- | desktop-widgets/tab-widgets/TabDiveSite.cpp | 14 | ||||
-rw-r--r-- | desktop-widgets/tab-widgets/TabDiveSite.h | 1 |
2 files changed, 15 insertions, 0 deletions
diff --git a/desktop-widgets/tab-widgets/TabDiveSite.cpp b/desktop-widgets/tab-widgets/TabDiveSite.cpp index 5b65015da..815627e2b 100644 --- a/desktop-widgets/tab-widgets/TabDiveSite.cpp +++ b/desktop-widgets/tab-widgets/TabDiveSite.cpp @@ -21,6 +21,10 @@ TabDiveSite::TabDiveSite(QWidget *parent) : TabBase(parent) ui.diveSites->view()->setColumnHidden(i, true); connect(ui.diveSites, &TableView::addButtonClicked, this, &TabDiveSite::add); + + // Subtle: We depend on this slot being executed after the slot in the model. + // This is realized because the model was constructed as a member object and connects in the constructor. + connect(&diveListNotifier, &DiveListNotifier::diveSiteChanged, this, &TabDiveSite::diveSiteChanged); } void TabDiveSite::updateData() @@ -53,3 +57,13 @@ void TabDiveSite::diveSiteAdded(struct dive_site *, int idx) ui.diveSites->view()->setCurrentIndex(localIdx); ui.diveSites->view()->edit(localIdx); } + +void TabDiveSite::diveSiteChanged(struct dive_site *ds, int field) +{ + int idx = get_divesite_idx(ds, &dive_site_table); + if (idx < 0) + return; + QModelIndex globalIdx = LocationInformationModel::instance()->index(idx, field); + QModelIndex localIdx = model.mapFromSource(globalIdx); + ui.diveSites->view()->scrollTo(localIdx); +} diff --git a/desktop-widgets/tab-widgets/TabDiveSite.h b/desktop-widgets/tab-widgets/TabDiveSite.h index 32badadc3..a31b1629d 100644 --- a/desktop-widgets/tab-widgets/TabDiveSite.h +++ b/desktop-widgets/tab-widgets/TabDiveSite.h @@ -15,6 +15,7 @@ public: private slots: void add(); void diveSiteAdded(struct dive_site *, int idx); + void diveSiteChanged(struct dive_site *ds, int field); private: Ui::TabDiveSite ui; DiveSiteSortedModel model; |