1/* GTK - The GIMP Toolkit
2 * Copyright (C) 2012 Red Hat, Inc.
3 *
4 * Authors:
5 * - Bastien Nocera <bnocera@redhat.com>
6 *
7 * This library is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Lesser General Public
9 * License as published by the Free Software Foundation; either
10 * version 2 of the License, or (at your option) any later version.
11 *
12 * This library is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Lesser General Public License for more details.
16 *
17 * You should have received a copy of the GNU Lesser General Public
18 * License along with this library. If not, see <http://www.gnu.org/licenses/>.
19 */
20
21/*
22 * Modified by the GTK+ Team and others 2012. See the AUTHORS
23 * file for a list of people on the GTK+ Team. See the ChangeLog
24 * files for a list of changes. These files are distributed with
25 * GTK+ at ftp://ftp.gtk.org/pub/gtk/.
26 */
27
28#ifndef __GTK_SEARCH_ENTRY_H__
29#define __GTK_SEARCH_ENTRY_H__
30
31#if !defined (__GTK_H_INSIDE__) && !defined (GTK_COMPILATION)
32#error "Only <gtk/gtk.h> can be included directly."
33#endif
34
35#include <gtk/gtkentry.h>
36
37G_BEGIN_DECLS
38
39#define GTK_TYPE_SEARCH_ENTRY (gtk_search_entry_get_type ())
40#define GTK_SEARCH_ENTRY(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), GTK_TYPE_SEARCH_ENTRY, GtkSearchEntry))
41#define GTK_SEARCH_ENTRY_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), GTK_TYPE_SEARCH_ENTRY, GtkSearchEntryClass))
42#define GTK_IS_SEARCH_ENTRY(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GTK_TYPE_SEARCH_ENTRY))
43#define GTK_IS_SEARCH_ENTRY_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), GTK_TYPE_SEARCH_ENTRY))
44#define GTK_SEARCH_ENTRY_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), GTK_TYPE_SEARCH_ENTRY, GtkSearchEntryClass))
45
46typedef struct _GtkSearchEntry GtkSearchEntry;
47typedef struct _GtkSearchEntryClass GtkSearchEntryClass;
48
49struct _GtkSearchEntry
50{
51 GtkEntry parent;
52};
53
54struct _GtkSearchEntryClass
55{
56 GtkEntryClass parent_class;
57
58 void (*search_changed) (GtkSearchEntry *entry);
59 void (*next_match) (GtkSearchEntry *entry);
60 void (*previous_match) (GtkSearchEntry *entry);
61 void (*stop_search) (GtkSearchEntry *entry);
62};
63
64GDK_AVAILABLE_IN_3_6
65GType gtk_search_entry_get_type (void) G_GNUC_CONST;
66
67GDK_AVAILABLE_IN_3_6
68GtkWidget* gtk_search_entry_new (void);
69
70GDK_AVAILABLE_IN_3_16
71gboolean gtk_search_entry_handle_event (GtkSearchEntry *entry,
72 GdkEvent *event);
73
74G_END_DECLS
75
76#endif /* __GTK_SEARCH_ENTRY_H__ */
77

source code of include/gtk-3.0/gtk/gtksearchentry.h