summaryrefslogtreecommitdiff
path: root/fltk-widget-button-radio.ads
diff options
context:
space:
mode:
authorJed Barber <jjbarber@y7mail.com>2016-05-25 01:10:29 +1000
committerJed Barber <jjbarber@y7mail.com>2016-05-25 01:10:29 +1000
commita3a475cc6a88e7fbd5d55cbca3dd517c0d34b260 (patch)
tree5274efd53486c3061741eb549e31aebf045e1129 /fltk-widget-button-radio.ads
parentac5c51b6ee492b504e165408b742d2505e308e94 (diff)
Buttons and accessors
Diffstat (limited to 'fltk-widget-button-radio.ads')
-rw-r--r--fltk-widget-button-radio.ads25
1 files changed, 25 insertions, 0 deletions
diff --git a/fltk-widget-button-radio.ads b/fltk-widget-button-radio.ads
new file mode 100644
index 0000000..2c36c77
--- /dev/null
+++ b/fltk-widget-button-radio.ads
@@ -0,0 +1,25 @@
+
+
+package FLTK.Widget.Button.Radio is
+
+
+ type Radio_Type is new Button_Type with private;
+
+
+ function Create
+ (X, Y, W, H : Integer;
+ Label : String)
+ return Radio_Type;
+
+
+private
+
+
+ type Radio_Type is new Button_Type with null record;
+
+
+ overriding procedure Finalize (This : in out Radio_Type);
+
+
+end FLTK.Widget.Button.Radio;
+