----------------------------------------------------------------------- -- GtkAda - Ada95 binding for Gtk+/Gnome -- -- -- -- Copyright (C) 1998-2000 E. Briot, J. Brobecker and A. Charlet -- -- Copyright (C) 2000-2002 ACT-Europe -- -- -- -- 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. -- -- -- -- As a special exception, if other files instantiate generics from -- -- this unit, or you link this unit with other files to produce an -- -- executable, this unit does not by itself cause the resulting -- -- executable to be covered by the GNU General Public License. This -- -- exception does not however invalidate any other reasons why the -- -- executable file might be covered by the GNU Public License. -- ----------------------------------------------------------------------- with System; package body Gtk.Button_Box is -------------------- -- Get_Child_Size -- -------------------- procedure Get_Child_Size (Button_Box : access Gtk_Button_Box_Record; Min_Width : out Gint; Min_Height : out Gint) is procedure Internal (Widget : System.Address; Min_Width : out Gint; Min_Height : out Gint); pragma Import (C, Internal, "gtk_button_box_get_child_size"); begin Internal (Get_Object (Button_Box), Min_Width, Min_Height); end Get_Child_Size; ---------------- -- Get_Layout -- ---------------- function Get_Layout (Button_Box : access Gtk_Button_Box_Record) return Enums.Gtk_Button_Box_Style is function Internal (Widget : System.Address) return Gint; pragma Import (C, Internal, "gtk_button_box_get_layout"); begin return Enums.Gtk_Button_Box_Style'Val (Internal (Get_Object (Button_Box))); end Get_Layout; ------------------------- -- Set_Child_Secondary -- ------------------------- procedure Set_Child_Secondary (Button_Box : access Gtk_Button_Box_Record; Child : access Gtk.Widget.Gtk_Widget_Record'Class; Is_Secondary : Boolean) is procedure Internal (Widget : System.Address; Child : System.Address; Is_Secondary : Gboolean); pragma Import (C, Internal, "gtk_button_box_set_child_secondary"); begin Internal (Get_Object (Button_Box), Get_Object (Child), Boolean'Pos (Is_Secondary)); end Set_Child_Secondary; -------------------- -- Set_Child_Size -- -------------------- procedure Set_Child_Size (Button_Box : access Gtk_Button_Box_Record; Min_Width : Gint; Min_Height : Gint) is procedure Internal (Widget : System.Address; Min_Width : Gint; Min_Height : Gint); pragma Import (C, Internal, "gtk_button_box_set_child_size"); begin Internal (Get_Object (Button_Box), Min_Width, Min_Height); end Set_Child_Size; ---------------- -- Set_Layout -- ---------------- procedure Set_Layout (Button_Box : access Gtk_Button_Box_Record; Layout_Style : Enums.Gtk_Button_Box_Style) is procedure Internal (Widget : System.Address; Layout_Style : Enums.Gtk_Button_Box_Style); pragma Import (C, Internal, "gtk_button_box_set_layout"); begin Internal (Get_Object (Button_Box), Layout_Style); end Set_Layout; ------------------------ -- Set_Child_Ipadding -- ------------------------ procedure Set_Child_Ipadding (Button_Box : access Gtk_Button_Box_Record; Ipad_X : Gint; Ipad_Y : Gint) is pragma Unreferenced (Button_Box, Ipad_X, Ipad_Y); begin null; end Set_Child_Ipadding; end Gtk.Button_Box;