Imported Upstream version 1.0beta1
[platform/upstream/syncevolution.git] / src / gtk-ui / gtkinfobar.h
1 /*
2  * gtkinfobar.h
3  * This file is from GTK+, used here when GTK version < 2.18
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 #include "config.h"
32
33 #ifndef GTK_2_18
34
35 #ifndef __GTK_INFO_BAR_H__
36 #define __GTK_INFO_BAR_H__
37
38 #include <gtk/gtk.h>
39
40 G_BEGIN_DECLS
41
42 /*
43  * Type checking and casting macros
44  */
45 #define GTK_TYPE_INFO_BAR              (gtk_info_bar_get_type())
46 #define GTK_INFO_BAR(obj)              (G_TYPE_CHECK_INSTANCE_CAST((obj), GTK_TYPE_INFO_BAR, GtkInfoBar))
47 #define GTK_INFO_BAR_CLASS(klass)      (G_TYPE_CHECK_CLASS_CAST((klass), GTK_TYPE_INFO_BAR, GtkInfoBarClass))
48 #define GTK_IS_INFO_BAR(obj)           (G_TYPE_CHECK_INSTANCE_TYPE((obj), GTK_TYPE_INFO_BAR))
49 #define GTK_IS_INFO_BAR_CLASS(klass)   (G_TYPE_CHECK_CLASS_TYPE ((klass), GTK_TYPE_INFO_BAR))
50 #define GTK_INFO_BAR_GET_CLASS(obj)    (G_TYPE_INSTANCE_GET_CLASS((obj), GTK_TYPE_INFO_BAR, GtkInfoBarClass))
51
52
53 typedef struct _GtkInfoBarPrivate GtkInfoBarPrivate;
54 typedef struct _GtkInfoBarClass GtkInfoBarClass;
55 typedef struct _GtkInfoBar GtkInfoBar;
56
57
58 struct _GtkInfoBar
59 {
60   GtkHBox parent;
61
62   /*< private > */
63   GtkInfoBarPrivate *priv;
64 };
65
66
67 struct _GtkInfoBarClass
68 {
69   GtkHBoxClass parent_class;
70
71   /* Signals */
72   void (* response) (GtkInfoBar *info_bar, gint response_id);
73
74   /* Keybinding signals */
75   void (* close)    (GtkInfoBar *info_bar);
76
77   /* Padding for future expansion */
78   void (*_gtk_reserved1) (void);
79   void (*_gtk_reserved2) (void);
80   void (*_gtk_reserved3) (void);
81   void (*_gtk_reserved4) (void);
82   void (*_gtk_reserved5) (void);
83   void (*_gtk_reserved6) (void);
84 };
85
86 GType          gtk_info_bar_get_type               (void) G_GNUC_CONST;
87 GtkWidget     *gtk_info_bar_new                    (void);
88
89 GtkWidget     *gtk_info_bar_new_with_buttons       (const gchar    *first_button_text,
90                                                     ...);
91
92 GtkWidget     *gtk_info_bar_get_action_area        (GtkInfoBar     *info_bar);
93 GtkWidget     *gtk_info_bar_get_content_area       (GtkInfoBar     *info_bar);
94 void           gtk_info_bar_add_action_widget      (GtkInfoBar     *info_bar,
95                                                     GtkWidget      *child,
96                                                     gint            response_id);
97 GtkWidget     *gtk_info_bar_add_button             (GtkInfoBar     *info_bar,
98                                                     const gchar    *button_text,
99                                                     gint            response_id);
100 void           gtk_info_bar_add_buttons            (GtkInfoBar     *info_bar,
101                                                     const gchar    *first_button_text,
102                                                     ...);
103 void           gtk_info_bar_set_response_sensitive (GtkInfoBar     *info_bar,
104                                                     gint            response_id,
105                                                     gboolean        setting);
106 void           gtk_info_bar_set_default_response   (GtkInfoBar     *info_bar,
107                                                     gint            response_id);
108
109 /* Emit response signal */
110 void           gtk_info_bar_response               (GtkInfoBar     *info_bar,
111                                                     gint            response_id);
112
113 void           gtk_info_bar_set_message_type       (GtkInfoBar     *info_bar,
114                                                     GtkMessageType  message_type);
115 GtkMessageType gtk_info_bar_get_message_type       (GtkInfoBar     *info_bar);
116
117 G_END_DECLS
118
119 #endif  /* __GTK_INFO_BAR_H__  */
120
121 #endif