This file is indexed.

/usr/share/ada/adainclude/gtkada/gtk-toolbar.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
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
------------------------------------------------------------------------------
--                                                                          --
--      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>
--  A toolbar is created with a call to Gtk.Toolbar.Gtk_New.
--
--  A toolbar can contain instances of a subclass of
--  Gtk.Tool_Item.Gtk_Tool_Item. To add a Gtk.Tool_Item.Gtk_Tool_Item to the a
--  toolbar, use Gtk.Toolbar.Insert. To remove an item from the toolbar use
--  Gtk.Container.Remove. To add a button to the toolbar, add an instance of
--  Gtk.Tool_Button.Gtk_Tool_Button.
--
--  Toolbar items can be visually grouped by adding instances of
--  Gtk.Separator_Tool_Item.Gtk_Separator_Tool_Item to the toolbar. If the
--  GtkToolbar child property "expand" is TRUE and the property
--  Gtk.Separator_Tool_Item.Gtk_Separator_Tool_Item:draw is set to FALSE, the
--  effect is to force all following items to the end of the toolbar.
--
--  Creating a context menu for the toolbar can be done by connecting to the
--  Gtk.Toolbar.Gtk_Toolbar::popup-context-menu signal.
--
--  </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 Gtk.Buildable;   use Gtk.Buildable;
with Gtk.Container;   use Gtk.Container;
with Gtk.Enums;       use Gtk.Enums;
with Gtk.Orientable;  use Gtk.Orientable;
with Gtk.Size_Group;  use Gtk.Size_Group;
with Gtk.Tool_Item;   use Gtk.Tool_Item;
with Gtk.Tool_Shell;  use Gtk.Tool_Shell;
with Pango.Layout;    use Pango.Layout;

package Gtk.Toolbar is

   type Gtk_Toolbar_Record is new Gtk_Container_Record with null record;
   type Gtk_Toolbar is access all Gtk_Toolbar_Record'Class;

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

   procedure Gtk_New (Toolbar : out Gtk_Toolbar);
   procedure Initialize (Toolbar : not null access Gtk_Toolbar_Record'Class);
   --  Creates a new toolbar.
   --  Initialize does nothing if the object was already created with another
   --  call to Initialize* or G_New.

   function Gtk_Toolbar_New return Gtk_Toolbar;
   --  Creates a new toolbar.

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

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

   function Get_Drop_Index
      (Toolbar : not null access Gtk_Toolbar_Record;
       X       : Gint;
       Y       : Gint) return Gint;
   --  Returns the position corresponding to the indicated point on Toolbar.
   --  This is useful when dragging items to the toolbar: this function returns
   --  the position a new item should be inserted.
   --  X and Y are in Toolbar coordinates.
   --  Since: gtk+ 2.4
   --  "x": x coordinate of a point on the toolbar
   --  "y": y coordinate of a point on the toolbar

   function Get_Icon_Size
      (Toolbar : not null access Gtk_Toolbar_Record)
       return Gtk.Enums.Gtk_Icon_Size;
   --  Retrieves the icon size for the toolbar. See Gtk.Toolbar.Set_Icon_Size.

   procedure Set_Icon_Size
      (Toolbar   : not null access Gtk_Toolbar_Record;
       Icon_Size : Gtk.Enums.Gtk_Icon_Size);
   --  This function sets the size of stock icons in the toolbar. You can call
   --  it both before you add the icons and after they've been added. The size
   --  you set will override user preferences for the default icon size.
   --  This should only be used for special-purpose toolbars, normal
   --  application toolbars should respect the user preferences for the size of
   --  icons.
   --  "icon_size": The Gtk.Enums.Gtk_Icon_Size that stock icons in the
   --  toolbar shall have.

   function Get_Item_Index
      (Toolbar : not null access Gtk_Toolbar_Record;
       Item    : not null access Gtk.Tool_Item.Gtk_Tool_Item_Record'Class)
       return Gint;
   --  Returns the position of Item on the toolbar, starting from 0. It is an
   --  error if Item is not a child of the toolbar.
   --  Since: gtk+ 2.4
   --  "item": a Gtk.Tool_Item.Gtk_Tool_Item that is a child of Toolbar

   function Get_N_Items
      (Toolbar : not null access Gtk_Toolbar_Record) return Gint;
   --  Returns the number of items on the toolbar.
   --  Since: gtk+ 2.4

   function Get_Nth_Item
      (Toolbar : not null access Gtk_Toolbar_Record;
       N       : Gint) return Gtk.Tool_Item.Gtk_Tool_Item;
   --  Returns the N'th item on Toolbar, or null if the toolbar does not
   --  contain an N'th item.
   --  Since: gtk+ 2.4
   --  "n": A position on the toolbar

   function Get_Relief_Style
      (Toolbar : not null access Gtk_Toolbar_Record)
       return Gtk.Enums.Gtk_Relief_Style;
   --  Returns the relief style of buttons on Toolbar. See
   --  Gtk.Button.Set_Relief.
   --  Since: gtk+ 2.4

   function Get_Show_Arrow
      (Toolbar : not null access Gtk_Toolbar_Record) return Boolean;
   --  Returns whether the toolbar has an overflow menu. See
   --  Gtk.Toolbar.Set_Show_Arrow.
   --  Since: gtk+ 2.4

   procedure Set_Show_Arrow
      (Toolbar    : not null access Gtk_Toolbar_Record;
       Show_Arrow : Boolean := True);
   --  Sets whether to show an overflow menu when Toolbar doesn't have room
   --  for all items on it. If True, items that there are not room are
   --  available through an overflow menu.
   --  Since: gtk+ 2.4
   --  "show_arrow": Whether to show an overflow menu

   function Get_Style
      (Toolbar : not null access Gtk_Toolbar_Record)
       return Gtk.Enums.Gtk_Toolbar_Style;
   --  Retrieves whether the toolbar has text, icons, or both . See
   --  Gtk.Toolbar.Set_Style.

   procedure Set_Style
      (Toolbar : not null access Gtk_Toolbar_Record;
       Style   : Gtk.Enums.Gtk_Toolbar_Style);
   --  Alters the view of Toolbar to display either icons only, text only, or
   --  both.
   --  "style": the new style for Toolbar.

   procedure Insert
      (Toolbar : not null access Gtk_Toolbar_Record;
       Item    : not null access Gtk.Tool_Item.Gtk_Tool_Item_Record'Class;
       Pos     : Gint := -1);
   --  Insert a Gtk.Tool_Item.Gtk_Tool_Item into the toolbar at position Pos.
   --  If Pos is 0 the item is prepended to the start of the toolbar. If Pos is
   --  negative, the item is appended to the end of the toolbar.
   --  Since: gtk+ 2.4
   --  "item": a Gtk.Tool_Item.Gtk_Tool_Item
   --  "pos": the position of the new item

   procedure Set_Drop_Highlight_Item
      (Toolbar   : not null access Gtk_Toolbar_Record;
       Tool_Item : access Gtk.Tool_Item.Gtk_Tool_Item_Record'Class;
       Index     : Gint);
   --  Highlights Toolbar to give an idea of what it would look like if Item
   --  was added to Toolbar at the position indicated by Index_. If Item is
   --  null, highlighting is turned off. In that case Index_ is ignored.
   --  The Tool_Item passed to this function must not be part of any widget
   --  hierarchy. When an item is set as drop highlight item it can not added
   --  to any widget hierarchy or used as highlight item for another toolbar.
   --  Since: gtk+ 2.4
   --  "tool_item": a Gtk.Tool_Item.Gtk_Tool_Item, or null to turn of
   --  highlighting
   --  "index_": a position on Toolbar

   procedure Unset_Icon_Size (Toolbar : not null access Gtk_Toolbar_Record);
   --  Unsets toolbar icon size set with Gtk.Toolbar.Set_Icon_Size, so that
   --  user preferences will be used to determine the icon size.

   procedure Unset_Style (Toolbar : not null access Gtk_Toolbar_Record);
   --  Unsets a toolbar style set with Gtk.Toolbar.Set_Style, so that user
   --  preferences will be used to determine the toolbar style.

   ---------------------------------------------
   -- Inherited subprograms (from interfaces) --
   ---------------------------------------------
   --  Methods inherited from the Buildable interface are not duplicated here
   --  since they are meant to be used by tools, mostly. If you need to call
   --  them, use an explicit cast through the "-" operator below.

   function Get_Orientation
      (Self : not null access Gtk_Toolbar_Record)
       return Gtk.Enums.Gtk_Orientation;

   procedure Set_Orientation
      (Self        : not null access Gtk_Toolbar_Record;
       Orientation : Gtk.Enums.Gtk_Orientation);

   function Get_Ellipsize_Mode
      (Self : not null access Gtk_Toolbar_Record)
       return Pango.Layout.Pango_Ellipsize_Mode;

   function Get_Text_Alignment
      (Self : not null access Gtk_Toolbar_Record) return Gfloat;

   function Get_Text_Orientation
      (Self : not null access Gtk_Toolbar_Record)
       return Gtk.Enums.Gtk_Orientation;

   function Get_Text_Size_Group
      (Self : not null access Gtk_Toolbar_Record)
       return Gtk.Size_Group.Gtk_Size_Group;

   procedure Rebuild_Menu (Self : not null access Gtk_Toolbar_Record);

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

   Icon_Size_Property : constant Gtk.Enums.Property_Gtk_Icon_Size;
   --  The size of the icons in a toolbar is normally determined by the
   --  toolbar-icon-size setting. When this property is set, it overrides the
   --  setting.
   --
   --  This should only be used for special-purpose toolbars, normal
   --  application toolbars should respect the user preferences for the size of
   --  icons.

   Icon_Size_Set_Property : constant Glib.Properties.Property_Boolean;
   --  Is True if the icon-size property has been set.

   Show_Arrow_Property : constant Glib.Properties.Property_Boolean;

   Toolbar_Style_Property : constant Gtk.Enums.Property_Gtk_Toolbar_Style;

   -------------
   -- Signals --
   -------------

   type Cb_Gtk_Toolbar_Boolean_Boolean is not null access function
     (Self       : access Gtk_Toolbar_Record'Class;
      Focus_Home : Boolean) return Boolean;

   type Cb_GObject_Boolean_Boolean is not null access function
     (Self       : access Glib.Object.GObject_Record'Class;
      Focus_Home : Boolean) return Boolean;

   Signal_Focus_Home_Or_End : constant Glib.Signal_Name := "focus-home-or-end";
   procedure On_Focus_Home_Or_End
      (Self  : not null access Gtk_Toolbar_Record;
       Call  : Cb_Gtk_Toolbar_Boolean_Boolean;
       After : Boolean := False);
   procedure On_Focus_Home_Or_End
      (Self  : not null access Gtk_Toolbar_Record;
       Call  : Cb_GObject_Boolean_Boolean;
       Slot  : not null access Glib.Object.GObject_Record'Class;
       After : Boolean := False);
   --  A keybinding signal used internally by GTK+. This signal can't be used
   --  in application code
   -- 
   --  Callback parameters:
   --    --  "focus_home": True if the first item should be focused
   --    --  Returns True if the signal was handled, False if not

   type Cb_Gtk_Toolbar_Gtk_Orientation_Void is not null access procedure
     (Self        : access Gtk_Toolbar_Record'Class;
      Orientation : Gtk.Enums.Gtk_Orientation);

   type Cb_GObject_Gtk_Orientation_Void is not null access procedure
     (Self        : access Glib.Object.GObject_Record'Class;
      Orientation : Gtk.Enums.Gtk_Orientation);

   Signal_Orientation_Changed : constant Glib.Signal_Name := "orientation-changed";
   procedure On_Orientation_Changed
      (Self  : not null access Gtk_Toolbar_Record;
       Call  : Cb_Gtk_Toolbar_Gtk_Orientation_Void;
       After : Boolean := False);
   procedure On_Orientation_Changed
      (Self  : not null access Gtk_Toolbar_Record;
       Call  : Cb_GObject_Gtk_Orientation_Void;
       Slot  : not null access Glib.Object.GObject_Record'Class;
       After : Boolean := False);
   --  Emitted when the orientation of the toolbar changes.

   type Cb_Gtk_Toolbar_Gint_Gint_Gint_Boolean is not null access function
     (Self   : access Gtk_Toolbar_Record'Class;
      X      : Gint;
      Y      : Gint;
      Button : Gint) return Boolean;

   type Cb_GObject_Gint_Gint_Gint_Boolean is not null access function
     (Self   : access Glib.Object.GObject_Record'Class;
      X      : Gint;
      Y      : Gint;
      Button : Gint) return Boolean;

   Signal_Popup_Context_Menu : constant Glib.Signal_Name := "popup-context-menu";
   procedure On_Popup_Context_Menu
      (Self  : not null access Gtk_Toolbar_Record;
       Call  : Cb_Gtk_Toolbar_Gint_Gint_Gint_Boolean;
       After : Boolean := False);
   procedure On_Popup_Context_Menu
      (Self  : not null access Gtk_Toolbar_Record;
       Call  : Cb_GObject_Gint_Gint_Gint_Boolean;
       Slot  : not null access Glib.Object.GObject_Record'Class;
       After : Boolean := False);
   --  Emitted when the user right-clicks the toolbar or uses the keybinding
   --  to display a popup menu.
   --
   --  Application developers should handle this signal if they want to
   --  display a context menu on the toolbar. The context-menu should appear at
   --  the coordinates given by X and Y. The mouse button number is given by
   --  the Button parameter. If the menu was popped up using the keybaord,
   --  Button is -1.
   -- 
   --  Callback parameters:
   --    --  "x": the x coordinate of the point where the menu should appear
   --    --  "y": the y coordinate of the point where the menu should appear
   --    --  "button": the mouse button the user pressed, or -1
   --    --  Returns return True if the signal was handled, False if not

   type Cb_Gtk_Toolbar_Gtk_Toolbar_Style_Void is not null access procedure
     (Self  : access Gtk_Toolbar_Record'Class;
      Style : Gtk.Enums.Gtk_Toolbar_Style);

   type Cb_GObject_Gtk_Toolbar_Style_Void is not null access procedure
     (Self  : access Glib.Object.GObject_Record'Class;
      Style : Gtk.Enums.Gtk_Toolbar_Style);

   Signal_Style_Changed : constant Glib.Signal_Name := "style-changed";
   procedure On_Style_Changed
      (Self  : not null access Gtk_Toolbar_Record;
       Call  : Cb_Gtk_Toolbar_Gtk_Toolbar_Style_Void;
       After : Boolean := False);
   procedure On_Style_Changed
      (Self  : not null access Gtk_Toolbar_Record;
       Call  : Cb_GObject_Gtk_Toolbar_Style_Void;
       Slot  : not null access Glib.Object.GObject_Record'Class;
       After : Boolean := False);
   --  Emitted when the style of the toolbar changes.

   ----------------
   -- Interfaces --
   ----------------
   --  This class implements several interfaces. See Glib.Types
   --
   --  - "Buildable"
   --
   --  - "Orientable"
   --
   --  - "ToolShell"

   package Implements_Gtk_Buildable is new Glib.Types.Implements
     (Gtk.Buildable.Gtk_Buildable, Gtk_Toolbar_Record, Gtk_Toolbar);
   function "+"
     (Widget : access Gtk_Toolbar_Record'Class)
   return Gtk.Buildable.Gtk_Buildable
   renames Implements_Gtk_Buildable.To_Interface;
   function "-"
     (Interf : Gtk.Buildable.Gtk_Buildable)
   return Gtk_Toolbar
   renames Implements_Gtk_Buildable.To_Object;

   package Implements_Gtk_Orientable is new Glib.Types.Implements
     (Gtk.Orientable.Gtk_Orientable, Gtk_Toolbar_Record, Gtk_Toolbar);
   function "+"
     (Widget : access Gtk_Toolbar_Record'Class)
   return Gtk.Orientable.Gtk_Orientable
   renames Implements_Gtk_Orientable.To_Interface;
   function "-"
     (Interf : Gtk.Orientable.Gtk_Orientable)
   return Gtk_Toolbar
   renames Implements_Gtk_Orientable.To_Object;

   package Implements_Gtk_Tool_Shell is new Glib.Types.Implements
     (Gtk.Tool_Shell.Gtk_Tool_Shell, Gtk_Toolbar_Record, Gtk_Toolbar);
   function "+"
     (Widget : access Gtk_Toolbar_Record'Class)
   return Gtk.Tool_Shell.Gtk_Tool_Shell
   renames Implements_Gtk_Tool_Shell.To_Interface;
   function "-"
     (Interf : Gtk.Tool_Shell.Gtk_Tool_Shell)
   return Gtk_Toolbar
   renames Implements_Gtk_Tool_Shell.To_Object;

private
   Toolbar_Style_Property : constant Gtk.Enums.Property_Gtk_Toolbar_Style :=
     Gtk.Enums.Build ("toolbar-style");
   Show_Arrow_Property : constant Glib.Properties.Property_Boolean :=
     Glib.Properties.Build ("show-arrow");
   Icon_Size_Set_Property : constant Glib.Properties.Property_Boolean :=
     Glib.Properties.Build ("icon-size-set");
   Icon_Size_Property : constant Gtk.Enums.Property_Gtk_Icon_Size :=
     Gtk.Enums.Build ("icon-size");
end Gtk.Toolbar;