diff options
author | Jed Barber <jjbarber@y7mail.com> | 2016-05-26 00:38:43 +1000 |
---|---|---|
committer | Jed Barber <jjbarber@y7mail.com> | 2016-05-26 00:38:43 +1000 |
commit | 524edbb4463b66d61e92c92a7020d9d09b82e744 (patch) | |
tree | b2ec49fdcc88a34c4c2f80ead9548358a382da77 /src/fltk_binding/fltk-widgets-buttons-light-check.adb | |
parent | ed6fcd873aad9e574de0b2c6311d1c4404cb76dc (diff) |
The Great Package Naming Style Change(tm)
Diffstat (limited to 'src/fltk_binding/fltk-widgets-buttons-light-check.adb')
-rw-r--r-- | src/fltk_binding/fltk-widgets-buttons-light-check.adb | 53 |
1 files changed, 53 insertions, 0 deletions
diff --git a/src/fltk_binding/fltk-widgets-buttons-light-check.adb b/src/fltk_binding/fltk-widgets-buttons-light-check.adb new file mode 100644 index 0000000..319db9f --- /dev/null +++ b/src/fltk_binding/fltk-widgets-buttons-light-check.adb @@ -0,0 +1,53 @@ + + +with Interfaces.C; +with System; +use type System.Address; + + +package body FLTK.Widgets.Buttons.Light.Check is + + + function new_fl_check_button + (X, Y, W, H : in Interfaces.C.int; + L : in Interfaces.C.char_array) + return System.Address; + pragma Import (C, new_fl_check_button, "new_fl_check_button"); + + procedure free_fl_check_button + (B : in System.Address); + pragma Import (C, free_fl_check_button, "free_fl_check_button"); + + + + + procedure Finalize (This : in out Check_Button) is + begin + if (This.Void_Ptr /= System.Null_Address) then + free_fl_check_button (This.Void_Ptr); + end if; + end Finalize; + + + + + function Create + (X, Y, W, H : Integer; + Label : String) + return Check_Button is + + VP : System.Address; + + begin + VP := new_fl_check_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.Light.Check; + |