From 99ea64c2c914608d3429e63845f8ed396b234dd7 Mon Sep 17 00:00:00 2001 From: Jed Barber Date: Wed, 25 May 2016 01:10:29 +1000 Subject: Buttons and accessors --- .../fltk-widget-button-light-round-radio.ads | 25 ++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 src/fltk_binding/fltk-widget-button-light-round-radio.ads (limited to 'src/fltk_binding/fltk-widget-button-light-round-radio.ads') diff --git a/src/fltk_binding/fltk-widget-button-light-round-radio.ads b/src/fltk_binding/fltk-widget-button-light-round-radio.ads new file mode 100644 index 0000000..c0e4f38 --- /dev/null +++ b/src/fltk_binding/fltk-widget-button-light-round-radio.ads @@ -0,0 +1,25 @@ + + +package FLTK.Widget.Button.Light.Round.Radio is + + + type Radio_Type is new Round_Type with private; + + + function Create + (X, Y, W, H : Integer; + Label : String) + return Radio_Type; + + +private + + + type Radio_Type is new Round_Type with null record; + + + overriding procedure Finalize (This : in out Radio_Type); + + +end FLTK.Widget.Button.Light.Round.Radio; + -- cgit