From 0d842f0423ba0754fb3675c7468397a8da5f6e1b Mon Sep 17 00:00:00 2001 From: Jed Barber Date: Thu, 27 Apr 2017 10:40:48 +1000 Subject: Organising source --- fltk-widgets-buttons-light-round-radio.adb | 58 ------------------------------ 1 file changed, 58 deletions(-) delete mode 100644 fltk-widgets-buttons-light-round-radio.adb (limited to 'fltk-widgets-buttons-light-round-radio.adb') diff --git a/fltk-widgets-buttons-light-round-radio.adb b/fltk-widgets-buttons-light-round-radio.adb deleted file mode 100644 index c61430f..0000000 --- a/fltk-widgets-buttons-light-round-radio.adb +++ /dev/null @@ -1,58 +0,0 @@ - - -with Interfaces.C; -with System; -use type System.Address; - - -package body FLTK.Widgets.Buttons.Light.Round.Radio is - - - function new_fl_radio_round_button - (X, Y, W, H : in Interfaces.C.int; - Text : in Interfaces.C.char_array) - return System.Address; - pragma Import (C, new_fl_radio_round_button, "new_fl_radio_round_button"); - - procedure free_fl_radio_round_button - (B : in System.Address); - pragma Import (C, free_fl_radio_round_button, "free_fl_radio_round_button"); - - - - - procedure Finalize - (This : in out Radio_Round_Button) is - begin - Finalize (Round_Button (This)); - if (This.Void_Ptr /= System.Null_Address) then - if This in Radio_Round_Button then - free_fl_radio_round_button (This.Void_Ptr); - end if; - end if; - end Finalize; - - - - - function Create - (X, Y, W, H : in Integer; - Text : in String) - return Radio_Round_Button is - begin - return This : Radio_Round_Button do - This.Void_Ptr := new_fl_radio_round_button - (Interfaces.C.int (X), - Interfaces.C.int (Y), - Interfaces.C.int (W), - Interfaces.C.int (H), - Interfaces.C.To_C (Text)); - fl_widget_set_user_data - (This.Void_Ptr, - Widget_Convert.To_Address (This'Unchecked_Access)); - end return; - end Create; - - -end FLTK.Widgets.Buttons.Light.Round.Radio; - -- cgit