summaryrefslogtreecommitdiff
path: root/src/fltk-widgets-buttons-light-check.adb
diff options
context:
space:
mode:
Diffstat (limited to 'src/fltk-widgets-buttons-light-check.adb')
-rw-r--r--src/fltk-widgets-buttons-light-check.adb17
1 files changed, 12 insertions, 5 deletions
diff --git a/src/fltk-widgets-buttons-light-check.adb b/src/fltk-widgets-buttons-light-check.adb
index e0e25b4..b367cd3 100644
--- a/src/fltk-widgets-buttons-light-check.adb
+++ b/src/fltk-widgets-buttons-light-check.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.Check is
@@ -17,6 +22,8 @@ package body FLTK.Widgets.Buttons.Light.Check is
pragma Import (C, check_button_set_handle_hook, "check_button_set_handle_hook");
+
+
function new_fl_check_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.Check is
pragma Import (C, free_fl_check_button, "free_fl_check_button");
+
+
procedure fl_check_button_draw
(W : in System.Address);
pragma Import (C, fl_check_button_draw, "fl_check_button_draw");
@@ -86,8 +95,6 @@ package body FLTK.Widgets.Buttons.Light.Check is
end Draw;
-
-
function Handle
(This : in out Check_Button;
Event : in Event_Kind)