/usr/share/ada/adainclude/gnomeada/gnome-druid.adb is in libgnomeada2.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 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 | -----------------------------------------------------------------------
-- GtkAda - Ada95 binding for Gtk+/Gnome --
-- --
-- Copyright (C) 2001 --
-- 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. --
-- --
-----------------------------------------------------------------------
with Glib; use Glib;
with Gtk; use Gtk;
with System;
package body Gnome.Druid is
use Gnome.Druid_Page;
---------------
-- Gnome_New --
---------------
procedure Gnome_New (Widget : out Gnome_Druid) is
begin
Widget := new Gnome_Druid_Record;
Gnome.Druid.Initialize (Widget);
end Gnome_New;
----------------
-- Initialize --
----------------
procedure Initialize (Widget : access Gnome_Druid_Record'Class) is
function Internal return System.Address;
pragma Import (C, Internal, "gnome_druid_new");
begin
Set_Object (Widget, Internal);
end Initialize;
-----------------
-- Append_Page --
-----------------
procedure Append_Page
(Druid : access Gnome_Druid_Record;
Page : access Gnome_Druid_Page_Record)
is
procedure Internal
(Druid : System.Address;
Page : System.Address);
pragma Import (C, Internal, "gnome_druid_append_page");
begin
Internal (Get_Object (Druid),
Get_Object (Page));
end Append_Page;
-----------------
-- Insert_Page --
-----------------
procedure Insert_Page
(Druid : access Gnome_Druid_Record;
Back_Page : access Gnome_Druid_Page_Record;
Page : access Gnome_Druid_Page_Record)
is
procedure Internal
(Druid : System.Address;
Back_Page : System.Address;
Page : System.Address);
pragma Import (C, Internal, "gnome_druid_insert_page");
begin
Internal (Get_Object (Druid),
Get_Object (Back_Page),
Get_Object (Page));
end Insert_Page;
------------------
-- Prepend_Page --
------------------
procedure Prepend_Page
(Druid : access Gnome_Druid_Record;
Page : access Gnome_Druid_Page_Record)
is
procedure Internal
(Druid : System.Address;
Page : System.Address);
pragma Import (C, Internal, "gnome_druid_prepend_page");
begin
Internal (Get_Object (Druid),
Get_Object (Page));
end Prepend_Page;
---------------------------
-- Set_Buttons_Sensitive --
---------------------------
procedure Set_Buttons_Sensitive
(Druid : access Gnome_Druid_Record;
Back_Sensitive : Boolean;
Next_Sensitive : Boolean;
Cancel_Sensitive : Boolean)
is
procedure Internal
(Druid : System.Address;
Back_Sensitive : Gint;
Next_Sensitive : Gint;
Cancel_Sensitive : Gint);
pragma Import (C, Internal, "gnome_druid_set_buttons_sensitive");
begin
Internal (Get_Object (Druid),
Boolean'Pos (Back_Sensitive),
Boolean'Pos (Next_Sensitive),
Boolean'Pos (Cancel_Sensitive));
end Set_Buttons_Sensitive;
--------------
-- Set_Page --
--------------
procedure Set_Page
(Druid : access Gnome_Druid_Record;
Page : access Gnome_Druid_Page_Record)
is
procedure Internal
(Druid : System.Address;
Page : System.Address);
pragma Import (C, Internal, "gnome_druid_set_page");
begin
Internal (Get_Object (Druid),
Get_Object (Page));
end Set_Page;
---------------------
-- Set_Show_Finish --
---------------------
procedure Set_Show_Finish
(Druid : access Gnome_Druid_Record;
Show_Finish : Boolean)
is
procedure Internal
(Druid : System.Address;
Show_Finish : Gint);
pragma Import (C, Internal, "gnome_druid_set_show_finish");
begin
Internal (Get_Object (Druid),
Boolean'Pos (Show_Finish));
end Set_Show_Finish;
end Gnome.Druid;
|