1 /* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*-
4 * Pidgin is the legal property of its developers, whose names are too numerous
5 * to list here. Please refer to the COPYRIGHT file distributed with this
8 * The following copyright notice applies to this file:
10 * Copyright (C) 2000 - 2005 Paolo Maggi
11 * Copyright (C) 2002, 2003 Jeroen Zwartepoorte
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.
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.
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
25 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02111-1301, USA.
28 #ifndef _PIDGINSOURCEITER_H_
29 #define _PIDGINSOURCEITER_H_
37 GTK_SOURCE_SEARCH_VISIBLE_ONLY
= 1 << 0,
38 GTK_SOURCE_SEARCH_TEXT_ONLY
= 1 << 1,
39 GTK_SOURCE_SEARCH_CASE_INSENSITIVE
= 1 << 2
40 /* Possible future plans: SEARCH_REGEXP */
41 } GtkSourceSearchFlags
;
43 gboolean
gtk_source_iter_forward_search (const GtkTextIter
*iter
,
45 GtkSourceSearchFlags flags
,
46 GtkTextIter
*match_start
,
47 GtkTextIter
*match_end
,
48 const GtkTextIter
*limit
);
50 gboolean
gtk_source_iter_backward_search (const GtkTextIter
*iter
,
52 GtkSourceSearchFlags flags
,
53 GtkTextIter
*match_start
,
54 GtkTextIter
*match_end
,
55 const GtkTextIter
*limit
);
57 gboolean
gtk_source_iter_find_matching_bracket (GtkTextIter
*iter
);
61 #endif /* _PIDGINSOURCEITER_H_ */