From 0d842f0423ba0754fb3675c7468397a8da5f6e1b Mon Sep 17 00:00:00 2001 From: Jed Barber Date: Thu, 27 Apr 2017 10:40:48 +1000 Subject: Organising source --- src/fltk-widgets-buttons-light.ads | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 src/fltk-widgets-buttons-light.ads (limited to 'src/fltk-widgets-buttons-light.ads') diff --git a/src/fltk-widgets-buttons-light.ads b/src/fltk-widgets-buttons-light.ads new file mode 100644 index 0000000..6fe7a76 --- /dev/null +++ b/src/fltk-widgets-buttons-light.ads @@ -0,0 +1,26 @@ + + +package FLTK.Widgets.Buttons.Light is + + + type Light_Button is new Button with private; + + + function Create + (X, Y, W, H : in Integer; + Text : in String) + return Light_Button; + + +private + + + type Light_Button is new Button with null record; + + + overriding procedure Finalize + (This : in out Light_Button); + + +end FLTK.Widgets.Buttons.Light; + -- cgit