This file is indexed.

/usr/share/ada/adainclude/gtkada/glib-action.ads 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
------------------------------------------------------------------------------
--                                                                          --
--      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/>.                                          --
--                                                                          --
------------------------------------------------------------------------------

--  <description>
--  Glib.Action.Gaction represents a single named action.
--
--  The main interface to an action is that it can be activated with
--  Glib.Action.Activate. This results in the 'activate' signal being emitted.
--  An activation has a Glib.Variant.Gvariant parameter (which may be null).
--  The correct type for the parameter is determined by a static parameter type
--  (which is given at construction time).
--
--  An action may optionally have a state, in which case the state may be set
--  with Glib.Action.Change_State. This call takes a Glib.Variant.Gvariant. The
--  correct type for the state is determined by a static state type (which is
--  given at construction time).
--
--  The state may have a hint associated with it, specifying its valid range.
--
--  Glib.Action.Gaction is merely the interface to the concept of an action,
--  as described above. Various implementations of actions exist, including
--  Glib.Simple_Action.Gsimple_Action.
--
--  In all cases, the implementing class is responsible for storing the name
--  of the action, the parameter type, the enabled state, the optional state
--  type and the state and emitting the appropriate signals when these change.
--  The implementor responsible for filtering calls to Glib.Action.Activate and
--  Glib.Action.Change_State for type safety and for the state being enabled.
--
--  Probably the only useful thing to do with a Glib.Action.Gaction is to put
--  it inside of a Glib.Simple_Action_Group.Gsimple_Action_Group.
--
--  </description>
pragma Ada_2005;

pragma Warnings (Off, "*is already use-visible*");
with Glib;                 use Glib;
with Glib.Object;          use Glib.Object;
with Glib.Properties;      use Glib.Properties;
with Glib.Types;           use Glib.Types;
with Glib.Variant;         use Glib.Variant;
pragma Warnings(Off);  --  might be unused
with Interfaces.C.Strings; use Interfaces.C.Strings;
pragma Warnings(On);

package Glib.Action is

   type Gaction is new Glib.Types.GType_Interface;
   Null_Gaction : constant Gaction;

   ------------------
   -- Constructors --
   ------------------

   function Get_Type return Glib.GType;
   pragma Import (C, Get_Type, "g_action_get_type");

   -------------
   -- Methods --
   -------------

   procedure Activate (Self : Gaction; Parameter : Glib.Variant.Gvariant);
   --  Activates the action.
   --  Parameter must be the correct type of parameter for the action (ie: the
   --  parameter type given at construction time). If the parameter type was
   --  null then Parameter must also be null.
   --  If the Parameter GVariant is floating, it is consumed.
   --  Since: gtk+ 2.28
   --  "parameter": the parameter to the activation

   procedure Change_State (Self : Gaction; Value : Glib.Variant.Gvariant);
   --  Request for the state of Action to be changed to Value.
   --  The action must be stateful and Value must be of the correct type. See
   --  Glib.Action.Get_State_Type.
   --  This call merely requests a change. The action may refuse to change its
   --  state or may change its state to something other than Value. See
   --  Glib.Action.Get_State_Hint.
   --  If the Value GVariant is floating, it is consumed.
   --  Since: gtk+ 2.30
   --  "value": the new state

   function Get_Enabled (Self : Gaction) return Boolean;
   --  Checks if Action is currently enabled.
   --  An action must be enabled in order to be activated or in order to have
   --  its state changed from outside callers.
   --  Since: gtk+ 2.28

   function Get_Name (Self : Gaction) return UTF8_String;
   --  Queries the name of Action.
   --  Since: gtk+ 2.28

   function Get_Parameter_Type
      (Self : Gaction) return Glib.Variant.Gvariant_Type;
   pragma Import (C, Get_Parameter_Type, "g_action_get_parameter_type");
   --  Queries the type of the parameter that must be given when activating
   --  Action.
   --  When activating the action using Glib.Action.Activate, the
   --  Glib.Variant.Gvariant given to that function must be of the type
   --  returned by this function.
   --  In the case that this function returns null, you must not give any
   --  Glib.Variant.Gvariant, but null instead.
   --  Since: gtk+ 2.28

   function Get_State (Self : Gaction) return Glib.Variant.Gvariant;
   --  Queries the current state of Action.
   --  If the action is not stateful then null will be returned. If the action
   --  is stateful then the type of the return value is the type given by
   --  Glib.Action.Get_State_Type.
   --  The return value (if non-null) should be freed with Glib.Variant.Unref
   --  when it is no longer required.
   --  Since: gtk+ 2.28

   function Get_State_Hint (Self : Gaction) return Glib.Variant.Gvariant;
   --  Requests a hint about the valid range of values for the state of
   --  Action.
   --  If null is returned it either means that the action is not stateful or
   --  that there is no hint about the valid range of values for the state of
   --  the action.
   --  If a Glib.Variant.Gvariant array is returned then each item in the
   --  array is a possible value for the state. If a Glib.Variant.Gvariant pair
   --  (ie: two-tuple) is returned then the tuple specifies the inclusive lower
   --  and upper bound of valid values for the state.
   --  In any case, the information is merely a hint. It may be possible to
   --  have a state value outside of the hinted range and setting a value
   --  within the range may fail.
   --  The return value (if non-null) should be freed with Glib.Variant.Unref
   --  when it is no longer required.
   --  Since: gtk+ 2.28

   function Get_State_Type
      (Self : Gaction) return Glib.Variant.Gvariant_Type;
   pragma Import (C, Get_State_Type, "g_action_get_state_type");
   --  Queries the type of the state of Action.
   --  If the action is stateful (e.g. created with
   --  Glib.Simple_Action.G_New_Stateful) then this function returns the
   --  Glib.Variant.Gvariant_Type of the state. This is the type of the initial
   --  value given as the state. All calls to Glib.Action.Change_State must
   --  give a Glib.Variant.Gvariant of this type and Glib.Action.Get_State will
   --  return a Glib.Variant.Gvariant of the same type.
   --  If the action is not stateful (e.g. created with
   --  Glib.Simple_Action.G_New) then this function will return null. In that
   --  case, Glib.Action.Get_State will return null and you must not call
   --  Glib.Action.Change_State.
   --  Since: gtk+ 2.28

   ---------------
   -- Functions --
   ---------------

   function Name_Is_Valid (Action_Name : UTF8_String) return Boolean;
   --  Checks if Action_Name is valid.
   --  Action_Name is valid if it consists only of alphanumeric characters,
   --  plus '-' and '.'. The empty string is not a valid action name.
   --  It is an error to call this function with a non-utf8 Action_Name.
   --  Action_Name must not be null.
   --  Since: gtk+ 2.38
   --  "action_name": an potential action name

   function Print_Detailed_Name
      (Action_Name  : UTF8_String;
       Target_Value : Glib.Variant.Gvariant) return UTF8_String;
   --  Formats a detailed action name from Action_Name and Target_Value.
   --  It is an error to call this function with an invalid action name.
   --  This function is the opposite of g_action_parse_detailed_action_name.
   --  It will produce a string that can be parsed back to the Action_Name and
   --  Target_Value by that function.
   --  See that function for the types of strings that will be printed by this
   --  function.
   --  Since: gtk+ 2.38
   --  "action_name": a valid action name
   --  "target_value": a Glib.Variant.Gvariant target value, or null

   ----------------
   -- Properties --
   ----------------
   --  The following properties are defined for this widget. See
   --  Glib.Properties for more information on properties)

   Enabled_Property : constant Glib.Properties.Property_Boolean;
   --  If Action is currently enabled.
   --
   --  If the action is disabled then calls to Glib.Action.Activate and
   --  Glib.Action.Change_State have no effect.

   Name_Property : constant Glib.Properties.Property_String;
   --  The name of the action. This is mostly meaningful for identifying the
   --  action once it has been added to a Glib.Action_Group.Gaction_Group. It
   --  is immutable.

   Parameter_Type_Property : constant Glib.Properties.Property_Boxed;
   --  Type: GLib.Variant_Type
   --  The type of the parameter that must be given when activating the
   --  action. This is immutable, and may be null if no parameter is needed
   --  when activating the action.

   State_Property : constant Glib.Properties.Property_Object;
   --  Type: Glib.Variant.Gvariant
   --  The state of the action, or null if the action is stateless.

   State_Type_Property : constant Glib.Properties.Property_Boxed;
   --  Type: GLib.Variant_Type
   --  The Glib.Variant.Gvariant_Type of the state that the action has, or
   --  null if the action is stateless. This is immutable.

   ----------------
   -- Interfaces --
   ----------------
   --  This class implements several interfaces. See Glib.Types
   --
   --  - "Gaction"

   function "+" (W : Gaction) return Gaction;
   pragma Inline ("+");

   ---------------------
   -- Virtual Methods --
   ---------------------

   type Virtual_Activate is access procedure (Self : Gaction; Parameter : System.Address);
   pragma Convention (C, Virtual_Activate);
   --  Activates the action.
   --  Parameter must be the correct type of parameter for the action (ie: the
   --  parameter type given at construction time). If the parameter type was
   --  null then Parameter must also be null.
   --  If the Parameter GVariant is floating, it is consumed.
   --  Since: gtk+ 2.28
   --  "parameter": the parameter to the activation

   type Virtual_Change_State is access procedure (Self : Gaction; Value : System.Address);
   pragma Convention (C, Virtual_Change_State);
   --  Request for the state of Action to be changed to Value.
   --  The action must be stateful and Value must be of the correct type. See
   --  Glib.Action.Get_State_Type.
   --  This call merely requests a change. The action may refuse to change its
   --  state or may change its state to something other than Value. See
   --  Glib.Action.Get_State_Hint.
   --  If the Value GVariant is floating, it is consumed.
   --  Since: gtk+ 2.30
   --  "value": the new state

   type Virtual_Get_Enabled is access function (Self : Gaction) return Glib.Gboolean;
   pragma Convention (C, Virtual_Get_Enabled);
   --  Checks if Action is currently enabled.
   --  An action must be enabled in order to be activated or in order to have
   --  its state changed from outside callers.
   --  Since: gtk+ 2.28

   type Virtual_Get_Name is access function (Self : Gaction) return Interfaces.C.Strings.chars_ptr;
   pragma Convention (C, Virtual_Get_Name);
   --  Queries the name of Action.
   --  Since: gtk+ 2.28

   type Virtual_Get_Parameter_Type is access function (Self : Gaction) return Glib.Variant.Gvariant_Type;
   pragma Convention (C, Virtual_Get_Parameter_Type);
   --  Queries the type of the parameter that must be given when activating
   --  Action.
   --  When activating the action using Glib.Action.Activate, the
   --  Glib.Variant.Gvariant given to that function must be of the type
   --  returned by this function.
   --  In the case that this function returns null, you must not give any
   --  Glib.Variant.Gvariant, but null instead.
   --  Since: gtk+ 2.28

   type Virtual_Get_State is access function (Self : Gaction) return System.Address;
   pragma Convention (C, Virtual_Get_State);
   --  Queries the current state of Action.
   --  If the action is not stateful then null will be returned. If the action
   --  is stateful then the type of the return value is the type given by
   --  Glib.Action.Get_State_Type.
   --  The return value (if non-null) should be freed with g_variant_unref
   --  when it is no longer required.
   --  Since: gtk+ 2.28

   type Virtual_Get_State_Hint is access function (Self : Gaction) return System.Address;
   pragma Convention (C, Virtual_Get_State_Hint);
   --  Requests a hint about the valid range of values for the state of
   --  Action.
   --  If null is returned it either means that the action is not stateful or
   --  that there is no hint about the valid range of values for the state of
   --  the action.
   --  If a Glib.Variant.Gvariant array is returned then each item in the
   --  array is a possible value for the state. If a Glib.Variant.Gvariant pair
   --  (ie: two-tuple) is returned then the tuple specifies the inclusive lower
   --  and upper bound of valid values for the state.
   --  In any case, the information is merely a hint. It may be possible to
   --  have a state value outside of the hinted range and setting a value
   --  within the range may fail.
   --  The return value (if non-null) should be freed with g_variant_unref
   --  when it is no longer required.
   --  Since: gtk+ 2.28

   type Virtual_Get_State_Type is access function (Self : Gaction) return Glib.Variant.Gvariant_Type;
   pragma Convention (C, Virtual_Get_State_Type);
   --  Queries the type of the state of Action.
   --  If the action is stateful (e.g. created with
   --  g_simple_action_new_stateful) then this function returns the
   --  Glib.Variant.Gvariant_Type of the state. This is the type of the initial
   --  value given as the state. All calls to Glib.Action.Change_State must
   --  give a Glib.Variant.Gvariant of this type and Glib.Action.Get_State will
   --  return a Glib.Variant.Gvariant of the same type.
   --  If the action is not stateful (e.g. created with g_simple_action_new)
   --  then this function will return null. In that case, Glib.Action.Get_State
   --  will return null and you must not call Glib.Action.Change_State.
   --  Since: gtk+ 2.28

   subtype Action_Interface_Descr is Glib.Object.Interface_Description;

   procedure Set_Activate
     (Self    : Action_Interface_Descr;
      Handler : Virtual_Activate);
   pragma Import (C, Set_Activate, "gtkada_Action_set_activate");

   procedure Set_Change_State
     (Self    : Action_Interface_Descr;
      Handler : Virtual_Change_State);
   pragma Import (C, Set_Change_State, "gtkada_Action_set_change_state");

   procedure Set_Get_Enabled
     (Self    : Action_Interface_Descr;
      Handler : Virtual_Get_Enabled);
   pragma Import (C, Set_Get_Enabled, "gtkada_Action_set_get_enabled");

   procedure Set_Get_Name
     (Self    : Action_Interface_Descr;
      Handler : Virtual_Get_Name);
   pragma Import (C, Set_Get_Name, "gtkada_Action_set_get_name");

   procedure Set_Get_Parameter_Type
     (Self    : Action_Interface_Descr;
      Handler : Virtual_Get_Parameter_Type);
   pragma Import (C, Set_Get_Parameter_Type, "gtkada_Action_set_get_parameter_type");

   procedure Set_Get_State
     (Self    : Action_Interface_Descr;
      Handler : Virtual_Get_State);
   pragma Import (C, Set_Get_State, "gtkada_Action_set_get_state");

   procedure Set_Get_State_Hint
     (Self    : Action_Interface_Descr;
      Handler : Virtual_Get_State_Hint);
   pragma Import (C, Set_Get_State_Hint, "gtkada_Action_set_get_state_hint");

   procedure Set_Get_State_Type
     (Self    : Action_Interface_Descr;
      Handler : Virtual_Get_State_Type);
   pragma Import (C, Set_Get_State_Type, "gtkada_Action_set_get_state_type");
   --  See Glib.Object.Add_Interface

private
   State_Type_Property : constant Glib.Properties.Property_Boxed :=
     Glib.Properties.Build ("state-type");
   State_Property : constant Glib.Properties.Property_Object :=
     Glib.Properties.Build ("state");
   Parameter_Type_Property : constant Glib.Properties.Property_Boxed :=
     Glib.Properties.Build ("parameter-type");
   Name_Property : constant Glib.Properties.Property_String :=
     Glib.Properties.Build ("name");
   Enabled_Property : constant Glib.Properties.Property_Boolean :=
     Glib.Properties.Build ("enabled");

Null_Gaction : constant Gaction :=
   Gaction (Glib.Types.Null_Interface);
end Glib.Action;