]> www.fi.muni.cz Git - evince.git/blob - libdocument/ev-document-find.c
Reorganize source tree.
[evince.git] / libdocument / ev-document-find.c
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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
18  *
19  */
20
21 #include "config.h"
22
23 #include "ev-document-find.h"
24 #include "ev-backend-marshalers.h"
25
26 static void ev_document_find_base_init (gpointer g_class);
27
28 GType
29 ev_document_find_get_type (void)
30 {
31         static GType type = 0;
32
33         if (G_UNLIKELY (type == 0))
34         {
35                 const GTypeInfo our_info =
36                 {
37                         sizeof (EvDocumentFindIface),
38                         ev_document_find_base_init,
39                         NULL,
40                 };
41
42                 type = g_type_register_static (G_TYPE_INTERFACE,
43                                                "EvDocumentFind",
44                                                &our_info, (GTypeFlags)0);
45         }
46
47         return type;
48 }
49
50 static void
51 ev_document_find_base_init (gpointer g_class)
52 {
53         static gboolean initialized = FALSE;
54
55         if (!initialized) {
56                 g_signal_new ("find_changed",
57                               EV_TYPE_DOCUMENT_FIND,
58                               G_SIGNAL_RUN_LAST,
59                               G_STRUCT_OFFSET (EvDocumentFindIface, find_changed),
60                               NULL, NULL,
61                               g_cclosure_marshal_VOID__INT,
62                               G_TYPE_NONE, 1,
63                               G_TYPE_INT);
64
65                 initialized = TRUE;
66         }
67 }
68
69 void
70 ev_document_find_begin (EvDocumentFind   *document_find,
71                         int               page,
72                         const char       *search_string,
73                         gboolean          case_sensitive)
74 {
75         EvDocumentFindIface *iface = EV_DOCUMENT_FIND_GET_IFACE (document_find);
76
77         g_return_if_fail (search_string != NULL);
78         
79         iface->begin (document_find, page, search_string, case_sensitive);
80 }
81
82 void
83 ev_document_find_cancel (EvDocumentFind   *document_find)
84 {
85         EvDocumentFindIface *iface = EV_DOCUMENT_FIND_GET_IFACE (document_find);
86         iface->cancel (document_find);
87 }
88
89 int
90 ev_document_find_page_has_results (EvDocumentFind *document_find,
91                                    int             page)
92 {
93         EvDocumentFindIface *iface = EV_DOCUMENT_FIND_GET_IFACE (document_find);
94         return iface->page_has_results (document_find, page);
95 }
96
97 int
98 ev_document_find_get_n_results (EvDocumentFind *document_find,
99                                 int             page)
100 {
101         EvDocumentFindIface *iface = EV_DOCUMENT_FIND_GET_IFACE (document_find);
102         return iface->get_n_results (document_find, page);
103 }
104
105 gboolean
106 ev_document_find_get_result (EvDocumentFind *document_find,
107                              int             page,
108                              int             n_result,
109                              EvRectangle    *rectangle)
110 {
111         EvDocumentFindIface *iface = EV_DOCUMENT_FIND_GET_IFACE (document_find);
112         return iface->get_result (document_find, page, n_result, rectangle);
113 }
114
115 double
116 ev_document_find_get_progress (EvDocumentFind *document_find)
117 {
118         EvDocumentFindIface *iface = EV_DOCUMENT_FIND_GET_IFACE (document_find);
119         return iface->get_progress (document_find);
120 }
121
122 void
123 ev_document_find_changed (EvDocumentFind  *document_find, int page)
124 {
125         g_signal_emit_by_name (document_find, "find_changed", page);
126 }