----------------------------------------------------------------------- -- GtkAda - Ada95 binding for Gtk+/Gnome -- -- -- -- Copyright (C) 1998-2000 E. Briot, J. Brobecker and A. Charlet -- -- Copyright (C) 2000-2011, AdaCore -- -- -- -- This library is free software; you can redistribute it and/or -- -- modify it under the terms of the GNU General Public -- -- License as published by the Free Software Foundation; either -- -- version 2 of the License, or (at your option) any later version. -- -- -- -- This library is distributed in the hope that it will be useful, -- -- but WITHOUT ANY WARRANTY; without even the implied warranty of -- -- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -- -- General Public License for more details. -- -- -- -- You should have received a copy of the GNU General Public -- -- License along with this library; if not, write to the -- -- Free Software Foundation, Inc., 59 Temple Place - Suite 330, -- -- Boston, MA 02111-1307, USA. -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- ----------------------------------------------------------------------- pragma Style_Checks (Off); pragma Warnings (Off, "*is already use-visible*"); with Glib.Type_Conversion_Hooks; use Glib.Type_Conversion_Hooks; package body Gtk.Hbutton_Box is package Type_Conversion is new Glib.Type_Conversion_Hooks.Hook_Registrator (Get_Type'Access, Gtk_Hbutton_Box_Record); pragma Unreferenced (Type_Conversion); ------------- -- Gtk_New -- ------------- procedure Gtk_New (Widget : out Gtk_Hbutton_Box) is begin Widget := new Gtk_Hbutton_Box_Record; Gtk.Hbutton_Box.Initialize (Widget); end Gtk_New; ---------------- -- Initialize -- ---------------- procedure Initialize (Widget : access Gtk_Hbutton_Box_Record'Class) is function Internal return System.Address; pragma Import (C, Internal, "gtk_hbutton_box_new"); begin Set_Object (Widget, Internal); end Initialize; ------------------------ -- Get_Layout_Default -- ------------------------ function Get_Layout_Default return Gtk.Enums.Gtk_Button_Box_Style is function Internal return Integer; pragma Import (C, Internal, "gtk_hbutton_box_get_layout_default"); begin return Gtk.Enums.Gtk_Button_Box_Style'Val (Internal); end Get_Layout_Default; ------------------------- -- Get_Spacing_Default -- ------------------------- function Get_Spacing_Default return Gint is function Internal return Gint; pragma Import (C, Internal, "gtk_hbutton_box_get_spacing_default"); begin return Internal; end Get_Spacing_Default; ------------------------ -- Set_Layout_Default -- ------------------------ procedure Set_Layout_Default (Layout : Gtk.Enums.Gtk_Button_Box_Style) is procedure Internal (Layout : Integer); pragma Import (C, Internal, "gtk_hbutton_box_set_layout_default"); begin Internal (Gtk.Enums.Gtk_Button_Box_Style'Pos (Layout)); end Set_Layout_Default; ------------------------- -- Set_Spacing_Default -- ------------------------- procedure Set_Spacing_Default (Spacing : Gint) is procedure Internal (Spacing : Gint); pragma Import (C, Internal, "gtk_hbutton_box_set_spacing_default"); begin Internal (Spacing); end Set_Spacing_Default; --------------------- -- Get_Orientation -- --------------------- function Get_Orientation (Self : access Gtk_Hbutton_Box_Record) return Gtk.Enums.Gtk_Orientation is function Internal (Self : System.Address) return Integer; pragma Import (C, Internal, "gtk_orientable_get_orientation"); begin return Gtk.Enums.Gtk_Orientation'Val (Internal (Get_Object (Self))); end Get_Orientation; --------------------- -- Set_Orientation -- --------------------- procedure Set_Orientation (Self : access Gtk_Hbutton_Box_Record; Orientation : Gtk.Enums.Gtk_Orientation) is procedure Internal (Self : System.Address; Orientation : Integer); pragma Import (C, Internal, "gtk_orientable_set_orientation"); begin Internal (Get_Object (Self), Gtk.Enums.Gtk_Orientation'Pos (Orientation)); end Set_Orientation; end Gtk.Hbutton_Box;