/usr/share/ada/adainclude/gtkada/gtk-arguments.adb is in libgtkada16.1.0-dev 17.0.2017-2.
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 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 | ------------------------------------------------------------------------------
-- GtkAda - Ada95 binding for Gtk+/Gnome --
-- --
-- Copyright (C) 1998-2000 E. Briot, J. Brobecker and A. Charlet --
-- Copyright (C) 1998-2017, AdaCore --
-- --
-- This library is free software; you can redistribute it and/or modify it --
-- under terms of the GNU General Public License as published by the Free --
-- Software Foundation; either version 3, 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 MERCHAN- --
-- TABILITY or FITNESS FOR A PARTICULAR PURPOSE. --
-- --
-- --
-- --
-- --
-- --
-- You should have received a copy of the GNU General Public License and --
-- a copy of the GCC Runtime Library Exception along with this program; --
-- see the files COPYING3 and COPYING.RUNTIME respectively. If not, see --
-- <http://www.gnu.org/licenses/>. --
-- --
------------------------------------------------------------------------------
with Ada.Unchecked_Conversion;
package body Gtk.Arguments is
use Glib.Values;
type Cairo_Rectangle_Int_Access is access Cairo.Region.Cairo_Rectangle_Int;
type Gint_Access is access Gint;
type Gdouble_Access is access Gdouble;
-------------
-- To_Gint --
-------------
function To_Gint (Args : Gtk_Args; Num : Positive) return Gint is
begin
return Get_Int (Nth (Args, Guint (Num)));
end To_Gint;
--------------
-- To_Guint --
--------------
function To_Guint (Args : Gtk_Args; Num : Positive) return Guint is
begin
return Get_Uint (Nth (Args, Guint (Num)));
end To_Guint;
----------------
-- To_Boolean --
----------------
function To_Boolean (Args : Gtk_Args; Num : Positive) return Boolean is
begin
return Get_Boolean (Nth (Args, Guint (Num)));
end To_Boolean;
---------------
-- To_Object --
---------------
function To_Object (Args : Gtk_Args; Num : Positive)
return Glib.Object.GObject
is
Stub : Glib.Object.GObject_Record;
begin
return Get_User_Data (Get_Address (Nth (Args, Guint (Num))), Stub);
end To_Object;
----------------
-- To_C_Proxy --
----------------
function To_C_Proxy (Args : Gtk_Args; Num : Positive) return Glib.C_Proxy is
begin
return Get_Proxy (Nth (Args, Guint (Num)));
end To_C_Proxy;
--------------
-- To_Event --
--------------
function To_Event (Args : Gtk_Args; Num : Positive)
return Gdk.Event.Gdk_Event
is
function Convert is new Ada.Unchecked_Conversion
(C_Proxy, Gdk.Event.Gdk_Event);
Proxy : constant C_Proxy := Get_Proxy (Nth (Args, Guint (Num)));
begin
return Convert (Proxy);
end To_Event;
----------------------
-- To_Notebook_Page --
----------------------
function To_Notebook_Page
(Args : Gtk_Args; Num : Positive) return Gtk_Notebook_Page is
begin
return Gtk_Notebook_Page (Get_Proxy (Nth (Args, Guint (Num))));
end To_Notebook_Page;
-------------------------------------
-- Unchecked_To_Gdk_Event_Sequence --
-------------------------------------
function Unchecked_To_Gdk_Event_Sequence
(Args : Glib.Values.C_GValues; Num : Guint)
return Gdk.Event.Gdk_Event_Sequence
is
Val : GValue;
begin
Unsafe_Nth (Args, Num, Val);
return Gdk.Event.Gdk_Event_Sequence (Get_Proxy (Val));
end Unchecked_To_Gdk_Event_Sequence;
----------------
-- To_Address --
----------------
function To_Address (Args : Gtk_Args; Num : Positive)
return System.Address is
begin
return Get_Address (Nth (Args, Guint (Num)));
end To_Address;
--------------------
-- To_Requisition --
--------------------
function To_Requisition
(Args : Gtk_Args; Num : Positive) return Gtk.Widget.Gtk_Requisition_Access
is
pragma Warnings (Off);
-- This UC is safe aliasing-wise, so kill warning
function Internal is new Ada.Unchecked_Conversion
(System.Address, Gtk.Widget.Gtk_Requisition_Access);
pragma Warnings (On);
begin
return Internal (Get_Address (Nth (Args, Guint (Num))));
end To_Requisition;
----------------
-- To_Address --
----------------
function To_Allocation
(Args : Gtk_Args; Num : Positive)
return Gtk.Widget.Gtk_Allocation_Access
is
pragma Warnings (Off);
-- This UC is safe aliasing-wise, so kill warning
function Internal is new Ada.Unchecked_Conversion
(System.Address, Gtk.Widget.Gtk_Allocation_Access);
pragma Warnings (On);
begin
return Internal (Get_Address (Nth (Args, Guint (Num))));
end To_Allocation;
---------------
-- To_String --
---------------
function To_String (Args : Gtk_Args; Num : Positive) return UTF8_String is
begin
return Get_String (Nth (Args, Guint (Num)));
end To_String;
--------------------------
-- Unchecked_To_Boolean --
--------------------------
function Unchecked_To_Boolean
(Args : Glib.Values.C_GValues; Num : Guint) return Boolean
is
Val : GValue;
begin
Unsafe_Nth (Args, Num, Val);
return Get_Boolean (Val);
end Unchecked_To_Boolean;
--------------------------
-- Unchecked_To_Gdouble --
--------------------------
function Unchecked_To_Gdouble
(Args : Glib.Values.C_GValues; Num : Guint) return Gdouble
is
Val : GValue;
begin
Unsafe_Nth (Args, Num, Val);
return Get_Double (Val);
end Unchecked_To_Gdouble;
-----------------------
-- Unchecked_To_Gint --
-----------------------
function Unchecked_To_Gint
(Args : Glib.Values.C_GValues; Num : Guint) return Gint
is
Val : GValue;
begin
Unsafe_Nth (Args, Num, Val);
return Get_Int (Val);
end Unchecked_To_Gint;
------------------------------
-- Unchecked_To_Gint_Access --
------------------------------
function Unchecked_To_Gint_Access
(Args : Glib.Values.C_GValues; Num : Guint) return access Gint
is
function Convert is new Ada.Unchecked_Conversion
(System.Address, Gint_Access);
Val : GValue;
begin
Unsafe_Nth (Args, Num, Val);
return Convert (Get_Address (Val));
end Unchecked_To_Gint_Access;
---------------------------------
-- Unchecked_To_Gdouble_Access --
---------------------------------
function Unchecked_To_Gdouble_Access
(Args : Glib.Values.C_GValues; Num : Guint) return access Gdouble
is
function Convert is new Ada.Unchecked_Conversion
(System.Address, Gdouble_Access);
Val : GValue;
begin
Unsafe_Nth (Args, Num, Val);
return Convert (Get_Address (Val));
end Unchecked_To_Gdouble_Access;
------------------------
-- Unchecked_To_Guint --
------------------------
function Unchecked_To_Guint
(Args : Glib.Values.C_GValues; Num : Guint) return Guint
is
Val : GValue;
begin
Unsafe_Nth (Args, Num, Val);
return Get_Uint (Val);
end Unchecked_To_Guint;
-----------------------------
-- Unchecked_To_Context_Id --
-----------------------------
function Unchecked_To_Context_Id
(Args : Glib.Values.C_GValues; Num : Guint)
return Gtk.Status_Bar.Context_Id
is
Val : GValue;
begin
Unsafe_Nth (Args, Num, Val);
return Gtk.Status_Bar.Context_Id (Get_Uint (Val));
end Unchecked_To_Context_Id;
------------------------------
-- Unchecked_To_UTF8_String --
------------------------------
function Unchecked_To_UTF8_String
(Args : Glib.Values.C_GValues; Num : Guint) return UTF8_String
is
Val : GValue;
begin
Unsafe_Nth (Args, Num, Val);
return Get_String (Val);
end Unchecked_To_UTF8_String;
--------------------------
-- Unchecked_To_Address --
--------------------------
function Unchecked_To_Address
(Args : Glib.Values.C_GValues; Num : Guint) return System.Address
is
Val : GValue;
begin
Unsafe_Nth (Args, Num, Val);
return Get_Address (Val);
end Unchecked_To_Address;
-------------------------
-- Unchecked_To_Object --
-------------------------
function Unchecked_To_Object
(Args : Glib.Values.C_GValues; Num : Guint) return Glib.Object.GObject
is
Val : GValue;
begin
Unsafe_Nth (Args, Num, Val);
return Glib.Object.Convert (Get_Address (Val));
end Unchecked_To_Object;
----------------------------
-- Unchecked_To_Interface --
----------------------------
function Unchecked_To_Interface
(Args : Glib.Values.C_GValues; Num : Guint)
return Glib.Types.GType_Interface
is
Val : GValue;
begin
Unsafe_Nth (Args, Num, Val);
return Glib.Types.GType_Interface (Get_Address (Val));
end Unchecked_To_Interface;
---------------------------------------------
-- Unchecked_To_Cairo_Rectangle_Int_Access --
---------------------------------------------
function Unchecked_To_Cairo_Rectangle_Int_Access
(Args : Glib.Values.C_GValues; Num : Guint)
return access Cairo.Region.Cairo_Rectangle_Int
is
function Convert is new Ada.Unchecked_Conversion
(C_Proxy, Cairo_Rectangle_Int_Access);
Val : GValue;
begin
Unsafe_Nth (Args, Num, Val);
return Convert (Get_Proxy (Val));
end Unchecked_To_Cairo_Rectangle_Int_Access;
--------------------------------------
-- Unchecked_To_Cairo_Rectangle_Int --
--------------------------------------
function Unchecked_To_Cairo_Rectangle_Int
(Args : Glib.Values.C_GValues; Num : Guint)
return Cairo.Region.Cairo_Rectangle_Int
is
function Convert is new Ada.Unchecked_Conversion
(C_Proxy, Cairo_Rectangle_Int_Access);
Val : GValue;
begin
Unsafe_Nth (Args, Num, Val);
return Convert (Get_Proxy (Val)).all;
end Unchecked_To_Cairo_Rectangle_Int;
--------------------------------
-- Unchecked_To_Cairo_Context --
--------------------------------
function Unchecked_To_Cairo_Context
(Args : Glib.Values.C_GValues; Num : Guint)
return Cairo.Cairo_Context
is
Val : GValue;
begin
Unsafe_Nth (Args, Num, Val);
return Cairo.Get_Context (Val);
end Unchecked_To_Cairo_Context;
---------------------------
-- Unchecked_To_Gdk_RGBA --
---------------------------
function Unchecked_To_Gdk_RGBA
(Args : Glib.Values.C_GValues; Num : Guint) return Gdk.RGBA.Gdk_RGBA
is
Val : GValue;
begin
Unsafe_Nth (Args, Num, Val);
return Gdk.RGBA.Get_Value (Val);
end Unchecked_To_Gdk_RGBA;
-------------------------------
-- Unchecked_To_Gdk_Key_Type --
-------------------------------
function Unchecked_To_Gdk_Key_Type
(Args : Glib.Values.C_GValues; Num : Guint) return Gdk.Types.Gdk_Key_Type
is
begin
return Gdk.Types.Gdk_Key_Type (Unchecked_To_Guint (Args, Num));
end Unchecked_To_Gdk_Key_Type;
end Gtk.Arguments;
|