package Implements_Gtk_Buildable is new Glib.Types.Implements (Gtk.Buildable.Gtk_Buildable, Gtk_Button_Box_Record, Gtk_Button_Box);
package Implements_Gtk_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;
procedure Gtk_New
| ( | Widget | : out Gtk_Button_Box; |
| Orientation | : Gtk.Enums.Gtk_Orientation); |
procedure Initialize
| ( | Widget | : not null access Gtk_Button_Box_Record'Class; |
| Orientation | : Gtk.Enums.Gtk_Orientation); |
function Gtk_Button_Box_New
| ( | Orientation | : Gtk.Enums.Gtk_Orientation) return Gtk_Button_Box; |
function Get_Type return Glib.GType;
function Get_Child_Non_Homogeneous
| ( | Widget | : not null access Gtk_Button_Box_Record; |
| Child | : not null access Gtk.Widget.Gtk_Widget_Record'Class) return Boolean; |
procedure Set_Child_Non_Homogeneous
| ( | Widget | : not null access Gtk_Button_Box_Record; |
| Child | : not null access Gtk.Widget.Gtk_Widget_Record'Class; | |
| Non_Homogeneous | : Boolean); |
function Get_Child_Secondary
| ( | Widget | : not null access Gtk_Button_Box_Record; |
| Child | : not null access Gtk.Widget.Gtk_Widget_Record'Class) return Boolean; |
procedure Set_Child_Secondary
| ( | Widget | : not null access Gtk_Button_Box_Record; |
| Child | : not null access Gtk.Widget.Gtk_Widget_Record'Class; | |
| Is_Secondary | : Boolean); |
function Get_Layout
| ( | Widget | : not null access Gtk_Button_Box_Record) return Gtk.Enums.Gtk_Button_Box_Style; |
procedure Set_Layout
| ( | Widget | : not null access Gtk_Button_Box_Record; |
| Layout_Style | : Gtk.Enums.Gtk_Button_Box_Style); |
function Get_Orientation
| ( | Self | : not null access Gtk_Button_Box_Record) return Gtk.Enums.Gtk_Orientation; |
procedure Set_Orientation
| ( | Self | : not null 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_Gtk_Buildable.To_Interface; |
function "-"
| ( | Interf | : Gtk.Buildable.Gtk_Buildable) return Gtk_Button_Box renames Implements_Gtk_Buildable.To_Object; |
function "+"
| ( | Widget | : access Gtk_Button_Box_Record'Class) return Gtk.Orientable.Gtk_Orientable renames Implements_Gtk_Orientable.To_Interface; |
function "-"
| ( | Interf | : Gtk.Orientable.Gtk_Orientable) return Gtk_Button_Box renames Implements_Gtk_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.