1 /* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8; c-indent-level: 8 -*- */
2 /* this file is part of evince, a gnome document viewer
4 * Copyright (C) 2004 Red Hat, Inc
6 * Evince is free software; you can redistribute it and/or modify it
7 * under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
11 * Evince is distributed in the hope that it will be useful, but
12 * WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * General Public License for more details.
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
21 #if !defined (EVINCE_COMPILATION)
22 #error "This is a private header."
25 #ifndef __EV_VIEW_PRIVATE_H__
26 #define __EV_VIEW_PRIVATE_H__
29 #include "ev-document-model.h"
30 #include "ev-pixbuf-cache.h"
31 #include "ev-page-cache.h"
34 #include "ev-form-field.h"
35 #include "ev-selection.h"
36 #include "ev-transition-animation.h"
38 #define DRAG_HISTORY 10
40 /* Information for middle clicking and moving around the doc */
46 guint drag_timeout_id;
47 guint release_timeout_id;
48 GdkPoint buffer[DRAG_HISTORY];
54 gboolean autoscrolling;
60 /* Information for handling selection */
64 gboolean in_selection;
66 EvSelectionStyle style;
69 /* Information for handling images DND */
76 /* Annotation popup windows */
81 /* Current position */
85 /* EvView root position */
98 SCROLL_TO_KEEP_POSITION,
99 SCROLL_TO_PAGE_POSITION,
101 SCROLL_TO_FIND_LOCATION,
105 EV_VIEW_CURSOR_NORMAL,
106 EV_VIEW_CURSOR_IBEAM,
109 EV_VIEW_CURSOR_HIDDEN,
111 EV_VIEW_CURSOR_AUTOSCROLL,
115 EV_PRESENTATION_NORMAL,
116 EV_PRESENTATION_BLACK,
117 EV_PRESENTATION_WHITE,
119 } EvPresentationState;
121 typedef struct _EvHeightToPageCache {
123 gdouble *height_to_page;
124 gdouble *dual_height_to_page;
125 } EvHeightToPageCache;
130 EvDocument *document;
135 gboolean jump_to_find_result;
136 gboolean highlight_find_results;
138 EvDocumentModel *model;
139 EvPixbufCache *pixbuf_cache;
140 EvPageCache *page_cache;
141 EvHeightToPageCache *height_to_page_cache;
143 EvJobRender *current_job;
146 GtkAdjustment *hadjustment;
147 GtkAdjustment *vadjustment;
152 PendingScroll pending_scroll;
153 gboolean pending_resize;
154 EvPoint pending_point;
156 /* Current geometry */
170 gboolean presentation;
171 EvSizingMode sizing_mode;
172 cairo_surface_t *loading_text;
175 EvPresentationState presentation_state;
176 EvSizingMode sizing_mode_saved;
178 guint trans_timeout_id;
180 /* Common for button press handling */
183 /* Information for middle clicking and dragging around. */
187 AutoScrollInfo scroll_info;
191 guint selection_update_id;
192 guint selection_scroll_id;
194 EvViewSelectionMode selection_mode;
195 SelectionInfo selection_info;
197 /* Copy link address selection */
198 EvLinkAction *link_selected;
201 ImageDNDInfo image_dnd_info;
204 GtkWidget *goto_window;
205 GtkWidget *goto_entry;
207 EvTransitionAnimation *animation;
210 GList *window_children;
211 EvViewWindowChild *window_child_focus;
214 struct _EvViewClass {
215 GtkLayoutClass parent_class;
217 void (*binding_activated) (EvView *view,
218 GtkScrollType scroll,
219 gboolean horizontal);
220 void (*handle_link) (EvView *view,
222 void (*external_link) (EvView *view,
223 EvLinkAction *action);
224 void (*popup_menu) (EvView *view,
228 void _get_page_size_for_scale_and_rotation (EvDocument *document,
235 #endif /* __EV_VIEW_PRIVATE_H__ */