mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-28 13:10:19 +00:00
Fix tracking of selected dives across sort column changes
With commit 800b0482f39e ("When switching sort order, scroll the dive list to the current dive") we introduced an unwanted new behavior. When changing sort columns we could lose all selections except for the main "selected_dive". This was caused by the call to gtk_tree_view_set_cursor on the selected_dive which unselected all other dives. As a side-effect this also fixed another bug that was introduced by the same change: shift-cursor-up and -down now works again to select multiple dives with the keyboard. But fixing that bug unearthed a different issue. Our code that restored the selection state of the tree model oddly decided to mark a divetrip as selected if its first child was selected. The bug above masked that by immediately unselecting the trip again, but now that this was fixed the problem was immediately obvious: we would start with both the first trip and the first dive in that trip selected (well, since we are in reverse order it's actually the chronologically last trip and last dive...). Instead we now use the remembered state of the trip to determine whether it should be expanded or selected. Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
parent
18a4d76ca5
commit
b406dbe1c0
1 changed files with 27 additions and 11 deletions
38
divelist.c
38
divelist.c
|
@ -45,6 +45,9 @@ static struct DiveList dive_list;
|
|||
|
||||
dive_trip_t *dive_trip_list;
|
||||
gboolean autogroup = FALSE;
|
||||
static gboolean in_set_cursor = FALSE;
|
||||
static gboolean set_selected(GtkTreeModel *model, GtkTreePath *path,
|
||||
GtkTreeIter *iter, gpointer data);
|
||||
|
||||
/*
|
||||
* The dive list has the dive data in both string format (for showing)
|
||||
|
@ -2206,11 +2209,21 @@ static gboolean button_press_cb(GtkWidget *treeview, GdkEventButton *event, gpoi
|
|||
return FALSE;
|
||||
}
|
||||
|
||||
/* make sure 'path' is shown in the divelist widget; since set_cursor changes the
|
||||
* selection to be only 'path' we need to let our selection handling callbacks know
|
||||
* that we didn't really mean this */
|
||||
static void scroll_to_path(GtkTreePath *path)
|
||||
{
|
||||
GtkTreeSelection *selection;
|
||||
|
||||
gtk_tree_view_expand_to_path(GTK_TREE_VIEW(dive_list.tree_view), path);
|
||||
gtk_tree_view_scroll_to_cell(GTK_TREE_VIEW(dive_list.tree_view), path, NULL, FALSE, 0, 0);
|
||||
in_set_cursor = TRUE;
|
||||
gtk_tree_view_set_cursor(GTK_TREE_VIEW(dive_list.tree_view), path, NULL, FALSE);
|
||||
in_set_cursor = FALSE;
|
||||
selection = gtk_tree_view_get_selection(GTK_TREE_VIEW(dive_list.tree_view));
|
||||
gtk_tree_model_foreach(MODEL(dive_list), set_selected, selection);
|
||||
|
||||
}
|
||||
|
||||
/* we need to have a temporary copy of the selected dives while
|
||||
|
@ -2234,18 +2247,21 @@ static gboolean set_selected(GtkTreeModel *model, GtkTreePath *path,
|
|||
|
||||
gtk_tree_model_get(model, iter, DIVE_INDEX, &idx, -1);
|
||||
if (idx < 0) {
|
||||
GtkTreeIter child;
|
||||
if (gtk_tree_model_iter_children(model, &child, iter))
|
||||
gtk_tree_model_get(model, &child, DIVE_INDEX, &idx, -1);
|
||||
}
|
||||
dive = get_dive(idx);
|
||||
selected = dive && dive->selected;
|
||||
if (selected) {
|
||||
gtk_tree_view_expand_to_path(GTK_TREE_VIEW(dive_list.tree_view), path);
|
||||
gtk_tree_selection_select_path(selection, path);
|
||||
/* this is a trip - restore its state */
|
||||
dive_trip_t *trip = find_trip_by_idx(idx);
|
||||
if (trip && trip->expanded)
|
||||
gtk_tree_view_expand_to_path(GTK_TREE_VIEW(dive_list.tree_view), path);
|
||||
if (trip && trip->selected)
|
||||
gtk_tree_selection_select_path(selection, path);
|
||||
} else {
|
||||
dive = get_dive(idx);
|
||||
selected = dive && dive->selected;
|
||||
if (selected) {
|
||||
gtk_tree_view_expand_to_path(GTK_TREE_VIEW(dive_list.tree_view), path);
|
||||
gtk_tree_selection_select_path(selection, path);
|
||||
}
|
||||
}
|
||||
return FALSE;
|
||||
|
||||
}
|
||||
|
||||
static gboolean scroll_to_this(GtkTreeModel *model, GtkTreePath *path,
|
||||
|
@ -2369,7 +2385,7 @@ static gboolean modify_selection_cb(GtkTreeSelection *selection, GtkTreeModel *m
|
|||
int idx;
|
||||
GtkTreeIter iter;
|
||||
|
||||
if (!was_selected)
|
||||
if (!was_selected || in_set_cursor)
|
||||
return TRUE;
|
||||
gtk_tree_model_get_iter(model, &iter, path);
|
||||
gtk_tree_model_get(model, &iter, DIVE_INDEX, &idx, -1);
|
||||
|
|
Loading…
Reference in a new issue