This file is indexed.

/usr/share/ada/adainclude/gtkada/gdk-device.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
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
------------------------------------------------------------------------------
--                                                                          --
--      Copyright (C) 1998-2000 E. Briot, J. Brobecker and A. Charlet       --
--                     Copyright (C) 2000-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/>.                                          --
--                                                                          --
------------------------------------------------------------------------------

pragma Style_Checks (Off);
pragma Warnings (Off, "*is already use-visible*");
with Glib.Type_Conversion_Hooks; use Glib.Type_Conversion_Hooks;
with Gtkada.Bindings;            use Gtkada.Bindings;
pragma Warnings(Off);  --  might be unused
with Interfaces.C.Strings;       use Interfaces.C.Strings;
pragma Warnings(On);

package body Gdk.Device is

   function Convert (R : Gdk.Device.Gdk_Device) return System.Address is
   begin
      return Get_Object (R);
   end Convert;

   function Convert (R : System.Address) return Gdk.Device.Gdk_Device is
      Stub : Gdk.Device.Gdk_Device_Record;begin
         return Gdk.Device.Gdk_Device (Glib.Object.Get_User_Data (R, Stub));
      end Convert;

   procedure Set_Source_Device
     (Event  : Gdk.Event.Gdk_Event;
      Device : not null access Gdk_Device_Record)
   is
      procedure Internal (Event : Gdk.Event.Gdk_Event; D : System.Address);
      pragma Import (C, Internal, "gdk_event_set_source_device");
   begin
      Internal (Event, Get_Object (Device));
   end Set_Source_Device;

   procedure Set_Device
     (Event  : Gdk.Event.Gdk_Event;
      Device : not null access Gdk_Device_Record)
   is
      procedure Internal (Event : Gdk.Event.Gdk_Event; D : System.Address);
      pragma Import (C, Internal, "gdk_event_set_device");
   begin
      Internal (Event, Get_Object (Device));
   end Set_Device;

   procedure Get_Window_At_Position
     (Self   : not null access Gdk_Device_Record;
      Win_X  : out Gint;
      Win_Y  : out Gint;
      Window : out Gdk.Gdk_Window)
   is
      function Internal
        (Self      : System.Address;
         Acc_Win_X : access Gint;
         Acc_Win_Y : access Gint) return Gdk.Gdk_Window;
      pragma Import (C, Internal, "gdk_device_get_window_at_position");
      Acc_Win_X  : aliased Gint;
      Acc_Win_Y  : aliased Gint;
   begin
      Window := Internal (Get_Object (Self), Acc_Win_X'Access, Acc_Win_Y'Access);
      Win_X := Acc_Win_X;
      Win_Y := Acc_Win_Y;
   end Get_Window_At_Position;

   package Type_Conversion_Gdk_Device is new Glib.Type_Conversion_Hooks.Hook_Registrator
     (Get_Type'Access, Gdk_Device_Record);
   pragma Unreferenced (Type_Conversion_Gdk_Device);

   ---------------------------
   -- Get_Associated_Device --
   ---------------------------

   function Get_Associated_Device
      (Self : not null access Gdk_Device_Record) return Gdk_Device
   is
      function Internal (Self : System.Address) return System.Address;
      pragma Import (C, Internal, "gdk_device_get_associated_device");
      Stub_Gdk_Device : Gdk_Device_Record;
   begin
      return Gdk.Device.Gdk_Device (Get_User_Data (Internal (Get_Object (Self)), Stub_Gdk_Device));
   end Get_Associated_Device;

   ------------------
   -- Get_Axis_Use --
   ------------------

   function Get_Axis_Use
      (Self  : not null access Gdk_Device_Record;
       Index : Guint) return Gdk_Axis_Use
   is
      function Internal
         (Self  : System.Address;
          Index : Guint) return Gdk_Axis_Use;
      pragma Import (C, Internal, "gdk_device_get_axis_use");
   begin
      return Internal (Get_Object (Self), Index);
   end Get_Axis_Use;

   ---------------------
   -- Get_Device_Type --
   ---------------------

   function Get_Device_Type
      (Self : not null access Gdk_Device_Record) return Gdk_Device_Type
   is
      function Internal (Self : System.Address) return Gdk_Device_Type;
      pragma Import (C, Internal, "gdk_device_get_device_type");
   begin
      return Internal (Get_Object (Self));
   end Get_Device_Type;

   -----------------
   -- Get_Display --
   -----------------

   function Get_Display
      (Self : not null access Gdk_Device_Record)
       return Gdk.Display.Gdk_Display
   is
      function Internal (Self : System.Address) return System.Address;
      pragma Import (C, Internal, "gdk_device_get_display");
      Stub_Gdk_Display : Gdk.Display.Gdk_Display_Record;
   begin
      return Gdk.Display.Gdk_Display (Get_User_Data (Internal (Get_Object (Self)), Stub_Gdk_Display));
   end Get_Display;

   --------------------
   -- Get_Has_Cursor --
   --------------------

   function Get_Has_Cursor
      (Self : not null access Gdk_Device_Record) return Boolean
   is
      function Internal (Self : System.Address) return Glib.Gboolean;
      pragma Import (C, Internal, "gdk_device_get_has_cursor");
   begin
      return Internal (Get_Object (Self)) /= 0;
   end Get_Has_Cursor;

   ---------------------------
   -- Get_Last_Event_Window --
   ---------------------------

   function Get_Last_Event_Window
      (Self : not null access Gdk_Device_Record) return Gdk.Gdk_Window
   is
      function Internal (Self : System.Address) return Gdk.Gdk_Window;
      pragma Import (C, Internal, "gdk_device_get_last_event_window");
   begin
      return Internal (Get_Object (Self));
   end Get_Last_Event_Window;

   --------------
   -- Get_Mode --
   --------------

   function Get_Mode
      (Self : not null access Gdk_Device_Record) return Gdk_Input_Mode
   is
      function Internal (Self : System.Address) return Gdk_Input_Mode;
      pragma Import (C, Internal, "gdk_device_get_mode");
   begin
      return Internal (Get_Object (Self));
   end Get_Mode;

   ----------------
   -- Get_N_Axes --
   ----------------

   function Get_N_Axes
      (Self : not null access Gdk_Device_Record) return Gint
   is
      function Internal (Self : System.Address) return Gint;
      pragma Import (C, Internal, "gdk_device_get_n_axes");
   begin
      return Internal (Get_Object (Self));
   end Get_N_Axes;

   ----------------
   -- Get_N_Keys --
   ----------------

   function Get_N_Keys
      (Self : not null access Gdk_Device_Record) return Gint
   is
      function Internal (Self : System.Address) return Gint;
      pragma Import (C, Internal, "gdk_device_get_n_keys");
   begin
      return Internal (Get_Object (Self));
   end Get_N_Keys;

   --------------
   -- Get_Name --
   --------------

   function Get_Name
      (Self : not null access Gdk_Device_Record) return UTF8_String
   is
      function Internal
         (Self : System.Address) return Interfaces.C.Strings.chars_ptr;
      pragma Import (C, Internal, "gdk_device_get_name");
   begin
      return Gtkada.Bindings.Value_Allowing_Null (Internal (Get_Object (Self)));
   end Get_Name;

   -------------------------
   -- Get_Position_Double --
   -------------------------

   procedure Get_Position_Double
      (Self   : not null access Gdk_Device_Record;
       Screen : out Gdk.Screen.Gdk_Screen;
       X      : out Gdouble;
       Y      : out Gdouble)
   is
      procedure Internal
         (Self   : System.Address;
          Screen : out System.Address;
          X      : out Gdouble;
          Y      : out Gdouble);
      pragma Import (C, Internal, "gdk_device_get_position_double");
      Tmp_Screen      : aliased System.Address;
      Stub_Gdk_Screen : Gdk.Screen.Gdk_Screen_Record;
   begin
      Internal (Get_Object (Self), Tmp_Screen, X, Y);
      Screen := Gdk.Screen.Gdk_Screen (Get_User_Data (Tmp_Screen, Stub_Gdk_Screen));
   end Get_Position_Double;

   ----------------
   -- Get_Source --
   ----------------

   function Get_Source
      (Self : not null access Gdk_Device_Record) return Gdk_Input_Source
   is
      function Internal (Self : System.Address) return Gdk_Input_Source;
      pragma Import (C, Internal, "gdk_device_get_source");
   begin
      return Internal (Get_Object (Self));
   end Get_Source;

   ---------------
   -- Get_State --
   ---------------

   procedure Get_State
      (Self   : not null access Gdk_Device_Record;
       Window : Gdk.Gdk_Window;
       Axes   : Gdouble_Array;
       Mask   : out Gdk.Types.Gdk_Modifier_Type)
   is
      procedure Internal
         (Self   : System.Address;
          Window : Gdk.Gdk_Window;
          Axes   : System.Address;
          Mask   : out Gdk.Types.Gdk_Modifier_Type);
      pragma Import (C, Internal, "gdk_device_get_state");
   begin
      Internal (Get_Object (Self), Window, Axes (Axes'First)'Address, Mask);
   end Get_State;

   -----------------------------------
   -- Get_Window_At_Position_Double --
   -----------------------------------

   function Get_Window_At_Position_Double
      (Self  : not null access Gdk_Device_Record;
       Win_X : access Gdouble;
       Win_Y : access Gdouble) return Gdk.Gdk_Window
   is
      function Internal
         (Self      : System.Address;
          Acc_Win_X : access Gdouble;
          Acc_Win_Y : access Gdouble) return Gdk.Gdk_Window;
      pragma Import (C, Internal, "gdk_device_get_window_at_position_double");
      Acc_Win_X  : aliased Gdouble;
      Acc_Win_Y  : aliased Gdouble;
      Tmp_Return : Gdk.Gdk_Window;
   begin
      Tmp_Return := Internal (Get_Object (Self), Acc_Win_X'Access, Acc_Win_Y'Access);
      if Win_X /= null then
         Win_X.all := Acc_Win_X;
      end if;
      if Win_Y /= null then
         Win_Y.all := Acc_Win_Y;
      end if;
      return Tmp_Return;
   end Get_Window_At_Position_Double;

   ----------
   -- Grab --
   ----------

   function Grab
      (Self           : not null access Gdk_Device_Record;
       Window         : Gdk.Gdk_Window;
       Grab_Ownership : Gdk_Grab_Ownership;
       Owner_Events   : Boolean;
       Event_Mask     : Gdk.Event.Gdk_Event_Mask;
       Cursor         : Gdk.Gdk_Cursor;
       Time           : Guint32) return Gdk_Grab_Status
   is
      function Internal
         (Self           : System.Address;
          Window         : Gdk.Gdk_Window;
          Grab_Ownership : Gdk_Grab_Ownership;
          Owner_Events   : Glib.Gboolean;
          Event_Mask     : Gdk.Event.Gdk_Event_Mask;
          Cursor         : Gdk.Gdk_Cursor;
          Time           : Guint32) return Gdk_Grab_Status;
      pragma Import (C, Internal, "gdk_device_grab");
   begin
      return Internal (Get_Object (Self), Window, Grab_Ownership, Boolean'Pos (Owner_Events), Event_Mask, Cursor, Time);
   end Grab;

   ------------------
   -- Set_Axis_Use --
   ------------------

   procedure Set_Axis_Use
      (Self  : not null access Gdk_Device_Record;
       Index : Guint;
       GUse  : Gdk_Axis_Use)
   is
      procedure Internal
         (Self  : System.Address;
          Index : Guint;
          GUse  : Gdk_Axis_Use);
      pragma Import (C, Internal, "gdk_device_set_axis_use");
   begin
      Internal (Get_Object (Self), Index, GUse);
   end Set_Axis_Use;

   -------------
   -- Set_Key --
   -------------

   procedure Set_Key
      (Self      : not null access Gdk_Device_Record;
       Index     : Guint;
       Keyval    : Guint;
       Modifiers : Gdk.Types.Gdk_Modifier_Type)
   is
      procedure Internal
         (Self      : System.Address;
          Index     : Guint;
          Keyval    : Guint;
          Modifiers : Gdk.Types.Gdk_Modifier_Type);
      pragma Import (C, Internal, "gdk_device_set_key");
   begin
      Internal (Get_Object (Self), Index, Keyval, Modifiers);
   end Set_Key;

   --------------
   -- Set_Mode --
   --------------

   function Set_Mode
      (Self : not null access Gdk_Device_Record;
       Mode : Gdk_Input_Mode) return Boolean
   is
      function Internal
         (Self : System.Address;
          Mode : Gdk_Input_Mode) return Glib.Gboolean;
      pragma Import (C, Internal, "gdk_device_set_mode");
   begin
      return Internal (Get_Object (Self), Mode) /= 0;
   end Set_Mode;

   ------------
   -- Ungrab --
   ------------

   procedure Ungrab
      (Self : not null access Gdk_Device_Record;
       Time : Guint32)
   is
      procedure Internal (Self : System.Address; Time : Guint32);
      pragma Import (C, Internal, "gdk_device_ungrab");
   begin
      Internal (Get_Object (Self), Time);
   end Ungrab;

   ----------
   -- Warp --
   ----------

   procedure Warp
      (Self   : not null access Gdk_Device_Record;
       Screen : not null access Gdk.Screen.Gdk_Screen_Record'Class;
       X      : Gint;
       Y      : Gint)
   is
      procedure Internal
         (Self   : System.Address;
          Screen : System.Address;
          X      : Gint;
          Y      : Gint);
      pragma Import (C, Internal, "gdk_device_warp");
   begin
      Internal (Get_Object (Self), Get_Object (Screen), X, Y);
   end Warp;

end Gdk.Device;