From a3a475cc6a88e7fbd5d55cbca3dd517c0d34b260 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 fltk-widget-button-light-round-radio.ads (limited to 'fltk-widget-button-light-round-radio.ads') diff --git a/fltk-widget-button-light-round-radio.ads b/fltk-widget-button-light-round-radio.ads new file mode 100644 index 0000000..c0e4f38 --- /dev/null +++ b/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