summaryrefslogtreecommitdiff
path: root/libview
diff options
context:
space:
mode:
authorCarlos Garcia Campos <[email protected]>2013-06-21 15:09:58 +0200
committerraveit65 <[email protected]>2017-09-06 18:25:34 +0200
commit82dfff8ecf567c443d49569c76f69e91f1c7776e (patch)
tree347f6bab4235e13c307a09a0e36e84736d57253a /libview
parent97ed8ba00627102528987887f689ffffcf269fd0 (diff)
downloadatril-82dfff8ecf567c443d49569c76f69e91f1c7776e.tar.bz2
atril-82dfff8ecf567c443d49569c76f69e91f1c7776e.tar.xz
libview: Update the caret cursor after selecting text with the mouse
If there's an active selection move the caret cursor to the location where the mouse is released. origin commit: https://git.gnome.org/browse/evince/commit/?h=gnome-3-10&id=619c100
Diffstat (limited to 'libview')
-rw-r--r--libview/ev-view.c52
1 files changed, 29 insertions, 23 deletions
diff --git a/libview/ev-view.c b/libview/ev-view.c
index 64674fdf..fdbebed7 100644
--- a/libview/ev-view.c
+++ b/libview/ev-view.c
@@ -4222,17 +4222,17 @@ start_selection_for_event (EvView *view,
}
static gboolean
-get_caret_cursor_offset_at_location (EvView *view,
- gdouble x,
- gdouble y,
- gint *page,
- gint *offset)
-{
- gint doc_x, doc_y;
- EvRectangle *areas;
+position_caret_cursor_at_location (EvView *view,
+ gdouble x,
+ gdouble y)
+{
+ EvRectangle *areas = NULL;
+ guint n_areas = 0;
+ gint page;
+ gint offset = -1 ;
+ gint doc_x, doc_y;
EvRectangle *rect;
- guint n_areas = 0;
- guint i;
+ guint i;
if (!view->caret_enabled || view->rotation != 0)
return FALSE;
@@ -4241,10 +4241,10 @@ get_caret_cursor_offset_at_location (EvView *view,
return FALSE;
/* Get the offset from the doc point */
- if (!get_doc_point_from_location (view, x, y, page, &doc_x, &doc_y))
+ if (!get_doc_point_from_location (view, x, y, &page, &doc_x, &doc_y))
return FALSE;
- ev_page_cache_get_text_layout (view->page_cache, *page, &areas, &n_areas);
+ ev_page_cache_get_text_layout (view->page_cache, page, &areas, &n_areas);
if (!areas)
return FALSE;
@@ -4255,14 +4255,24 @@ get_caret_cursor_offset_at_location (EvView *view,
/* Position the caret before or after the character, depending on whether
the point falls within the left or right half of the bounding box. */
if (doc_x <= rect->x1 + (rect->x2 - rect->x1) / 2)
- *offset = i;
+ offset = i;
else
- *offset = i + 1;
+ offset = i + 1;
- return TRUE;
+ break;
}
}
+ if (offset == -1)
+ return FALSE;
+
+ if (view->cursor_offset != offset || view->cursor_page != page) {
+ view->cursor_offset = offset;
+ view->cursor_page = page;
+
+ return TRUE;
+ }
+
return FALSE;
}
@@ -4339,8 +4349,6 @@ ev_view_button_press_event (GtkWidget *widget,
view->image_dnd_info.start.x = event->x + view->scroll_x;
view->image_dnd_info.start.y = event->y + view->scroll_y;
} else {
- gint page, offset;
-
ev_view_remove_all (view);
_ev_view_set_focused_element (view, NULL, -1);
@@ -4353,11 +4361,7 @@ ev_view_button_press_event (GtkWidget *widget,
if (EV_IS_SELECTION (view->document))
start_selection_for_event (view, event);
- if (get_caret_cursor_offset_at_location (view, event->x, event->y, &page, &offset) &&
- (view->cursor_offset != offset || view->cursor_page != page)) {
- view->cursor_offset = offset;
- view->cursor_page = page;
-
+ if (position_caret_cursor_at_location (view, event->x, event->y)) {
view->cursor_blink_time = 0;
ev_view_pend_cursor_blink (view);
@@ -4827,7 +4831,9 @@ ev_view_button_release_event (GtkWidget *widget,
if (view->selection_info.selections) {
clear_link_selected (view);
ev_view_update_primary_selection (view);
-
+
+ position_caret_cursor_at_location (view, event->x, event->y);
+
if (view->selection_info.in_drag) {
clear_selection (view);
gtk_widget_queue_draw (widget);