This file is indexed.

/usr/share/ada/adainclude/gtkada/gtkada-bindings.adb is in libgtkada2.24.4-dev 2.24.4dfsg-1.

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
-----------------------------------------------------------------------
--          GtkAda - Ada95 binding for the Gimp Toolkit              --
--                                                                   --
--                     Copyright (C) 2006-2013, 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 Glib;                 use Glib;
with GNAT.Strings;         use GNAT.Strings;
with Interfaces.C;         use Interfaces.C;
with Interfaces.C.Strings; use Interfaces.C.Strings;

package body Gtkada.Bindings is

   --------------------
   -- String_Or_Null --
   --------------------

   function String_Or_Null
     (S : String) return Interfaces.C.Strings.chars_ptr is
   begin
      if S = "" then
         return Null_Ptr;
      else
         return New_String (S);
      end if;
   end String_Or_Null;

   --------------------
   -- To_String_List --
   --------------------

   function To_String_List
     (C : Interfaces.C.Strings.chars_ptr_array) return String_List
   is
      Count : Natural := 0;
   begin
      while C (size_t (Count)) /= Null_Ptr loop
         Count := Count + 1;
      end loop;

      return To_String_List (C, Gint (Count));
   end To_String_List;

   --------------------
   -- To_String_List --
   --------------------

   function To_String_List
     (C : ICS.chars_ptr_array; N : Gint) return GNAT.Strings.String_List
   is
      Result : String_List (1 .. Natural (N));
   begin
      for R in Result'Range loop
         Result (R) := new String'(Value (C (size_t (R) - 1)));
      end loop;
      return Result;
   end To_String_List;

   ----------------------
   -- From_String_List --
   ----------------------

   function From_String_List
     (C : String_List) return Interfaces.C.Strings.chars_ptr_array
   is
      Result : Interfaces.C.Strings.chars_ptr_array (0 .. C'Length);
   begin
      for S in C'Range loop
         Result (size_t (S - C'First)) := New_String (C (S).all);
      end loop;
      Result (Result'Last) := Null_Ptr;
      return Result;
   end From_String_List;

   ------------------
   -- To_Chars_Ptr --
   ------------------

   function To_Chars_Ptr
     (C : chars_ptr_array_access) return ICS.chars_ptr_array
   is
      Count : size_t := 0;
   begin
      while C (Count) /= Null_Ptr loop
         Count := Count + 1;
      end loop;

      declare
         Result : chars_ptr_array (0 .. Count - 1);
      begin
         for J in Result'Range loop
            Result (J) := C (J);
         end loop;
         return Result;
      end;
   end To_Chars_Ptr;

   -------------------
   -- To_Gint_Array --
   -------------------

--     function To_Gint_Array
--       (Arr : Unbounded_Gint_Array_Access; N : Gint) return Glib.Gint_Array
--     is
--     begin
--        if Arr = null then
--           return (1 .. 0 => 0);
--        else
--           declare
--              Result : Glib.Gint_Array (1 .. Natural (N));
--           begin
--              for R in 0 .. Natural (N - 1) loop
--                 Result (R + 1) := Arr (R);
--              end loop;
--              return Result;
--           end;
--        end if;
--     end To_Gint_Array;

   -----------------------------------
   -- To_Gint_Array_Zero_Terminated --
   -----------------------------------

   function To_Gint_Array_Zero_Terminated
     (Arr : Gint_Arrays.Unbounded_Array_Access) return Glib.Gint_Array
   is
      Count : Natural := 0;
   begin
      while Arr (Count) /= 0 loop
         Count := Count + 1;
      end loop;

      declare
         Result : Gint_Array (1 .. Count);
      begin
         for R in Result'Range loop
            Result (R) := Arr (R - 1);
         end loop;
         return Result;
      end;
   end To_Gint_Array_Zero_Terminated;

   --------------------
   -- To_Point_Array --
   --------------------

--     function To_Point_Array
--       (Arr : Unbounded_Points_Array_Access; N : Glib.Gint)
--        return Gdk.Types.Gdk_Points_Array
--     is
--     begin
--        if Arr = null then
--           return (1 .. 0 => (0, 0));
--        else
--           declare
--              Result : Gdk_Points_Array (1 .. Natural (N));
--           begin
--              for R in 0 .. Natural (N - 1) loop
--                 Result (R + 1) := Arr (R);
--              end loop;
--              return Result;
--           end;
--        end if;
--     end To_Point_Array;

   -------------------
   -- To_Atom_Array --
   -------------------

--     function To_Atom_Array
--       (Arr : Unbounded_Atom_Array_Access; N : Glib.Gint)
--        return Gdk.Types.Gdk_Atom_Array
--     is
--     begin
--        if Arr = null then
--           return (1 .. 0 => Gdk.Types.Gdk_None);
--        else
--           declare
--              Result : Gdk_Atom_Array (1 .. Natural (N));
--           begin
--              for R in 0 .. Natural (N - 1) loop
--                 Result (R + 1) := Arr (R);
--              end loop;
--              return Result;
--           end;
--        end if;
--     end To_Atom_Array;

   --------------------
   -- To_Color_Array --
   --------------------

--     function To_Color_Array
--       (Arr : Unbounded_Color_Array_Access; N : Glib.Gint)
--        return Gdk.Color.Gdk_Color_Array
--     is
--     begin
--        if Arr = null then
--           return (1 .. 0 => Null_Color);
--        else
--           declare
--              Result : Gdk_Color_Array (1 .. Natural (N));
--           begin
--              for R in 0 .. Natural (N - 1) loop
--                 Result (R + 1) := Arr (R);
--              end loop;
--              return Result;
--           end;
--        end if;
--     end To_Color_Array;

   --------------------
   -- To_Pspec_Array --
   --------------------

--     function To_Pspec_Array
--       (Arr : Unbounded_Pspec_Array_Access; N : Glib.Gint)
--        return Glib.Param_Spec_Array
--     is
--     begin
--        if Arr = null then
--           return (1 .. 0 => null);
--        else
--           declare
--              Result : Param_Spec_Array (1 .. Natural (N));
--           begin
--              for R in 0 .. Natural (N - 1) loop
--                 Result (R + 1) := Arr (R);
--              end loop;
--              return Result;
--           end;
--        end if;
--     end To_Pspec_Array;

   ------------------------
   -- To_Signal_Id_Array --
   ------------------------

--     function To_Signal_Id_Array
--       (Arr : Unbounded_Signal_Id_Array_Access; N : Glib.Guint)
--        return Glib.Object.Signal_Id_Array
--     is
--     begin
--        if Arr = null then
--           return (1 .. 0 => Null_Signal_Id);
--        else
--           declare
--              Result : Signal_Id_Array (1 .. N);
--           begin
--              for R in 0 .. N - 1 loop
--                 Result (R + 1) := Arr (Natural (R));
--              end loop;
--              return Result;
--           end;
--        end if;
--     end To_Signal_Id_Array;

   --------------------
   -- To_GType_Array --
   --------------------

--     function To_GType_Array
--       (Arr : Unbounded_GType_Array_Access; N : Glib.Guint)
--        return Glib.GType_Array
--     is
--     begin
--        if Arr = null then
--           return (1 .. 0 => GType_Invalid);
--        else
--           declare
--              Result : GType_Array (1 .. N);
--           begin
--              for R in 0 .. N - 1 loop
--                 Result (R + 1) := Arr (Natural (R));
--              end loop;
--              return Result;
--           end;
--        end if;
--     end To_GType_Array;

end Gtkada.Bindings;