~ubuntu-branches/ubuntu/trusty/evince/trusty-proposed

« back to all changes in this revision

Viewing changes to djvu/djvu-text-page.h

Tags: upstream-0.5.1
ImportĀ upstreamĀ versionĀ 0.5.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
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_PAGE_H__
 
20
#define __DJVU_TEXT_PAGE_H__
 
21
 
 
22
#include "ev-document.h"
 
23
 
 
24
#include <string.h>
 
25
#include <glib.h>
 
26
 
 
27
#include <libdjvu/ddjvuapi.h>
 
28
 
 
29
typedef struct _DjvuTextPage DjvuTextPage;
 
30
typedef struct _DjvuTextLink DjvuTextLink;
 
31
 
 
32
struct _DjvuTextPage {
 
33
        char *text;
 
34
        GArray *links;
 
35
        GList *results;
 
36
        miniexp_t char_symbol;
 
37
        miniexp_t word_symbol;
 
38
        EvRectangle *bounding_box;
 
39
        miniexp_t text_structure;
 
40
        miniexp_t start;
 
41
        miniexp_t end;
 
42
};
 
43
 
 
44
struct _DjvuTextLink {
 
45
        int position;
 
46
        miniexp_t pair;
 
47
};
 
48
 
 
49
char *                  djvu_text_page_copy             (DjvuTextPage *page, 
 
50
                                                         EvRectangle  *rectangle);
 
51
void                    djvu_text_page_prepare_search   (DjvuTextPage *page,
 
52
                                                         gboolean      case_sensitive);
 
53
void                    djvu_text_page_search           (DjvuTextPage *page, 
 
54
                                                        char         *text);
 
55
DjvuTextPage*           djvu_text_page_new              (miniexp_t text);
 
56
void                    djvu_text_page_free             (DjvuTextPage *page);
 
57
 
 
58
#endif /* __DJVU_TEXT_PAGE_H__ */
 
59