summaryrefslogtreecommitdiff
path: root/src/fltk-widgets-buttons-light.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.adb
parent306adba6ddaab80c6929fe955567f25d9da7915f (diff)
Draw method implemented for all Button variations (ugh)
Diffstat (limited to 'src/fltk-widgets-buttons-light.adb')
-rw-r--r--src/fltk-widgets-buttons-light.adb33
1 files changed, 33 insertions, 0 deletions
diff --git a/src/fltk-widgets-buttons-light.adb b/src/fltk-widgets-buttons-light.adb
index cefc9ef..88fa147 100644
--- a/src/fltk-widgets-buttons-light.adb
+++ b/src/fltk-widgets-buttons-light.adb
@@ -8,6 +8,14 @@ use type System.Address;
package body FLTK.Widgets.Buttons.Light is
+ procedure light_button_set_draw_hook
+ (W, D : in System.Address);
+ pragma Import (C, light_button_set_draw_hook, "light_button_set_draw_hook");
+
+ procedure fl_light_button_draw
+ (W : in System.Address);
+ pragma Import (C, fl_light_button_draw, "fl_light_button_draw");
+
function new_fl_light_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 is
+ procedure Draw_Hook (U : in System.Address);
+ pragma Convention (C, Draw_Hook);
+
+ procedure Draw_Hook
+ (U : in System.Address)
+ is
+ Ada_Light_Button : access Light_Button'Class :=
+ Light_Button_Convert.To_Pointer (U);
+ begin
+ Ada_Light_Button.Draw;
+ end Draw_Hook;
+
+
+
+
+ procedure Draw
+ (This : in out Light_Button) is
+ begin
+ fl_light_button_draw (This.Void_Ptr);
+ end Draw;
+
+
+
+
procedure Finalize
(This : in out Light_Button) is
begin
@@ -50,6 +82,7 @@ package body FLTK.Widgets.Buttons.Light is
fl_widget_set_user_data
(This.Void_Ptr,
Widget_Convert.To_Address (This'Unchecked_Access));
+ light_button_set_draw_hook (This.Void_Ptr, Draw_Hook'Address);
end return;
end Create;