summaryrefslogtreecommitdiff
path: root/src/fltk-widgets-buttons-light-round.adb
diff options
context:
space:
mode:
Diffstat (limited to 'src/fltk-widgets-buttons-light-round.adb')
-rw-r--r--src/fltk-widgets-buttons-light-round.adb17
1 files changed, 12 insertions, 5 deletions
diff --git a/src/fltk-widgets-buttons-light-round.adb b/src/fltk-widgets-buttons-light-round.adb
index d047603..7b10003 100644
--- a/src/fltk-widgets-buttons-light-round.adb
+++ b/src/fltk-widgets-buttons-light-round.adb
@@ -1,8 +1,13 @@
-with Interfaces.C;
-with System;
-use type System.Address;
+with
+
+ Interfaces.C,
+ System;
+
+use type
+
+ System.Address;
package body FLTK.Widgets.Buttons.Light.Round is
@@ -17,6 +22,8 @@ package body FLTK.Widgets.Buttons.Light.Round is
pragma Import (C, round_button_set_handle_hook, "round_button_set_handle_hook");
+
+
function new_fl_round_button
(X, Y, W, H : in Interfaces.C.int;
Text : in Interfaces.C.char_array)
@@ -28,6 +35,8 @@ package body FLTK.Widgets.Buttons.Light.Round is
pragma Import (C, free_fl_round_button, "free_fl_round_button");
+
+
procedure fl_round_button_draw
(W : in System.Address);
pragma Import (C, fl_round_button_draw, "fl_round_button_draw");
@@ -86,8 +95,6 @@ package body FLTK.Widgets.Buttons.Light.Round is
end Draw;
-
-
function Handle
(This : in out Round_Button;
Event : in Event_Kind)