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 | 0f28695be695a0b2e8fbfff388c61cb69cdc03af (patch) | |
tree | 9b9de86c8c308f9fdac949620d4deec6d21a3710 /fltk-widgets-inputs.adb | |
parent | cbe99e357fff28fb6aa3db7bec03756385c8928c (diff) |
The Great Package Naming Style Change(tm)
Diffstat (limited to 'fltk-widgets-inputs.adb')
-rw-r--r-- | fltk-widgets-inputs.adb | 47 |
1 files changed, 47 insertions, 0 deletions
diff --git a/fltk-widgets-inputs.adb b/fltk-widgets-inputs.adb new file mode 100644 index 0000000..436ef36 --- /dev/null +++ b/fltk-widgets-inputs.adb @@ -0,0 +1,47 @@ + + +with Interfaces.C; +with System; +use type System.Address; + + +package body FLTK.Widgets.Inputs is + + + function new_fl_input + (X, Y, W, H : Interfaces.C.int; + L : Interfaces.C.char_array) + return System.Address; + pragma Import (C, new_fl_input, "new_fl_input"); + + procedure free_fl_input (F : in System.Address); + pragma Import (C, free_fl_input, "free_fl_input"); + + + + + procedure Finalize (This : in out Input) is + begin + if (This.Void_Ptr /= System.Null_Address) then + free_fl_input (This.Void_Ptr); + end if; + end Finalize; + + + + + function Create (X, Y, W, H : Integer; Label : String) return Input is + VP : System.Address; + begin + VP := new_fl_input + (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.Inputs; + |