package Implements_Buildable is new Glib.Types.Implements (Gtk.Buildable.Gtk_Buildable, Gtk_Button_Box_Record, Gtk_Button_Box);
package Implements_Orientable is new Glib.Types.Implements (Gtk.Orientable.Gtk_Orientable, Gtk_Button_Box_Record, Gtk_Button_Box);
type Gtk_Button_Box_Record is new Gtk_Box_Record with null record;
type Gtk_Button_Box is access all Gtk_Button_Box_Record'Class;
Layout_Style_Property : constant Gtk.Enums.Property_Gtk_Button_Box_Style;
function Get_Type return Glib.GType;
procedure Get_Child_Ipadding
( | Widget | : access Gtk_Button_Box_Record; |
Ipad_X | : out Gint; | |
Ipad_Y | : out Gint); |
procedure Set_Child_Ipadding
( | Widget | : access Gtk_Button_Box_Record; |
Ipad_X | : Gint; | |
Ipad_Y | : Gint); |
function Get_Child_Secondary
( | Widget | : access Gtk_Button_Box_Record; |
Child | : access Gtk.Widget.Gtk_Widget_Record'Class) return Boolean; |
procedure Set_Child_Secondary
( | Widget | : access Gtk_Button_Box_Record; |
Child | : access Gtk.Widget.Gtk_Widget_Record'Class; | |
Is_Secondary | : Boolean); |
procedure Get_Child_Size
( | Widget | : access Gtk_Button_Box_Record; |
Min_Width | : out Gint; | |
Min_Height | : out Gint); |
procedure Set_Child_Size
( | Widget | : access Gtk_Button_Box_Record; |
Min_Width | : Gint; | |
Min_Height | : Gint); |
function Get_Layout
( | Widget | : access Gtk_Button_Box_Record) return Gtk.Enums.Gtk_Button_Box_Style; |
procedure Set_Layout
( | Widget | : access Gtk_Button_Box_Record; |
Layout_Style | : Gtk.Enums.Gtk_Button_Box_Style); |
function Get_Orientation
( | Self | : access Gtk_Button_Box_Record) return Gtk.Enums.Gtk_Orientation; |
procedure Set_Orientation
( | Self | : access Gtk_Button_Box_Record; |
Orientation | : Gtk.Enums.Gtk_Orientation); |
function "+"
( | Widget | : access Gtk_Button_Box_Record'Class) return Gtk.Buildable.Gtk_Buildable renames Implements_Buildable.To_Interface; |
function "-"
( | Interf | : Gtk.Buildable.Gtk_Buildable) return Gtk_Button_Box renames Implements_Buildable.To_Object; |
function "+"
( | Widget | : access Gtk_Button_Box_Record'Class) return Gtk.Orientable.Gtk_Orientable renames Implements_Orientable.To_Interface; |
function "-"
( | Interf | : Gtk.Orientable.Gtk_Orientable) return Gtk_Button_Box renames Implements_Orientable.To_Object; |
A Gtk_Button_Box is a special type of Gtk_Box specially tailored to contain buttons.
This is only a base class for Gtk_Hbutton_Box and Gtk_Vbutton_Box which provide a way to arrange their children horizontally (resp. vertically).
You can not instantiate a Gtk_Button_Box directly, and have to use one the above two instead.