1 | /* GTK - The GIMP Toolkit |
2 | * Copyright (C) 2013 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 2013. 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_BAR_H__ |
29 | #define __GTK_SEARCH_BAR_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/gtkrevealer.h> |
36 | |
37 | G_BEGIN_DECLS |
38 | |
39 | #define GTK_TYPE_SEARCH_BAR (gtk_search_bar_get_type ()) |
40 | #define GTK_SEARCH_BAR(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), GTK_TYPE_SEARCH_BAR, GtkSearchBar)) |
41 | #define GTK_SEARCH_BAR_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), GTK_TYPE_SEARCH_BAR, GtkSearchBarClass)) |
42 | #define GTK_IS_SEARCH_BAR(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GTK_TYPE_SEARCH_BAR)) |
43 | #define GTK_IS_SEARCH_BAR_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), GTK_TYPE_SEARCH_BAR)) |
44 | #define GTK_SEARCH_BAR_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), GTK_TYPE_SEARCH_BAR, GtkSearchBarClass)) |
45 | |
46 | typedef struct _GtkSearchBar GtkSearchBar; |
47 | typedef struct _GtkSearchBarClass GtkSearchBarClass; |
48 | |
49 | struct _GtkSearchBar |
50 | { |
51 | /*< private >*/ |
52 | GtkBin parent; |
53 | }; |
54 | |
55 | /** |
56 | * GtkSearchBarClass: |
57 | * @parent_class: The parent class. |
58 | */ |
59 | struct _GtkSearchBarClass |
60 | { |
61 | GtkBinClass parent_class; |
62 | |
63 | /*< private >*/ |
64 | |
65 | /* Padding for future expansion */ |
66 | void (*_gtk_reserved1) (void); |
67 | void (*_gtk_reserved2) (void); |
68 | void (*_gtk_reserved3) (void); |
69 | void (*_gtk_reserved4) (void); |
70 | }; |
71 | |
72 | GDK_AVAILABLE_IN_3_10 |
73 | GType gtk_search_bar_get_type (void) G_GNUC_CONST; |
74 | |
75 | GDK_AVAILABLE_IN_3_10 |
76 | GtkWidget* gtk_search_bar_new (void); |
77 | |
78 | GDK_AVAILABLE_IN_3_10 |
79 | void gtk_search_bar_connect_entry (GtkSearchBar *bar, |
80 | GtkEntry *entry); |
81 | |
82 | GDK_AVAILABLE_IN_3_10 |
83 | gboolean gtk_search_bar_get_search_mode (GtkSearchBar *bar); |
84 | GDK_AVAILABLE_IN_3_10 |
85 | void gtk_search_bar_set_search_mode (GtkSearchBar *bar, |
86 | gboolean search_mode); |
87 | |
88 | GDK_AVAILABLE_IN_3_10 |
89 | gboolean gtk_search_bar_get_show_close_button (GtkSearchBar *bar); |
90 | GDK_AVAILABLE_IN_3_10 |
91 | void gtk_search_bar_set_show_close_button (GtkSearchBar *bar, |
92 | gboolean visible); |
93 | |
94 | GDK_AVAILABLE_IN_3_10 |
95 | gboolean gtk_search_bar_handle_event (GtkSearchBar *bar, |
96 | GdkEvent *event); |
97 | |
98 | G_END_DECLS |
99 | |
100 | #endif /* __GTK_SEARCH_BAR_H__ */ |
101 | |