Sets our main struct and passes it to the parent class
Creates a new GtkInfoBar object. Since 2.18
Add an activatable widget to the action area of a GtkInfoBar, connecting a signal handler that will emit the "response" signal on the message area when the widget is activated. The widget is appended to the end of the message areas action area. Since 2.18
Adds a button with the given text and sets things up so that clicking the button will emit the "response" signal with the given response_id. The button is appended to the end of the info bars's action area. The button widget is returned, but usually you don't need it. Since 2.18
The ::close signal is a keybinding signal which gets emitted when the user uses a keybinding to dismiss the info bar. The default binding for this signal is the Escape key. Since 2.18
Emitted when an action widget is clicked or the application programmer calls gtk_dialog_response(). The response_id depends on which action widget was clicked. Since 2.18 See Also GtkStatusbar, GtkMessageDialog
Returns the action area of info_bar. Since 2.18
Returns the content area of info_bar. Since 2.18
Returns the message type of the message area. Since 2.18
Returns whether the widget will display a standard close button.
the main Gtk struct as a void*
Emits the 'response' signal with the given response_id. Since 2.18
Sets the last widget in the info bar's action area with the given response_id as the default widget for the dialog. Pressing "Enter" normally activates the default widget. Note that this function currently requires info_bar to be added to a widget hierarchy. Since 2.18
Sets the message type of the message area. GTK+ uses this type to determine what color to use when drawing the message area. Since 2.18
Calls gtk_widget_set_sensitive (widget, setting) for each widget in the info bars's action area with the given response_id. A convenient way to sensitize/desensitize dialog buttons. Since 2.18
If true, a standard close button is shown. When clicked it emits the response GTK_RESPONSE_CLOSE.
the main Gtk struct
the main Gtk struct
the main Gtk struct as a void*
Adds child to box, packed with reference to the start of box. The child is packed after any other child packed with reference to the start of box.
Adds child to box, packed with reference to the end of box. The child is packed after (away from end of) any other child packed with reference to the end of box.
Returns whether the box is homogeneous (all children are the same size). See gtk_box_set_homogeneous().
Sets the "homogeneous" property of box, controlling whether or not all children of box are given equal space in the box.
Gets the value set by gtk_box_set_spacing().
Sets the "spacing" property of box, which is the number of pixels to place between children of box.
Moves child to a new position in the list of box children. The list is the children field of GtkBox, and contains both widgets packed GTK_PACK_START as well as widgets packed GTK_PACK_END, in the order that these widgets were added to box. A widget's position in the box children list determines where the widget is packed into box. A child widget at some position in the list will be packed just after all other widgets of the same packing type that appear earlier in the list.
Obtains information about how child is packed into box.
Sets the way child is packed into box.
Gets the value set by gtk_box_set_baseline_position().
Sets the baseline position of a box. This affects only horizontal boxes with at least one baseline aligned child. If there is more vertical space availible than requested, and the baseline is not allocated by the parent then position is used to allocate the baseline wrt the extra space available.
GtkInfoBar is a widget that can be used to show messages to the user without showing a dialog. It is often temporarily shown at the top or bottom of a document. In contrast to GtkDialog, which has a action area at the bottom, GtkInfoBar has an action area at the side.
The API of GtkInfoBar is very similar to GtkDialog, allowing you to add buttons to the action area with gtk_info_bar_add_button() or gtk_info_bar_new_with_buttons(). The sensitivity of action widgets can be controlled with gtk_info_bar_set_response_sensitive(). To add widgets to the main content area of a GtkInfoBar, use gtk_info_bar_get_content_area() and add your widgets to the container.
Similar to GtkMessageDialog, the contents of a GtkInfoBar can by classified as error message, warning, informational message, etc, by using gtk_info_bar_set_message_type(). GTK+ may use the message type to determine how the message is displayed.
GtkInfoBar as GtkBuildable
The GtkInfoBar implementation of the GtkBuildable interface exposes the content area and action area as internal children with the names "content_area" and "action_area".
GtkInfoBar supports a custom <action-widgets> element, which can contain multiple <action-widget> elements. The "response" attribute specifies a numeric response, and the content of the element is the id of widget (which should be a child of the dialogs action_area).