/usr/share/ada/adainclude/gtkada/gdk-visual.ads is in libgtkada2.24.1-dev 2.24.1-14.
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 | -----------------------------------------------------------------------
-- GtkAda - Ada95 binding for Gtk+/Gnome --
-- --
-- Copyright (C) 1998-2000 E. Briot, J. Brobecker and A. Charlet --
-- Copyright (C) 2000-2002 ACT-Europe --
-- --
-- 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. --
-- --
-----------------------------------------------------------------------
-- <c_version>1.3.6</c_version>
-- <group>Gdk, the low-level API</group>
with Glib; use Glib;
with Glib.Glist;
pragma Elaborate_All (Glib.Glist);
with System;
with Unchecked_Conversion;
package Gdk.Visual is
subtype Gdk_Visual is Gdk.Gdk_Visual;
Null_Visual : constant Gdk_Visual;
-- This type is not private because we need the full declaration
-- to instanciate Glib.Glist.Generic_List with it.
type Gdk_Visual_Type is
(Visual_Static_Gray,
Visual_Grayscale,
Visual_Static_Color,
Visual_Pseudo_Color,
Visual_True_Color,
Visual_Direct_Color);
pragma Convention (C, Gdk_Visual_Type);
type Gdk_Visual_Type_Array is array (Natural range <>) of Gdk_Visual_Type;
function Get_Type return Glib.GType;
-- Return the internal value associated with Gdk_Visual.
function Get_Best_Depth return Gint;
function Get_Best_Type return Gdk_Visual_Type;
function Get_System return Gdk_Visual;
function Get_Best return Gdk_Visual;
procedure Get_Best (Visual : out Gdk_Visual);
function Get_Best (Depth : Gint) return Gdk_Visual;
function Get_Best (Visual_Type : Gdk_Visual_Type) return Gdk_Visual;
function Get_Best
(Depth : Gint;
Visual_Type : Gdk_Visual_Type) return Gdk_Visual;
function Query_Depths return Gint_Array;
function Query_Visual_Types return Gdk_Visual_Type_Array;
function Convert is new Unchecked_Conversion (Gdk_Visual, System.Address);
function Convert is new Unchecked_Conversion (System.Address, Gdk_Visual);
package Gdk_Visual_List is new Glib.Glist.Generic_List (Gdk_Visual);
function List_Visuals return Gdk_Visual_List.Glist;
private
Null_Visual : constant Gdk_Visual := null;
pragma Import (C, Get_Type, "gdk_visual_get_type");
pragma Import (C, Get_Best_Depth, "gdk_visual_get_best_depth");
pragma Import (C, Get_Best_Type, "gdk_visual_get_best_type");
pragma Import (C, Get_System, "gdk_visual_get_system");
end Gdk.Visual;
|