summaryrefslogtreecommitdiff
path: root/fltk-widget-button-light-radio.adb
diff options
context:
space:
mode:
authorJed Barber <jjbarber@y7mail.com>2016-05-26 00:38:43 +1000
committerJed Barber <jjbarber@y7mail.com>2016-05-26 00:38:43 +1000
commit0f28695be695a0b2e8fbfff388c61cb69cdc03af (patch)
tree9b9de86c8c308f9fdac949620d4deec6d21a3710 /fltk-widget-button-light-radio.adb
parentcbe99e357fff28fb6aa3db7bec03756385c8928c (diff)
The Great Package Naming Style Change(tm)
Diffstat (limited to 'fltk-widget-button-light-radio.adb')
-rw-r--r--fltk-widget-button-light-radio.adb53
1 files changed, 0 insertions, 53 deletions
diff --git a/fltk-widget-button-light-radio.adb b/fltk-widget-button-light-radio.adb
deleted file mode 100644
index d3a5e48..0000000
--- a/fltk-widget-button-light-radio.adb
+++ /dev/null
@@ -1,53 +0,0 @@
-
-
-with Interfaces.C;
-with System;
-use type System.Address;
-
-
-package body FLTK.Widget.Button.Light.Radio is
-
-
- function new_fl_radio_light_button
- (X, Y, W, H : in Interfaces.C.int;
- L : in Interfaces.C.char_array)
- return System.Address;
- pragma Import (C, new_fl_radio_light_button, "new_fl_radio_light_button");
-
- procedure free_fl_radio_light_button
- (B : in System.Address);
- pragma Import (C, free_fl_radio_light_button, "free_fl_radio_light_button");
-
-
-
-
- procedure Finalize (This : in out Radio_Type) is
- begin
- if (This.Void_Ptr /= System.Null_Address) then
- free_fl_radio_light_button (This.Void_Ptr);
- end if;
- end Finalize;
-
-
-
-
- function Create
- (X, Y, W, H : Integer;
- Label : String)
- return Radio_Type is
-
- VP : System.Address;
-
- begin
- VP := new_fl_radio_light_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.Widget.Button.Light.Radio;
-