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
|
------------------------------------------------------------------------------
-- GtkAda - Ada95 binding for the Gimp Toolkit --
-- --
-- Copyright (C) 2010-2018, 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/>. --
-- --
------------------------------------------------------------------------------
with Ada.Text_IO; use Ada.Text_IO;
with Glib; use Glib;
with Gtk; use Gtk;
with Gtk.Box; use Gtk.Box;
with Gtk.Button; use Gtk.Button;
with Gtk.Handlers; use Gtk.Handlers;
with Gtk.Link_Button; use Gtk.Link_Button;
with Gtk.Widget; use Gtk.Widget;
package body Create_Link_Buttons is
package Link_Button_Cb is new Handlers.Callback (Gtk_Link_Button_Record);
package Link_Button_Return_Cb is new Handlers.Return_Callback
(Gtk_Link_Button_Record, Boolean);
----------------------------
-- On_Link_Button_Clicked --
----------------------------
function On_Link_Button_Clicked
(Button : access Gtk_Link_Button_Record'Class) return Boolean
is
begin
Put_Line ("Link_Button clicked: " & Button.Get_Uri);
Set_Visited (Button, True);
return True;
end On_Link_Button_Clicked;
-----------------------------
-- On_Reset_Button_Clicked --
-----------------------------
procedure On_Reset_Button_Clicked
(Widget : access Gtk_Link_Button_Record'Class)
is
begin
Set_Visited (Widget, False);
end On_Reset_Button_Clicked;
----------
-- Help --
----------
function Help return String is
begin
return "a @bGtk_Link_Button@B is a @bGtk_Button@B with a hyperlink,"
& " similar to the kind displayed by web browsers. It is associated"
& " with a URI. The URI is passed to a callback procedure that is"
& " invoked when the user clicks the button. "
& " This widget also keeps track of whether it has been visited.";
end Help;
---------
-- Run --
---------
procedure Run (Frame : access Gtk.Frame.Gtk_Frame_Record'Class) is
Box1 : Gtk_Box;
Link_Button1 : Gtk_Link_Button;
Reset_Button : Gtk_Button;
begin
Gtk.Frame.Set_Label (Frame, "Link_Buttons");
Gtk_New_Vbox (Box1, Homogeneous => False, Spacing => 0);
Gtk.Frame.Add (Frame, Box1);
Gtk_New_With_Label
(Widget => Link_Button1,
URI => "http://www.example.com/",
Label => "Click me.");
Link_Button_Return_Cb.Connect
(Link_Button1, Signal_Activate_Link, On_Link_Button_Clicked'Access);
Pack_Start
(Box1, Link_Button1, Expand => False, Fill => False, Padding => 0);
Gtk_New (Reset_Button, "Reset Link_Button's ""visited"" state");
Link_Button_Cb.Object_Connect
(Reset_Button,
"clicked",
On_Reset_Button_Clicked'Access,
Link_Button1);
Pack_Start
(Box1, Reset_Button, Expand => False, Fill => False, Padding => 0);
Show_All (Box1);
end Run;
end Create_Link_Buttons;
|