Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/libview/ev-jobs.h
diff options
context:
space:
mode:
authorCarlos Garcia Campos <carlosgc@gnome.org>2009-05-12 09:32:22 (GMT)
committer Carlos Garcia Campos <carlosgc@gnome.org>2009-05-12 09:32:22 (GMT)
commitb3f6ded68bf84ff865dcdb648b2b84abb2a60ab1 (patch)
treeefc5166348ac0dec2ec0d19b9bffb219ca468bc6 /libview/ev-jobs.h
parentbc8fd91eed538ddb9a3fdd3b7e05c9ac16a61c97 (diff)
[libview] Get annotations when rendering pages
Diffstat (limited to 'libview/ev-jobs.h')
-rw-r--r--libview/ev-jobs.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/libview/ev-jobs.h b/libview/ev-jobs.h
index fc577c1..17f1b3c 100644
--- a/libview/ev-jobs.h
+++ b/libview/ev-jobs.h
@@ -187,7 +187,8 @@ typedef enum {
EV_RENDER_INCLUDE_SELECTION = 1 << 2,
EV_RENDER_INCLUDE_IMAGES = 1 << 3,
EV_RENDER_INCLUDE_FORMS = 1 << 4,
- EV_RENDER_INCLUDE_ALL = (1 << 5) - 1
+ EV_RENDER_INCLUDE_ANNOTS = 1 << 5,
+ EV_RENDER_INCLUDE_ALL = (1 << 6) - 1
} EvRenderFlags;
struct _EvJobRender
@@ -208,6 +209,7 @@ struct _EvJobRender
GdkRegion *text_mapping;
GList *image_mapping;
GList *form_field_mapping;
+ GList *annots_mapping;
cairo_surface_t *selection;
GdkRegion *selection_region;