]> www.fi.muni.cz Git - evince.git/blob - shell/ev-view-private.h
Updated Serbian translation
[evince.git] / shell / ev-view-private.h
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
3  *
4  *  Copyright (C) 2004 Red Hat, Inc
5  *
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.
10  *
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.
15  *
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.
19  */
20
21 #ifndef __EV_VIEW_PRIVATE_H__
22 #define __EV_VIEW_PRIVATE_H__
23
24 #include "ev-view.h"
25 #include "ev-pixbuf-cache.h"
26 #include "ev-page-cache.h"
27
28 /* Information for middle clicking and moving around the doc */
29 typedef struct {
30         gboolean in_drag;
31         GdkPoint start;
32         gdouble hadj;
33         gdouble vadj;
34 } DragInfo;
35
36 /* Information for handling selection */
37 typedef struct {
38         gboolean in_drag;
39         GdkPoint start;
40         gboolean in_selection;
41         GList *selections;
42 } SelectionInfo;
43
44 typedef enum {
45         SCROLL_TO_KEEP_POSITION,
46         SCROLL_TO_PAGE_POSITION,
47         SCROLL_TO_CENTER,
48 } PendingScroll;
49
50 typedef enum {
51         EV_VIEW_CURSOR_NORMAL,
52         EV_VIEW_CURSOR_IBEAM,
53         EV_VIEW_CURSOR_LINK,
54         EV_VIEW_CURSOR_WAIT,
55         EV_VIEW_CURSOR_HIDDEN,
56         EV_VIEW_CURSOR_DRAG
57 } EvViewCursor;
58
59 struct _EvView {
60         GtkWidget parent_instance;
61
62         EvDocument *document;
63
64         char *status;
65         char *find_status;
66         int find_result;
67         
68         EvPageCache *page_cache;
69         EvPixbufCache *pixbuf_cache;
70         EvViewCursor cursor;
71         EvJobRender *current_job;
72
73         /* Scrolling */
74         GtkAdjustment *hadjustment;
75         GtkAdjustment *vadjustment;
76
77         gint scroll_x;
78         gint scroll_y;  
79
80         PendingScroll pending_scroll;
81         gboolean      pending_resize;
82         EvPoint       pending_point;
83
84         /* Current geometry */
85     
86         gint start_page;
87         gint end_page;
88         gint current_page;
89         gint find_page;
90
91         int rotation;
92         double scale;
93         int spacing;
94
95         gboolean continuous;
96         gboolean dual_page;
97         gboolean fullscreen;
98         gboolean presentation;
99         EvSizingMode sizing_mode;
100
101         /* Common for button press handling */
102         int pressed_button;
103
104         /* Information for middle clicking and dragging around. */
105         DragInfo drag_info;
106
107         /* Selection */
108         GdkPoint motion;
109         guint selection_update_id;
110         guint selection_scroll_id;
111
112         EvViewSelectionMode selection_mode;
113         SelectionInfo selection_info;
114
115         /* Links */
116         GtkWidget *link_tooltip;
117         EvLink *hovered_link;
118 };
119
120 struct _EvViewClass {
121         GtkWidgetClass parent_class;
122
123         void    (*set_scroll_adjustments) (EvView         *view,
124                                            GtkAdjustment  *hadjustment,
125                                            GtkAdjustment  *vadjustment);
126         void    (*binding_activated)      (EvView         *view,
127                                            GtkScrollType   scroll,
128                                            gboolean        horizontal);
129         void    (*zoom_invalid)           (EvView         *view);
130         void    (*external_link)          (EvView         *view,
131                                            EvLink         *link);
132         void    (*popup_menu)             (EvView         *view,
133                                            EvLink         *link);
134 };
135
136 #endif  /* __EV_VIEW_PRIVATE_H__ */
137