----------------------------------------------------------------------- -- 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*"); package body Gtk.Activatable is --------------------------- -- Do_Set_Related_Action -- --------------------------- procedure Do_Set_Related_Action (Self : Gtk_Activatable; Action : access Gtk.Action.Gtk_Action_Record'Class) is procedure Internal (Self : Gtk_Activatable; Action : System.Address); pragma Import (C, Internal, "gtk_activatable_do_set_related_action"); begin Internal (Self, Get_Object_Or_Null (GObject (Action))); end Do_Set_Related_Action; ------------------------ -- Get_Related_Action -- ------------------------ function Get_Related_Action (Self : Gtk_Activatable) return Gtk.Action.Gtk_Action is function Internal (Self : Gtk_Activatable) return System.Address; pragma Import (C, Internal, "gtk_activatable_get_related_action"); Stub : Gtk.Action.Gtk_Action_Record; begin return Gtk.Action.Gtk_Action (Get_User_Data (Internal (Self), Stub)); end Get_Related_Action; ------------------------------- -- Get_Use_Action_Appearance -- ------------------------------- function Get_Use_Action_Appearance (Self : Gtk_Activatable) return Boolean is function Internal (Self : Gtk_Activatable) return Integer; pragma Import (C, Internal, "gtk_activatable_get_use_action_appearance"); begin return Boolean'Val (Internal (Self)); end Get_Use_Action_Appearance; ------------------------ -- Set_Related_Action -- ------------------------ procedure Set_Related_Action (Self : Gtk_Activatable; Action : access Gtk.Action.Gtk_Action_Record'Class) is procedure Internal (Self : Gtk_Activatable; Action : System.Address); pragma Import (C, Internal, "gtk_activatable_set_related_action"); begin Internal (Self, Get_Object_Or_Null (GObject (Action))); end Set_Related_Action; ------------------------------- -- Set_Use_Action_Appearance -- ------------------------------- procedure Set_Use_Action_Appearance (Self : Gtk_Activatable; Use_Appearance : Boolean) is procedure Internal (Self : Gtk_Activatable; Use_Appearance : Integer); pragma Import (C, Internal, "gtk_activatable_set_use_action_appearance"); begin Internal (Self, Boolean'Pos (Use_Appearance)); end Set_Use_Action_Appearance; ---------------------------- -- Sync_Action_Properties -- ---------------------------- procedure Sync_Action_Properties (Self : Gtk_Activatable; Action : access Gtk.Action.Gtk_Action_Record'Class) is procedure Internal (Self : Gtk_Activatable; Action : System.Address); pragma Import (C, Internal, "gtk_activatable_sync_action_properties"); begin Internal (Self, Get_Object_Or_Null (GObject (Action))); end Sync_Action_Properties; end Gtk.Activatable;