summaryrefslogtreecommitdiff
path: root/fltk-widgets-buttons-light-round.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-widgets-buttons-light-round.adb
parentcbe99e357fff28fb6aa3db7bec03756385c8928c (diff)
The Great Package Naming Style Change(tm)
Diffstat (limited to 'fltk-widgets-buttons-light-round.adb')
-rw-r--r--fltk-widgets-buttons-light-round.adb53
1 files changed, 53 insertions, 0 deletions
diff --git a/fltk-widgets-buttons-light-round.adb b/fltk-widgets-buttons-light-round.adb
new file mode 100644
index 0000000..a9510ab
--- /dev/null
+++ b/fltk-widgets-buttons-light-round.adb
@@ -0,0 +1,53 @@
+
+
+with Interfaces.C;
+with System;
+use type System.Address;
+
+
+package body FLTK.Widgets.Buttons.Light.Round is
+
+
+ function new_fl_round_button
+ (X, Y, W, H : in Interfaces.C.int;
+ L : in Interfaces.C.char_array)
+ return System.Address;
+ pragma Import (C, new_fl_round_button, "new_fl_round_button");
+
+ procedure free_fl_round_button
+ (B : in System.Address);
+ pragma Import (C, free_fl_round_button, "free_fl_round_button");
+
+
+
+
+ procedure Finalize (This : in out Round_Button) is
+ begin
+ if (This.Void_Ptr /= System.Null_Address) then
+ free_fl_round_button (This.Void_Ptr);
+ end if;
+ end Finalize;
+
+
+
+
+ function Create
+ (X, Y, W, H : Integer;
+ Label : String)
+ return Round_Button is
+
+ VP : System.Address;
+
+ begin
+ VP := new_fl_round_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.Round;
+