Evince
Evince is a document viewer capable of displaying multiple and single page document formats like PDF and Postscript.
 All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
ev-document-find.h
Go to the documentation of this file.
1 /* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8; c-indent-level: 8 -*- */
2 /*
3  * Copyright (C) 2004 Red Hat, Inc.
4  *
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)
8  * any later version.
9  *
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.
14  *
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.
18  *
19  * $Id$
20  */
21 
22 #if !defined (__EV_EVINCE_DOCUMENT_H_INSIDE__) && !defined (EVINCE_COMPILATION)
23 #error "Only <evince-document.h> can be included directly."
24 #endif
25 
26 #ifndef EV_DOCUMENT_FIND_H
27 #define EV_DOCUMENT_FIND_H
28 
29 #include <glib-object.h>
30 #include <glib.h>
31 
32 #include "ev-document.h"
33 
34 G_BEGIN_DECLS
35 
36 #define EV_TYPE_DOCUMENT_FIND (ev_document_find_get_type ())
37 #define EV_DOCUMENT_FIND(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), EV_TYPE_DOCUMENT_FIND, EvDocumentFind))
38 #define EV_DOCUMENT_FIND_IFACE(k) (G_TYPE_CHECK_CLASS_CAST((k), EV_TYPE_DOCUMENT_FIND, EvDocumentFindInterface))
39 #define EV_IS_DOCUMENT_FIND(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), EV_TYPE_DOCUMENT_FIND))
40 #define EV_IS_DOCUMENT_FIND_IFACE(k) (G_TYPE_CHECK_CLASS_TYPE ((k), EV_TYPE_DOCUMENT_FIND))
41 #define EV_DOCUMENT_FIND_GET_IFACE(inst) (G_TYPE_INSTANCE_GET_INTERFACE ((inst), EV_TYPE_DOCUMENT_FIND, EvDocumentFindInterface))
42 
43 typedef struct _EvDocumentFind EvDocumentFind;
45 
46 typedef enum {
51 
53 {
54  GTypeInterface base_iface;
55 
56  /* Methods */
57  GList *(* find_text) (EvDocumentFind *document_find,
58  EvPage *page,
59  const gchar *text,
60  gboolean case_sensitive);
61  GList *(* find_text_with_options) (EvDocumentFind *document_find,
62  EvPage *page,
63  const gchar *text,
64  EvFindOptions options);
66 };
67 
68 GType ev_document_find_get_type (void) G_GNUC_CONST;
69 GList *ev_document_find_find_text (EvDocumentFind *document_find,
70  EvPage *page,
71  const gchar *text,
72  gboolean case_sensitive);
74  EvPage *page,
75  const gchar *text,
76  EvFindOptions options);
78 
79 G_END_DECLS
80 
81 #endif /* EV_DOCUMENT_FIND_H */