1 /* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8; c-indent-level: 8 -*- */
3 * Copyright (C) 2000-2003 Marco Pesenti Gritti
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2, or (at your option)
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU 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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
21 #if !defined (__EV_EVINCE_DOCUMENT_H_INSIDE__) && !defined (EVINCE_COMPILATION)
22 #error "Only <evince-document.h> can be included directly."
25 #ifndef EV_SELECTION_H
26 #define EV_SELECTION_H
28 #include <glib-object.h>
31 #include "ev-document.h"
35 #define EV_TYPE_SELECTION (ev_selection_get_type ())
36 #define EV_SELECTION(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), EV_TYPE_SELECTION, EvSelection))
37 #define EV_SELECTION_IFACE(k) (G_TYPE_CHECK_CLASS_CAST((k), EV_TYPE_SELECTION, EvSelectionIface))
38 #define EV_IS_SELECTION(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), EV_TYPE_SELECTION))
39 #define EV_IS_SELECTION_IFACE(k) (G_TYPE_CHECK_CLASS_TYPE ((k), EV_TYPE_SELECTION))
40 #define EV_SELECTION_GET_IFACE(inst) (G_TYPE_INSTANCE_GET_INTERFACE ((inst), EV_TYPE_SELECTION, EvSelectionIface))
43 EV_SELECTION_STYLE_GLYPH,
44 EV_SELECTION_STYLE_WORD,
45 EV_SELECTION_STYLE_LINE
48 typedef struct _EvSelection EvSelection;
49 typedef struct _EvSelectionIface EvSelectionIface;
51 struct _EvSelectionIface
53 GTypeInterface base_iface;
55 void (* render_selection) (EvSelection *selection,
57 cairo_surface_t **surface,
59 EvRectangle *old_points,
60 EvSelectionStyle style,
63 gchar * (* get_selected_text) (EvSelection *selection,
65 EvSelectionStyle style,
67 GdkRegion * (* get_selection_map) (EvSelection *selection,
69 GdkRegion * (* get_selection_region) (EvSelection *selection,
71 EvSelectionStyle style,
75 GType ev_selection_get_type (void);
76 void ev_selection_render_selection (EvSelection *selection,
78 cairo_surface_t **surface,
80 EvRectangle *old_points,
81 EvSelectionStyle style,
84 gchar *ev_selection_get_selected_text (EvSelection *selection,
86 EvSelectionStyle style,
88 GdkRegion *ev_selection_get_selection_map (EvSelection *selection,
90 GdkRegion *ev_selection_get_selection_region (EvSelection *selection,
92 EvSelectionStyle style,