1 | /* |
2 | * gtkinfobar.h |
3 | * This file is part of GTK+ |
4 | * |
5 | * Copyright (C) 2005 - Paolo Maggi |
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, write to the |
19 | * Free Software Foundation, Inc., 59 Temple Place - Suite 330, |
20 | * Boston, MA 02111-1307, USA. |
21 | */ |
22 | |
23 | /* |
24 | * Modified by the gedit Team, 2005. See the gedit AUTHORS file for a |
25 | * list of people on the gedit Team. |
26 | * See the gedit ChangeLog files for a list of changes. |
27 | * |
28 | * Modified by the GTK+ Team, 2008-2009. |
29 | */ |
30 | |
31 | #ifndef __GTK_INFO_BAR_H__ |
32 | #define __GTK_INFO_BAR_H__ |
33 | |
34 | #if !defined (__GTK_H_INSIDE__) && !defined (GTK_COMPILATION) |
35 | #error "Only <gtk/gtk.h> can be included directly." |
36 | #endif |
37 | |
38 | #include <gtk/gtkhbox.h> |
39 | #include <gtk/gtkenums.h> |
40 | |
41 | G_BEGIN_DECLS |
42 | |
43 | /* |
44 | * Type checking and casting macros |
45 | */ |
46 | #define GTK_TYPE_INFO_BAR (gtk_info_bar_get_type()) |
47 | #define GTK_INFO_BAR(obj) (G_TYPE_CHECK_INSTANCE_CAST((obj), GTK_TYPE_INFO_BAR, GtkInfoBar)) |
48 | #define GTK_INFO_BAR_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST((klass), GTK_TYPE_INFO_BAR, GtkInfoBarClass)) |
49 | #define GTK_IS_INFO_BAR(obj) (G_TYPE_CHECK_INSTANCE_TYPE((obj), GTK_TYPE_INFO_BAR)) |
50 | #define GTK_IS_INFO_BAR_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), GTK_TYPE_INFO_BAR)) |
51 | #define GTK_INFO_BAR_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS((obj), GTK_TYPE_INFO_BAR, GtkInfoBarClass)) |
52 | |
53 | |
54 | typedef struct _GtkInfoBarPrivate GtkInfoBarPrivate; |
55 | typedef struct _GtkInfoBarClass GtkInfoBarClass; |
56 | typedef struct _GtkInfoBar GtkInfoBar; |
57 | |
58 | |
59 | struct _GtkInfoBar |
60 | { |
61 | GtkHBox parent; |
62 | |
63 | /*< private > */ |
64 | GtkInfoBarPrivate *priv; |
65 | }; |
66 | |
67 | |
68 | struct _GtkInfoBarClass |
69 | { |
70 | GtkHBoxClass parent_class; |
71 | |
72 | /* Signals */ |
73 | void (* response) (GtkInfoBar *info_bar, gint response_id); |
74 | |
75 | /* Keybinding signals */ |
76 | void (* close) (GtkInfoBar *info_bar); |
77 | |
78 | /* Padding for future expansion */ |
79 | void (*_gtk_reserved1) (void); |
80 | void (*_gtk_reserved2) (void); |
81 | void (*_gtk_reserved3) (void); |
82 | void (*_gtk_reserved4) (void); |
83 | void (*_gtk_reserved5) (void); |
84 | void (*_gtk_reserved6) (void); |
85 | }; |
86 | |
87 | GType gtk_info_bar_get_type (void) G_GNUC_CONST; |
88 | GtkWidget *gtk_info_bar_new (void); |
89 | |
90 | GtkWidget *gtk_info_bar_new_with_buttons (const gchar *first_button_text, |
91 | ...); |
92 | |
93 | GtkWidget *gtk_info_bar_get_action_area (GtkInfoBar *info_bar); |
94 | GtkWidget *gtk_info_bar_get_content_area (GtkInfoBar *info_bar); |
95 | void gtk_info_bar_add_action_widget (GtkInfoBar *info_bar, |
96 | GtkWidget *child, |
97 | gint response_id); |
98 | GtkWidget *gtk_info_bar_add_button (GtkInfoBar *info_bar, |
99 | const gchar *button_text, |
100 | gint response_id); |
101 | void gtk_info_bar_add_buttons (GtkInfoBar *info_bar, |
102 | const gchar *first_button_text, |
103 | ...); |
104 | void gtk_info_bar_set_response_sensitive (GtkInfoBar *info_bar, |
105 | gint response_id, |
106 | gboolean setting); |
107 | void gtk_info_bar_set_default_response (GtkInfoBar *info_bar, |
108 | gint response_id); |
109 | |
110 | /* Emit response signal */ |
111 | void gtk_info_bar_response (GtkInfoBar *info_bar, |
112 | gint response_id); |
113 | |
114 | void gtk_info_bar_set_message_type (GtkInfoBar *info_bar, |
115 | GtkMessageType message_type); |
116 | GtkMessageType gtk_info_bar_get_message_type (GtkInfoBar *info_bar); |
117 | |
118 | G_END_DECLS |
119 | |
120 | #endif /* __GTK_INFO_BAR_H__ */ |
121 | |