1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
|
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*-
*
* gedittextregion.h - GtkTextMark based region utility functions
*
* This file is part of the GtkSourceView widget
*
* Copyright (C) 2002 Gustavo Gir�ldez <gustavo.giraldez@gmx.net>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330,
* Boston, MA 02111-1307, USA.
*/
#ifndef __GEDIT_TEXT_REGION_H__
#define __GEDIT_TEXT_REGION_H__
#include <gtk/gtk.h>
G_BEGIN_DECLS
typedef struct _GeditTextRegion GeditTextRegion;
typedef struct _GeditTextRegionIterator GeditTextRegionIterator;
struct _GeditTextRegionIterator {
/* GeditTextRegionIterator is an opaque datatype; ignore all these fields.
* Initialize the iter with gedit_text_region_get_iterator
* function
*/
/*< private >*/
gpointer dummy1;
guint32 dummy2;
gpointer dummy3;
};
GeditTextRegion *gedit_text_region_new (GtkTextBuffer *buffer);
void gedit_text_region_destroy (GeditTextRegion *region,
gboolean delete_marks);
GtkTextBuffer *gedit_text_region_get_buffer (GeditTextRegion *region);
void gedit_text_region_add (GeditTextRegion *region,
const GtkTextIter *_start,
const GtkTextIter *_end);
void gedit_text_region_subtract (GeditTextRegion *region,
const GtkTextIter *_start,
const GtkTextIter *_end);
gint gedit_text_region_subregions (GeditTextRegion *region);
gboolean gedit_text_region_nth_subregion (GeditTextRegion *region,
guint subregion,
GtkTextIter *start,
GtkTextIter *end);
GeditTextRegion *gedit_text_region_intersect (GeditTextRegion *region,
const GtkTextIter *_start,
const GtkTextIter *_end);
void gedit_text_region_get_iterator (GeditTextRegion *region,
GeditTextRegionIterator *iter,
guint start);
gboolean gedit_text_region_iterator_is_end (GeditTextRegionIterator *iter);
/* Returns FALSE if iterator is the end iterator */
gboolean gedit_text_region_iterator_next (GeditTextRegionIterator *iter);
void gedit_text_region_iterator_get_subregion (GeditTextRegionIterator *iter,
GtkTextIter *start,
GtkTextIter *end);
void gedit_text_region_debug_print (GeditTextRegion *region);
G_END_DECLS
#endif /* __GEDIT_TEXT_REGION_H__ */
|