]> www.fi.muni.cz Git - evince.git/blob - backend/ev-document-find.h
More work on find implementation, mostly there now
[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         void     (* get_progress)     (EvDocumentFind *document_find,
58                                        double          percent_complete);
59
60         /* Signals */
61
62         void     (* find_changed)     (EvDocumentFind *document_find,
63                                        int             page);
64 };
65
66 GType     ev_document_find_get_type         (void);
67 void      ev_document_find_begin            (EvDocumentFind *document_find,
68                                              const char     *search_string,
69                                              gboolean        case_sensitive);
70 void      ev_document_find_cancel           (EvDocumentFind *document_find);
71 int       ev_document_find_page_has_results (EvDocumentFind *document_find,
72                                              int             page);
73 int       ev_document_find_get_n_results    (EvDocumentFind *document_find);
74 gboolean  ev_document_find_get_result       (EvDocumentFind *document_find,
75                                              int             n_result,
76                                              GdkRectangle   *rectangle); 
77 void      ev_document_find_get_progress     (EvDocumentFind *document_find,
78                                              double          percent_complete);
79 void      ev_document_find_changed          (EvDocumentFind *document_find,
80                                              int             page);
81
82
83 /* How this interface works:
84  *
85  * begin() begins a new search, canceling any previous search.
86  * 
87  * cancel() cancels a search if any, otherwise does nothing.
88  * 
89  */
90
91 G_END_DECLS
92
93 #endif