From 0f28695be695a0b2e8fbfff388c61cb69cdc03af Mon Sep 17 00:00:00 2001 From: Jed Barber Date: Thu, 26 May 2016 00:38:43 +1000 Subject: The Great Package Naming Style Change(tm) --- fltk-widgets-buttons-radio.adb | 53 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 53 insertions(+) create mode 100644 fltk-widgets-buttons-radio.adb (limited to 'fltk-widgets-buttons-radio.adb') diff --git a/fltk-widgets-buttons-radio.adb b/fltk-widgets-buttons-radio.adb new file mode 100644 index 0000000..cd8d1ce --- /dev/null +++ b/fltk-widgets-buttons-radio.adb @@ -0,0 +1,53 @@ + + +with Interfaces.C; +with System; +use type System.Address; + + +package body FLTK.Widgets.Buttons.Radio is + + + function new_fl_radio_button + (X, Y, W, H : in Interfaces.C.int; + L : in Interfaces.C.char_array) + return System.Address; + pragma Import (C, new_fl_radio_button, "new_fl_radio_button"); + + procedure free_fl_radio_button + (B : in System.Address); + pragma Import (C, free_fl_radio_button, "free_fl_radio_button"); + + + + + procedure Finalize (This : in out Radio_Button) is + begin + if (This.Void_Ptr /= System.Null_Address) then + free_fl_radio_button (This.Void_Ptr); + end if; + end Finalize; + + + + + function Create + (X, Y, W, H : Integer; + Label : String) + return Radio_Button is + + VP : System.Address; + + begin + VP := new_fl_radio_button + (Interfaces.C.int (X), + Interfaces.C.int (Y), + Interfaces.C.int (W), + Interfaces.C.int (H), + Interfaces.C.To_C (Label)); + return (Ada.Finalization.Limited_Controlled with Void_Ptr => VP); + end Create; + + +end FLTK.Widgets.Buttons.Radio; + -- cgit