summaryrefslogtreecommitdiff
path: root/src/fltk-widgets-buttons.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.adb
parent306adba6ddaab80c6929fe955567f25d9da7915f (diff)
Draw method implemented for all Button variations (ugh)
Diffstat (limited to 'src/fltk-widgets-buttons.adb')
-rw-r--r--src/fltk-widgets-buttons.adb33
1 files changed, 33 insertions, 0 deletions
diff --git a/src/fltk-widgets-buttons.adb b/src/fltk-widgets-buttons.adb
index bc79b9c..b1f9d2a 100644
--- a/src/fltk-widgets-buttons.adb
+++ b/src/fltk-widgets-buttons.adb
@@ -8,6 +8,14 @@ use type System.Address;
package body FLTK.Widgets.Buttons is
+ procedure button_set_draw_hook
+ (W, D : in System.Address);
+ pragma Import (C, button_set_draw_hook, "button_set_draw_hook");
+
+ procedure fl_button_draw
+ (W : in System.Address);
+ pragma Import (C, fl_button_draw, "fl_button_draw");
+
function new_fl_button
(X, Y, W, H : in Interfaces.C.int;
Text : in Interfaces.C.char_array)
@@ -35,6 +43,30 @@ package body FLTK.Widgets.Buttons is
+ procedure Draw_Hook (U : in System.Address);
+ pragma Convention (C, Draw_Hook);
+
+ procedure Draw_Hook
+ (U : in System.Address)
+ is
+ Ada_Button : access Button'Class :=
+ Button_Convert.To_Pointer (U);
+ begin
+ Ada_Button.Draw;
+ end Draw_Hook;
+
+
+
+
+ procedure Draw
+ (This : in out Button) is
+ begin
+ fl_button_draw (This.Void_Ptr);
+ end Draw;
+
+
+
+
procedure Finalize
(This : in out Button) is
begin
@@ -64,6 +96,7 @@ package body FLTK.Widgets.Buttons is
fl_widget_set_user_data
(This.Void_Ptr,
Widget_Convert.To_Address (This'Unchecked_Access));
+ button_set_draw_hook (This.Void_Ptr, Draw_Hook'Address);
end return;
end Create;