Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/backend/ev-link-dest.h
diff options
context:
space:
mode:
authorNickolay V. Shmyrev <nshmyrev@src.gnome.org>2006-05-27 11:25:00 (GMT)
committer Nickolay V. Shmyrev <nshmyrev@src.gnome.org>2006-05-27 11:25:00 (GMT)
commit872101b786854841e6b32cac322f08d3dde6b946 (patch)
tree7ae16f712381c39f962ee9c83ec6f43675bd282d /backend/ev-link-dest.h
parent3975d110064cd88af69d393f956f8158aae1878f (diff)
Fix page-label command line option. Bug #342070.
* backend/ev-link-dest.c: (ev_link_dest_type_get_type), (ev_link_dest_get_page_label), (ev_link_dest_get_property), (ev_link_dest_set_property), (ev_link_dest_finalize), (ev_link_dest_class_init), (ev_link_dest_new_named), (ev_link_dest_new_page_label): * backend/ev-link-dest.h: * shell/ev-application.c: (ev_application_open_uri): * shell/ev-view.c: (goto_dest): * shell/ev-window.c: * shell/ev-window.h: Fix page-label command line option. Bug #342070.
Diffstat (limited to 'backend/ev-link-dest.h')
-rw-r--r--backend/ev-link-dest.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/backend/ev-link-dest.h b/backend/ev-link-dest.h
index 40a8a9b..a0c96f5 100644
--- a/backend/ev-link-dest.h
+++ b/backend/ev-link-dest.h
@@ -46,6 +46,7 @@ typedef enum {
EV_LINK_DEST_TYPE_FITV,
EV_LINK_DEST_TYPE_FITR,
EV_LINK_DEST_TYPE_NAMED,
+ EV_LINK_DEST_TYPE_PAGE_LABEL,
EV_LINK_DEST_TYPE_UNKNOWN
} EvLinkDestType;
@@ -60,6 +61,7 @@ gdouble ev_link_dest_get_bottom (EvLinkDest *self);
gdouble ev_link_dest_get_right (EvLinkDest *self);
gdouble ev_link_dest_get_zoom (EvLinkDest *self);
const gchar *ev_link_dest_get_named_dest (EvLinkDest *self);
+const gchar *ev_link_dest_get_page_label (EvLinkDest *self);
EvLinkDest *ev_link_dest_new_page (gint page);
EvLinkDest *ev_link_dest_new_xyz (gint page,
@@ -77,6 +79,7 @@ EvLinkDest *ev_link_dest_new_fitr (gint page,
gdouble right,
gdouble top);
EvLinkDest *ev_link_dest_new_named (const gchar *named_dest);
+EvLinkDest *ev_link_dest_new_page_label (const gchar *page_label);
G_END_DECLS