1 /* this file is part of evince, a gnome document viewer
3 * Copyright (C) 2004 Red Hat, Inc
5 * Evince is free software; you can redistribute it and/or modify it
6 * under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
10 * Evince is distributed in the hope that it will be useful, but
11 * WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * General Public License for more details.
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
20 #if !defined (__EV_EVINCE_VIEW_H_INSIDE__) && !defined (EVINCE_COMPILATION)
21 #error "Only <evince-view.h> can be included directly."
29 #include <evince-document.h>
31 #include "ev-document-model.h"
35 #define EV_TYPE_VIEW (ev_view_get_type ())
36 #define EV_VIEW(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), EV_TYPE_VIEW, EvView))
37 #define EV_IS_VIEW(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), EV_TYPE_VIEW))
39 typedef struct _EvView EvView;
40 typedef struct _EvViewClass EvViewClass;
43 EV_VIEW_SELECTION_TEXT,
44 EV_VIEW_SELECTION_RECTANGLE,
45 } EvViewSelectionMode;
47 GType ev_view_get_type (void) G_GNUC_CONST;
49 GtkWidget* ev_view_new (void);
50 void ev_view_set_model (EvView *view,
51 EvDocumentModel *model);
52 void ev_view_set_loading (EvView *view,
54 void ev_view_reload (EvView *view);
55 void ev_view_set_page_cache_size (EvView *view,
59 void ev_view_copy (EvView *view);
60 void ev_view_copy_link_address (EvView *view,
61 EvLinkAction *action);
62 void ev_view_select_all (EvView *view);
63 gboolean ev_view_get_has_selection (EvView *view);
66 gboolean ev_view_can_zoom_in (EvView *view);
67 void ev_view_zoom_in (EvView *view);
68 gboolean ev_view_can_zoom_out (EvView *view);
69 void ev_view_zoom_out (EvView *view);
72 void ev_view_find_next (EvView *view);
73 void ev_view_find_previous (EvView *view);
74 void ev_view_find_search_changed (EvView *view);
75 void ev_view_find_set_highlight_search (EvView *view,
77 void ev_view_find_changed (EvView *view,
80 void ev_view_find_cancel (EvView *view);
83 void ev_view_highlight_forward_search (EvView *view,
87 void ev_view_hide_cursor (EvView *view);
88 void ev_view_show_cursor (EvView *view);
91 void ev_view_scroll (EvView *view,
94 void ev_view_handle_link (EvView *view,
96 gboolean ev_view_next_page (EvView *view);
97 gboolean ev_view_previous_page (EvView *view);
99 void ev_view_autoscroll_start (EvView *view);
100 void ev_view_autoscroll_stop (EvView *view);
102 gboolean ev_view_get_page_extents (EvView *view,
104 GdkRectangle *page_area,
107 void ev_view_focus_annotation (EvView *view,
108 EvMapping *annot_mapping);
109 void ev_view_begin_add_annotation (EvView *view,
110 EvAnnotationType annot_type);
111 void ev_view_cancel_add_annotation (EvView *view);
115 #endif /* __EV_VIEW_H__ */