summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJed Barber <jjbarber@y7mail.com>2016-11-10 13:11:01 +1100
committerJed Barber <jjbarber@y7mail.com>2016-11-10 13:11:01 +1100
commit50b2289cdf76a96b91d0f3745abad9268e884670 (patch)
tree380ed13cd7c8c1da8f7d3d74cf3a02cad26af250
parent1f35137574691335d63e86bf5d2b2366fc91c1ba (diff)
Removed callback_test.adb
-rw-r--r--src/callback_test.adb56
1 files changed, 0 insertions, 56 deletions
diff --git a/src/callback_test.adb b/src/callback_test.adb
deleted file mode 100644
index 9abd734..0000000
--- a/src/callback_test.adb
+++ /dev/null
@@ -1,56 +0,0 @@
-
-
-with FLTK.Widgets;
-use FLTK.Widgets;
-with FLTK.Widgets.Buttons;
-use FLTK.Widgets.Buttons;
-with FLTK.Widgets.Groups.Windows;
-use FLTK.Widgets.Groups.Windows;
-with Ada.Text_IO;
-with Ada.Strings.Unbounded;
-use Ada.Strings.Unbounded;
-
-
-function Callback_Test return Integer is
-
-
- Main_View : Window := Create (0, 0, 300, 300, "Tester");
- Pusher : Button := Create (75, 75, 150, 150, "Push me");
-
-
- type My_Callback is new Widget_Callback with
- record
- Msg : Unbounded_String;
- end record;
-
- SC : aliased My_Callback := (Msg => To_Unbounded_String ("Hello!"));
- OC : aliased My_Callback := (Msg => To_Unbounded_String ("And again!"));
-
- overriding procedure Call
- (This : in My_Callback;
- Item : in out Widget'Class) is
- begin
- Ada.Text_IO.Put_Line ("Pushed a button :O");
- Ada.Text_IO.Put_Line (To_String (This.Msg));
- if This.Msg = "Hello!" then
- Item.Set_Callback (OC'Access);
- Item.Set_Label ("Push me again!");
- else
- Item.Set_Callback (SC'Access);
- Item.Set_Label ("Push me");
- end if;
- end Call;
-
-
-begin
-
-
- Main_View.Add (Pusher);
- Pusher.Set_Callback (SC'Access);
- Main_View.Show;
-
- return FLTK.Run;
-
-
-end Callback_Test;
-