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-round.ads | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 src/fltk-widgets-buttons-light-round.ads (limited to 'src/fltk-widgets-buttons-light-round.ads') diff --git a/src/fltk-widgets-buttons-light-round.ads b/src/fltk-widgets-buttons-light-round.ads new file mode 100644 index 0000000..7cb99b8 --- /dev/null +++ b/src/fltk-widgets-buttons-light-round.ads @@ -0,0 +1,26 @@ + + +package FLTK.Widgets.Buttons.Light.Round is + + + type Round_Button is new Light_Button with private; + + + function Create + (X, Y, W, H : in Integer; + Text : in String) + return Round_Button; + + +private + + + type Round_Button is new Light_Button with null record; + + + overriding procedure Finalize + (This : in out Round_Button); + + +end FLTK.Widgets.Buttons.Light.Round; + -- cgit