/usr/share/ada/adainclude/gtkada/gtk-object.adb is in libgtkada2.24.1-dev 2.24.1-14.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 | -----------------------------------------------------------------------
-- GtkAda - Ada95 binding for Gtk+/Gnome --
-- --
-- Copyright (C) 1998-2000 E. Briot, J. Brobecker and A. Charlet --
-- Copyright (C) 2000-2008, 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. --
-- --
-----------------------------------------------------------------------
with System;
package body Gtk.Object is
-------------
-- Convert --
-------------
function Convert (W : Gtk_Object) return System.Address is
begin
if W = null then
return System.Null_Address;
else
return Get_Object (W);
end if;
end Convert;
-------------
-- Convert --
-------------
function Convert (W : System.Address) return Gtk_Object is
Stub : Gtk_Object_Record;
begin
return Gtk_Object (Get_User_Data (W, Stub));
end Convert;
---------------------------
-- In_Destruction_Is_Set --
---------------------------
function In_Destruction_Is_Set
(Object : access Gtk_Object_Record'Class) return Boolean
is
use type System.Address;
begin
return Get_Object (Object) = System.Null_Address
or else Flag_Is_Set (Object, In_Destruction);
end In_Destruction_Is_Set;
-------------
-- Destroy --
-------------
procedure Destroy (Object : access Gtk_Object_Record) is
procedure Internal (Object : System.Address);
pragma Import (C, Internal, "gtk_object_destroy");
procedure Unref_Internal (Object : System.Address);
pragma Import (C, Unref_Internal, "g_object_unref");
-- External binding: g_object_unref
Ptr : constant System.Address := Get_Object (Object);
use type System.Address;
begin
-- Keep a reference on the object, so that the Ada structure is
-- never automatically deleted when the C object is.
-- We can't reset the content of Object to System.Null_Address before
-- calling the C function, because we want the user's destroy
-- callbacks to be called with the appropriate object.
Ref (Object);
Internal (Ptr);
-- We then can make sure that the object won't be referenced any
-- more, (The Ada structure won't be free before the ref count goes
-- down to 0, and we don't want the user to use a deleted object...).
Set_Object (Object, System.Null_Address);
-- Free the reference we had. In most cases, this results in the
-- object being freed. We can't use directly Unref, since the Ptr
-- field for Object is Null_Address.
Unref_Internal (Ptr);
end Destroy;
-----------
-- Flags --
-----------
function Flags (Object : access Gtk_Object_Record) return Guint32 is
function Internal (Object : System.Address) return Guint32;
pragma Import (C, Internal, "ada_object_flags");
begin
return Internal (Get_Object (Object));
end Flags;
--------------
-- Floating --
--------------
function Floating_Is_Set
(Object : access Gtk_Object_Record'Class) return Boolean is
begin
return Flag_Is_Set (Object, Floating);
end Floating_Is_Set;
--------------
-- Get_Type --
--------------
function Get_Type (Object : access Gtk_Object_Record) return Gtk_Type is
function Internal (Object : System.Address) return Gtk_Type;
pragma Import (C, Internal, "ada_gobject_get_type");
begin
return Internal (Get_Object (Object));
end Get_Type;
---------------
-- Set_Flags --
---------------
procedure Set_Flags (Object : access Gtk_Object_Record; Flags : Guint32) is
procedure Internal (Object : System.Address; Flags : Guint32);
pragma Import (C, Internal, "ada_object_set_flags");
begin
Internal (Get_Object (Object), Flags);
end Set_Flags;
----------
-- Sink --
----------
procedure Sink (Object : access Gtk_Object_Record) is
procedure Internal (Object : System.Address);
pragma Import (C, Internal, "gtk_object_sink");
begin
Internal (Get_Object (Object));
end Sink;
-----------------
-- Unset_Flags --
-----------------
procedure Unset_Flags
(Object : access Gtk_Object_Record; Flags : Guint32)
is
procedure Internal (Object : System.Address; Flags : Guint32);
pragma Import (C, Internal, "ada_object_unset_flags");
begin
Internal (Get_Object (Object), Flags);
end Unset_Flags;
-----------------
-- Flag_Is_Set --
-----------------
function Flag_Is_Set
(Object : access Gtk_Object_Record; Flag : Guint32) return Boolean
is
function Internal (Object : System.Address; Flag : Guint32) return Gint;
pragma Import (C, Internal, "ada_object_flag_is_set");
begin
return Boolean'Val (Internal (Get_Object (Object), Flag));
end Flag_Is_Set;
end Gtk.Object;
|