Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/backend
diff options
context:
space:
mode:
Diffstat (limited to 'backend')
-rw-r--r--backend/ev-selection.c7
-rw-r--r--backend/ev-selection.h8
2 files changed, 11 insertions, 4 deletions
diff --git a/backend/ev-selection.c b/backend/ev-selection.c
index 074bbbc..f9f73e0 100644
--- a/backend/ev-selection.c
+++ b/backend/ev-selection.c
@@ -61,13 +61,16 @@ ev_selection_render_selection (EvSelection *selection,
EvRenderContext *rc,
GdkPixbuf **pixbuf,
EvRectangle *points,
- EvRectangle *old_points)
+ EvRectangle *old_points,
+ guint text,
+ guint base)
{
EvSelectionIface *iface = EV_SELECTION_GET_IFACE (selection);
iface->render_selection (selection, rc,
pixbuf,
- points, old_points);
+ points, old_points,
+ text, base);
}
GdkRegion *
diff --git a/backend/ev-selection.h b/backend/ev-selection.h
index 8c5e224..8ed416b 100644
--- a/backend/ev-selection.h
+++ b/backend/ev-selection.h
@@ -47,7 +47,9 @@ struct _EvSelectionIface
EvRenderContext *rc,
GdkPixbuf **pixbuf,
EvRectangle *points,
- EvRectangle *old_points);
+ EvRectangle *old_points,
+ guint text,
+ guint base);
GdkRegion * (* get_selection_map) (EvSelection *selection,
EvRenderContext *rc);
GdkRegion * (* get_selection_region) (EvSelection *selection,
@@ -60,7 +62,9 @@ void ev_selection_render_selection (EvSelection *selection,
EvRenderContext *rc,
GdkPixbuf **pixbuf,
EvRectangle *points,
- EvRectangle *old_points);
+ EvRectangle *old_points,
+ guint text,
+ guint base);
GdkRegion *ev_selection_get_selection_map (EvSelection *selection,
EvRenderContext *rc);
GdkRegion *ev_selection_get_selection_region (EvSelection *selection,