/usr/share/ada/adainclude/gtkada/gtk-tooltip.adb 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 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 | -----------------------------------------------------------------------
-- GtkAda - Ada95 binding for Gtk+/Gnome --
-- --
-- Copyright (C) 2010, AdaCore --
-- --
-- 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. --
-- --
-----------------------------------------------------------------------
package body Gtk.Tooltip is
----------------
-- Set_Custom --
----------------
procedure Set_Custom
(Tooltip : access Gtk_Tooltip_Record;
Custom_Widget : access Gtk_Widget_Record'Class)
is
procedure Internal (Tooltip, Custom_Widget : System.Address);
pragma Import (C, Internal, "gtk_tooltip_set_custom");
begin
Internal (Get_Object (Tooltip), Get_Object (Custom_Widget));
end Set_Custom;
--------------
-- Set_Icon --
--------------
procedure Set_Icon
(Tooltip : access Gtk_Tooltip_Record;
Pixbuf : Gdk.Pixbuf.Gdk_Pixbuf)
is
procedure Internal (Tooltip, Pixbuf : System.Address);
pragma Import (C, Internal, "gtk_tooltip_set_icon");
begin
Internal (Get_Object (Tooltip), Get_Object (Pixbuf));
end Set_Icon;
-----------------------------
-- Set_Icon_From_Icon_Name --
-----------------------------
procedure Set_Icon_From_Icon_Name
(Tooltip : access Gtk_Tooltip_Record;
Icon_Name : String;
Size : Gtk.Enums.Gtk_Icon_Size)
is
procedure Internal
(Tooltip : System.Address;
Icon_Name : System.Address;
Size : Gtk.Enums.Gtk_Icon_Size);
pragma Import (C, Internal, "gtk_tooltip_set_icon_from_icon_name");
Tmp : constant String := Icon_Name & ASCII.NUL;
begin
if Icon_Name = "" then
Internal (Get_Object (Tooltip), System.Null_Address, Size);
else
Internal (Get_Object (Tooltip), Tmp'Address, Size);
end if;
end Set_Icon_From_Icon_Name;
-------------------------
-- Set_Icon_From_Stock --
-------------------------
procedure Set_Icon_From_Stock
(Tooltip : access Gtk_Tooltip_Record;
Stock_Id : String;
Size : Gtk.Enums.Gtk_Icon_Size)
is
procedure Internal
(Tooltip : System.Address;
Stock_Id : System.Address;
Size : Gtk.Enums.Gtk_Icon_Size);
pragma Import (C, Internal, "gtk_tooltip_set_icon_from_stock");
Tmp : constant String := Stock_Id & ASCII.NUL;
begin
if Stock_Id = "" then
Internal (Get_Object (Tooltip), System.Null_Address, Size);
else
Internal (Get_Object (Tooltip), Tmp'Address, Size);
end if;
end Set_Icon_From_Stock;
----------------
-- Set_Markup --
----------------
procedure Set_Markup
(Tooltip : access Gtk_Tooltip_Record;
Markup : UTF8_String)
is
procedure Internal (Tooltip, Markup : System.Address);
pragma Import (C, Internal, "gtk_tooltip_set_markup");
Tmp : constant UTF8_String := Markup & ASCII.NUL;
begin
if Markup = "" then
Internal (Get_Object (Tooltip), System.Null_Address);
else
Internal (Get_Object (Tooltip), Tmp'Address);
end if;
end Set_Markup;
--------------
-- Set_Text --
--------------
procedure Set_Text
(Tooltip : access Gtk_Tooltip_Record;
Text : UTF8_String)
is
procedure Internal (Tooltip, Text : System.Address);
pragma Import (C, Internal, "gtk_tooltip_set_text");
Tmp : constant UTF8_String := Text & ASCII.NUL;
begin
if Text = "" then
Internal (Get_Object (Tooltip), System.Null_Address);
else
Internal (Get_Object (Tooltip), Tmp'Address);
end if;
end Set_Text;
------------------
-- Set_Tip_Area --
------------------
procedure Set_Tip_Area
(Tooltip : access Gtk_Tooltip_Record;
Rect : Gdk.Rectangle.Gdk_Rectangle)
is
procedure Internal
(Tooltip : System.Address;
Rect : Gdk.Rectangle.Gdk_Rectangle);
pragma Import (C, Internal, "gtk_tooltip_set_tip_area");
begin
Internal (Get_Object (Tooltip), Rect);
end Set_Tip_Area;
---------------------------
-- Trigger_Tooltip_Query --
---------------------------
procedure Trigger_Tooltip_Query
(Display : access Gdk.Display.Gdk_Display_Record)
is
procedure Internal (Display : System.Address);
pragma Import (C, Internal, "gtk_tooltip_trigger_tooltip_query");
begin
Internal (Get_Object (Display));
end Trigger_Tooltip_Query;
end Gtk.Tooltip;
|