From 727cd771facf506910ddbb63532b3b6af7fb1b77 Mon Sep 17 00:00:00 2001 From: Jed Barber Date: Mon, 1 May 2017 20:53:10 +1000 Subject: Draw method implemented for all Button variations (ugh) --- src/fltk-widgets-buttons.ads | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'src/fltk-widgets-buttons.ads') diff --git a/src/fltk-widgets-buttons.ads b/src/fltk-widgets-buttons.ads index 403ad1a..f207e09 100644 --- a/src/fltk-widgets-buttons.ads +++ b/src/fltk-widgets-buttons.ads @@ -32,6 +32,10 @@ package FLTK.Widgets.Buttons is private + procedure Draw + (This : in out Button); + + type Button is new Widget with null record; @@ -39,5 +43,8 @@ private (This : in out Button); + package Button_Convert is new System.Address_To_Access_Conversions (Button'Class); + + end FLTK.Widgets.Buttons; -- cgit