Thu, 06 Feb 2014 20:47:29 +0530
Update doc labels for renamed functions
|
25888
d0fdd378a635
Remove trailing whitespace
Mark Doliner <markdoliner@pidgin.im>
parents:
19859
diff
changeset
|
1 | /* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- |
| 7358 | 2 | * gtksourceiter.h |
| 3 | * | |
| 15572 | 4 | * Pidgin is the legal property of its developers, whose names are too numerous |
| 8046 | 5 | * to list here. Please refer to the COPYRIGHT file distributed with this |
| 6 | * source distribution. | |
| 7358 | 7 | * |
|
12465
59859abbe998
[gaim-migrate @ 14775]
Peter Lawler <pidgin@bleeter.id.au>
parents:
10566
diff
changeset
|
8 | * The following copyright notice applies to this file: |
|
59859abbe998
[gaim-migrate @ 14775]
Peter Lawler <pidgin@bleeter.id.au>
parents:
10566
diff
changeset
|
9 | * |
|
25888
d0fdd378a635
Remove trailing whitespace
Mark Doliner <markdoliner@pidgin.im>
parents:
19859
diff
changeset
|
10 | * Copyright (C) 2000 - 2005 Paolo Maggi |
|
12465
59859abbe998
[gaim-migrate @ 14775]
Peter Lawler <pidgin@bleeter.id.au>
parents:
10566
diff
changeset
|
11 | * Copyright (C) 2002, 2003 Jeroen Zwartepoorte |
|
59859abbe998
[gaim-migrate @ 14775]
Peter Lawler <pidgin@bleeter.id.au>
parents:
10566
diff
changeset
|
12 | * |
| 7358 | 13 | * This program is free software; you can redistribute it and/or modify |
| 14 | * it under the terms of the GNU Library General Public License as published by | |
| 15 | * the Free Software Foundation; either version 2 of the License, or | |
| 16 | * (at your option) any later version. | |
| 17 | * | |
| 18 | * This program is distributed in the hope that it will be useful, | |
| 19 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
| 20 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
| 21 | * GNU Library General Public License for more details. | |
| 22 | * | |
| 23 | * You should have received a copy of the GNU Library General Public License | |
| 24 | * along with this program; if not, write to the Free Software | |
|
19859
71d37b57eff2
The FSF changed its address a while ago; our files were out of date.
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
15572
diff
changeset
|
25 | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02111-1301, USA. |
| 7358 | 26 | */ |
|
35451
206524351826
Add sections for finch and re-arrange its doc index
Ankit Vani <a@nevitus.org>
parents:
26727
diff
changeset
|
27 | /** |
|
206524351826
Add sections for finch and re-arrange its doc index
Ankit Vani <a@nevitus.org>
parents:
26727
diff
changeset
|
28 | * SECTION:gtksourceiter |
|
206524351826
Add sections for finch and re-arrange its doc index
Ankit Vani <a@nevitus.org>
parents:
26727
diff
changeset
|
29 | * @section_id: pidgin-gtksourceiter |
|
206524351826
Add sections for finch and re-arrange its doc index
Ankit Vani <a@nevitus.org>
parents:
26727
diff
changeset
|
30 | * @short_description: <filename>gtksourceiter.h</filename> |
|
206524351826
Add sections for finch and re-arrange its doc index
Ankit Vani <a@nevitus.org>
parents:
26727
diff
changeset
|
31 | * @title: Source Iterator utilities |
|
206524351826
Add sections for finch and re-arrange its doc index
Ankit Vani <a@nevitus.org>
parents:
26727
diff
changeset
|
32 | */ |
|
12465
59859abbe998
[gaim-migrate @ 14775]
Peter Lawler <pidgin@bleeter.id.au>
parents:
10566
diff
changeset
|
33 | |
|
15562
8c8249fe5e3c
gaim_gtk to pidgin. I hope
Sean Egan <seanegan@pidgin.im>
parents:
15435
diff
changeset
|
34 | #ifndef _PIDGINSOURCEITER_H_ |
|
8c8249fe5e3c
gaim_gtk to pidgin. I hope
Sean Egan <seanegan@pidgin.im>
parents:
15435
diff
changeset
|
35 | #define _PIDGINSOURCEITER_H_ |
| 7358 | 36 | |
|
26727
b8885bab55ab
More updates for GTK+ 3.0. This only fixes the single-includes. Fixing all
Elliott Sales de Andrade <qulogic@pidgin.im>
parents:
25888
diff
changeset
|
37 | #include <gtk/gtk.h> |
| 7358 | 38 | |
| 39 | G_BEGIN_DECLS | |
| 40 | ||
| 41 | typedef enum | |
| 42 | { | |
|
12465
59859abbe998
[gaim-migrate @ 14775]
Peter Lawler <pidgin@bleeter.id.au>
parents:
10566
diff
changeset
|
43 | GTK_SOURCE_SEARCH_VISIBLE_ONLY = 1 << 0, |
|
59859abbe998
[gaim-migrate @ 14775]
Peter Lawler <pidgin@bleeter.id.au>
parents:
10566
diff
changeset
|
44 | GTK_SOURCE_SEARCH_TEXT_ONLY = 1 << 1, |
|
59859abbe998
[gaim-migrate @ 14775]
Peter Lawler <pidgin@bleeter.id.au>
parents:
10566
diff
changeset
|
45 | GTK_SOURCE_SEARCH_CASE_INSENSITIVE = 1 << 2 |
| 7358 | 46 | /* Possible future plans: SEARCH_REGEXP */ |
| 47 | } GtkSourceSearchFlags; | |
| 48 | ||
| 10566 | 49 | gboolean gtk_source_iter_forward_search (const GtkTextIter *iter, |
| 7358 | 50 | const gchar *str, |
| 51 | GtkSourceSearchFlags flags, | |
| 52 | GtkTextIter *match_start, | |
| 53 | GtkTextIter *match_end, | |
| 54 | const GtkTextIter *limit); | |
| 55 | ||
| 10566 | 56 | gboolean gtk_source_iter_backward_search (const GtkTextIter *iter, |
| 7358 | 57 | const gchar *str, |
| 58 | GtkSourceSearchFlags flags, | |
| 59 | GtkTextIter *match_start, | |
| 60 | GtkTextIter *match_end, | |
| 61 | const GtkTextIter *limit); | |
| 62 | ||
| 10566 | 63 | gboolean gtk_source_iter_find_matching_bracket (GtkTextIter *iter); |
| 7358 | 64 | |
| 65 | G_END_DECLS | |
| 66 | ||
|
15562
8c8249fe5e3c
gaim_gtk to pidgin. I hope
Sean Egan <seanegan@pidgin.im>
parents:
15435
diff
changeset
|
67 | #endif /* _PIDGINSOURCEITER_H_ */ |