]> www.fi.muni.cz Git - evince.git/blob - djvu/djvu-text.h
Do not include ev-poppler.h when pdf is disabled.
[evince.git] / djvu / djvu-text.h
1 /* 
2  * Copyright (C) 2006 Michael Hofmann <mh21@piware.de>
3  *
4  * This program is free software; you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License as published by
6  * the Free Software Foundation; either version 2, or (at your option)
7  * any later version.
8  *
9  * This program is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12  * GNU General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License
15  * along with this program; if not, write to the Free Software
16  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
17  */
18
19 #ifndef __DJVU_TEXT_H__
20 #define __DJVU_TEXT_H__
21
22 #include "ev-document.h"
23
24 #include <glib.h>
25 #include <libdjvu/ddjvuapi.h>
26 #include <libdjvu/miniexp.h>
27
28 typedef struct _DjvuText DjvuText;
29
30 DjvuText    *djvu_text_new          (DjvuDocument *djvu_document,
31                                      int           start_page,
32                                      gboolean      case_sensitive, 
33                                      const char   *text);
34 const char  *djvu_text_get_text     (DjvuText     *djvu_text);
35 int          djvu_text_n_results    (DjvuText     *djvu_text, 
36                                      int           page);
37 EvRectangle *djvu_text_get_result   (DjvuText     *djvu_text, 
38                                      int           page,
39                                      int           n_result);
40 int          djvu_text_has_results  (DjvuText     *djvu_text, 
41                                      int           page);
42 double       djvu_text_get_progress (DjvuText     *djvu_text);
43 char        *djvu_text_copy         (DjvuDocument *djvu_document,
44                                      int           page,
45                                      EvRectangle  *rectangle);
46
47 #endif /* __DJVU_TEXT_H__ */