]> www.fi.muni.cz Git - evince.git/blob - backend/ev-document-find.h
Updated Canadian English translation.
[evince.git] / backend / ev-document-find.h
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  *  $Id$
20  */
21
22 #ifndef EV_DOCUMENT_FIND_H
23 #define EV_DOCUMENT_FIND_H
24
25 #include <glib-object.h>
26 #include <glib.h>
27 #include <gdk/gdk.h>
28
29 G_BEGIN_DECLS
30
31 #define EV_TYPE_DOCUMENT_FIND       (ev_document_find_get_type ())
32 #define EV_DOCUMENT_FIND(o)                 (G_TYPE_CHECK_INSTANCE_CAST ((o), EV_TYPE_DOCUMENT_FIND, EvDocumentFind))
33 #define EV_DOCUMENT_FIND_IFACE(k)           (G_TYPE_CHECK_CLASS_CAST((k), EV_TYPE_DOCUMENT_FIND, EvDocumentFindIface))
34 #define EV_IS_DOCUMENT_FIND(o)      (G_TYPE_CHECK_INSTANCE_TYPE ((o), EV_TYPE_DOCUMENT_FIND))
35 #define EV_IS_DOCUMENT_FIND_IFACE(k)        (G_TYPE_CHECK_CLASS_TYPE ((k), EV_TYPE_DOCUMENT_FIND))
36 #define EV_DOCUMENT_FIND_GET_IFACE(inst) (G_TYPE_INSTANCE_GET_INTERFACE ((inst), EV_TYPE_DOCUMENT_FIND, EvDocumentFindIface))
37
38 typedef struct _EvDocumentFind  EvDocumentFind;
39 typedef struct _EvDocumentFindIface     EvDocumentFindIface;
40
41 struct _EvDocumentFindIface
42 {
43         GTypeInterface base_iface;
44
45         /* Methods */
46         
47         void     (* begin)            (EvDocumentFind *document_find,
48                                        const char     *search_string,
49                                        gboolean        case_sensitive);
50         void     (* cancel)           (EvDocumentFind *document_find);
51         int      (* page_has_results) (EvDocumentFind *document_find,
52                                        int             page);
53         int      (* get_n_results)    (EvDocumentFind *document_find);
54         gboolean (* get_result)       (EvDocumentFind *document_find,
55                                        int             n_result,
56                                        GdkRectangle   *rectangle); 
57         double   (* get_progress)     (EvDocumentFind *document_find);
58
59         /* Signals */
60
61         void     (* find_changed)     (EvDocumentFind *document_find,
62                                        int             page);
63 };
64
65 GType     ev_document_find_get_type         (void);
66 void      ev_document_find_begin            (EvDocumentFind *document_find,
67                                              const char     *search_string,
68                                              gboolean        case_sensitive);
69 void      ev_document_find_cancel           (EvDocumentFind *document_find);
70 int       ev_document_find_page_has_results (EvDocumentFind *document_find,
71                                              int             page);
72 int       ev_document_find_get_n_results    (EvDocumentFind *document_find);
73 gboolean  ev_document_find_get_result       (EvDocumentFind *document_find,
74                                              int             n_result,
75                                              GdkRectangle   *rectangle); 
76 double    ev_document_find_get_progress     (EvDocumentFind *document_find);
77 void      ev_document_find_changed          (EvDocumentFind *document_find,
78                                              int             page);
79
80 /* How this interface works:
81  *
82  * begin() begins a new search, canceling any previous search.
83  * 
84  * cancel() cancels a search if any, otherwise does nothing.
85  * 
86  */
87
88 G_END_DECLS
89
90 #endif