Mercurial > pidgin.yaz
annotate src/gtksourceiter.h @ 12695:0bc110c7ab91
[gaim-migrate @ 15038]
Let's display outdated plugins in the plugins dialog, but grey them out. This way, the user can find out which plugins need to be updated. They will also be able to view the website address so they know where to get a new version.
Inspired by SF Feature Request #1395058 from Daniel Beardsmore (uilleann).
committer: Tailor Script <tailor@pidgin.im>
author | Richard Laager <rlaager@wiktel.com> |
---|---|
date | Tue, 03 Jan 2006 12:03:02 +0000 |
parents | ae4ae98bca20 |
children |
rev | line source |
---|---|
7358 | 1 /* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- |
2 * gtksourceiter.h | |
3 * | |
8046 | 4 * Gaim 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 | |
6 * source distribution. | |
7358 | 7 * |
12465
ae4ae98bca20
[gaim-migrate @ 14775]
Richard Laager <rlaager@wiktel.com>
parents:
10566
diff
changeset
|
8 * The following copyright notice applies to this file: |
ae4ae98bca20
[gaim-migrate @ 14775]
Richard Laager <rlaager@wiktel.com>
parents:
10566
diff
changeset
|
9 * |
ae4ae98bca20
[gaim-migrate @ 14775]
Richard Laager <rlaager@wiktel.com>
parents:
10566
diff
changeset
|
10 * Copyright (C) 2000 - 2005 Paolo Maggi |
ae4ae98bca20
[gaim-migrate @ 14775]
Richard Laager <rlaager@wiktel.com>
parents:
10566
diff
changeset
|
11 * Copyright (C) 2002, 2003 Jeroen Zwartepoorte |
ae4ae98bca20
[gaim-migrate @ 14775]
Richard Laager <rlaager@wiktel.com>
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 | |
25 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. | |
26 */ | |
12465
ae4ae98bca20
[gaim-migrate @ 14775]
Richard Laager <rlaager@wiktel.com>
parents:
10566
diff
changeset
|
27 |
9713 | 28 #ifndef _GAIM_GTKSOURCEITER_H_ |
29 #define _GAIM_GTKSOURCEITER_H_ | |
7358 | 30 |
31 #include <gtk/gtktextiter.h> | |
32 | |
33 G_BEGIN_DECLS | |
34 | |
35 typedef enum | |
36 { | |
12465
ae4ae98bca20
[gaim-migrate @ 14775]
Richard Laager <rlaager@wiktel.com>
parents:
10566
diff
changeset
|
37 GTK_SOURCE_SEARCH_VISIBLE_ONLY = 1 << 0, |
ae4ae98bca20
[gaim-migrate @ 14775]
Richard Laager <rlaager@wiktel.com>
parents:
10566
diff
changeset
|
38 GTK_SOURCE_SEARCH_TEXT_ONLY = 1 << 1, |
ae4ae98bca20
[gaim-migrate @ 14775]
Richard Laager <rlaager@wiktel.com>
parents:
10566
diff
changeset
|
39 GTK_SOURCE_SEARCH_CASE_INSENSITIVE = 1 << 2 |
7358 | 40 /* Possible future plans: SEARCH_REGEXP */ |
41 } GtkSourceSearchFlags; | |
42 | |
10566
62fc579810f4
[gaim-migrate @ 11949]
Etan Reisner <pidgin@unreliablesource.net>
parents:
9713
diff
changeset
|
43 gboolean gtk_source_iter_forward_search (const GtkTextIter *iter, |
7358 | 44 const gchar *str, |
45 GtkSourceSearchFlags flags, | |
46 GtkTextIter *match_start, | |
47 GtkTextIter *match_end, | |
48 const GtkTextIter *limit); | |
49 | |
10566
62fc579810f4
[gaim-migrate @ 11949]
Etan Reisner <pidgin@unreliablesource.net>
parents:
9713
diff
changeset
|
50 gboolean gtk_source_iter_backward_search (const GtkTextIter *iter, |
7358 | 51 const gchar *str, |
52 GtkSourceSearchFlags flags, | |
53 GtkTextIter *match_start, | |
54 GtkTextIter *match_end, | |
55 const GtkTextIter *limit); | |
56 | |
10566
62fc579810f4
[gaim-migrate @ 11949]
Etan Reisner <pidgin@unreliablesource.net>
parents:
9713
diff
changeset
|
57 gboolean gtk_source_iter_find_matching_bracket (GtkTextIter *iter); |
7358 | 58 |
59 G_END_DECLS | |
60 | |
9713 | 61 #endif /* _GAIM_GTKSOURCEITER_H_ */ |