summaryrefslogtreecommitdiff
path: root/src/fltk-widgets-buttons-light-round.adb
diff options
context:
space:
mode:
authorJed Barber <jjbarber@y7mail.com>2017-05-01 20:53:10 +1000
committerJed Barber <jjbarber@y7mail.com>2017-05-01 20:53:10 +1000
commit727cd771facf506910ddbb63532b3b6af7fb1b77 (patch)
tree3115d4e112efad94c30d7c00be0569bb201515ad /src/fltk-widgets-buttons-light-round.adb
parent306adba6ddaab80c6929fe955567f25d9da7915f (diff)
Draw method implemented for all Button variations (ugh)
Diffstat (limited to 'src/fltk-widgets-buttons-light-round.adb')
-rw-r--r--src/fltk-widgets-buttons-light-round.adb33
1 files changed, 33 insertions, 0 deletions
diff --git a/src/fltk-widgets-buttons-light-round.adb b/src/fltk-widgets-buttons-light-round.adb
index 8be6a4e..941d416 100644
--- a/src/fltk-widgets-buttons-light-round.adb
+++ b/src/fltk-widgets-buttons-light-round.adb
@@ -8,6 +8,14 @@ use type System.Address;
package body FLTK.Widgets.Buttons.Light.Round is
+ procedure round_button_set_draw_hook
+ (W, D : in System.Address);
+ pragma Import (C, round_button_set_draw_hook, "round_button_set_draw_hook");
+
+ procedure fl_round_button_draw
+ (W : in System.Address);
+ pragma Import (C, fl_round_button_draw, "fl_round_button_draw");
+
function new_fl_round_button
(X, Y, W, H : in Interfaces.C.int;
Text : in Interfaces.C.char_array)
@@ -21,6 +29,30 @@ package body FLTK.Widgets.Buttons.Light.Round is
+ procedure Draw_Hook (U : in System.Address);
+ pragma Convention (C, Draw_Hook);
+
+ procedure Draw_Hook
+ (U : in System.Address)
+ is
+ Ada_Round_Button : access Round_Button'Class :=
+ Round_Button_Convert.To_Pointer (U);
+ begin
+ Ada_Round_Button.Draw;
+ end Draw_Hook;
+
+
+
+
+ procedure Draw
+ (This : in out Round_Button) is
+ begin
+ fl_round_button_draw (This.Void_Ptr);
+ end Draw;
+
+
+
+
procedure Finalize
(This : in out Round_Button) is
begin
@@ -50,6 +82,7 @@ package body FLTK.Widgets.Buttons.Light.Round is
fl_widget_set_user_data
(This.Void_Ptr,
Widget_Convert.To_Address (This'Unchecked_Access));
+ round_button_set_draw_hook (This.Void_Ptr, Draw_Hook'Address);
end return;
end Create;