/usr/share/ada/adainclude/gnomeada/gnome-href.adb is in libgnomeada2.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 | -----------------------------------------------------------------------
-- 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 Gtk; use Gtk;
with Interfaces.C.Strings;
with System;
package body Gnome.HRef is
---------------
-- Gnome_New --
---------------
procedure Gnome_New
(Widget : out Gnome_HRef;
Url : String;
Label : String) is
begin
Widget := new Gnome_HRef_Record;
Initialize (Widget, Url, Label);
end Gnome_New;
----------------
-- Initialize --
----------------
procedure Initialize
(Widget : access Gnome_HRef_Record'Class;
Url : String;
Label : String)
is
function Internal
(Url : String;
Label : String) return System.Address;
pragma Import (C, Internal, "gnome_href_new");
begin
Set_Object (Widget, Internal (Url & ASCII.NUL, Label & ASCII.NUL));
end Initialize;
--------------
-- Get_Text --
--------------
function Get_Text (Href : access Gnome_HRef_Record) return String is
function Internal
(Href : System.Address) return Interfaces.C.Strings.chars_ptr;
pragma Import (C, Internal, "gnome_href_get_text");
begin
return Interfaces.C.Strings.Value (Internal (Get_Object (Href)));
end Get_Text;
-------------
-- Get_Url --
-------------
function Get_Url (Href : access Gnome_HRef_Record) return String is
function Internal
(Href : System.Address) return Interfaces.C.Strings.chars_ptr;
pragma Import (C, Internal, "gnome_href_get_url");
begin
return Interfaces.C.Strings.Value (Internal (Get_Object (Href)));
end Get_Url;
--------------
-- Set_Text --
--------------
procedure Set_Text
(Href : access Gnome_HRef_Record;
Text : String)
is
procedure Internal (Href : System.Address; Text : String);
pragma Import (C, Internal, "gnome_href_set_text");
begin
Internal (Get_Object (Href), Text & ASCII.NUL);
end Set_Text;
-------------
-- Set_Url --
-------------
procedure Set_Url (Href : access Gnome_HRef_Record; Url : String) is
procedure Internal (Href : System.Address; Url : String);
pragma Import (C, Internal, "gnome_href_set_url");
begin
Internal (Get_Object (Href), Url & ASCII.NUL);
end Set_Url;
end Gnome.HRef;
|