summaryrefslogtreecommitdiff
path: root/body/fltk-widgets-groups-windows-double-overlay.adb
diff options
context:
space:
mode:
authorJedidiah Barber <contact@jedbarber.id.au>2025-02-06 19:28:33 +1300
committerJedidiah Barber <contact@jedbarber.id.au>2025-02-06 19:28:33 +1300
commit547e538476a788dfeb5974f9b8ad29441d18980b (patch)
tree00a3c7d80ee403969971bc4b814876b4399f3ada /body/fltk-widgets-groups-windows-double-overlay.adb
parentbefe66a0a98a58e0bdb31bb8c2db4a975a744072 (diff)
Slightly better / more consistent comments
Diffstat (limited to 'body/fltk-widgets-groups-windows-double-overlay.adb')
-rw-r--r--body/fltk-widgets-groups-windows-double-overlay.adb24
1 files changed, 15 insertions, 9 deletions
diff --git a/body/fltk-widgets-groups-windows-double-overlay.adb b/body/fltk-widgets-groups-windows-double-overlay.adb
index c4460f1..e6d00cf 100644
--- a/body/fltk-widgets-groups-windows-double-overlay.adb
+++ b/body/fltk-widgets-groups-windows-double-overlay.adb
@@ -22,6 +22,8 @@ package body FLTK.Widgets.Groups.Windows.Double.Overlay is
-- Functions From C --
------------------------
+ -- Allocation --
+
function new_fl_overlay_window
(X, Y, W, H : in Interfaces.C.int;
Text : in Interfaces.C.char_array)
@@ -44,6 +46,8 @@ package body FLTK.Widgets.Groups.Windows.Double.Overlay is
+ -- Visibility --
+
procedure fl_overlay_window_show
(W : in Storage.Integer_Address);
pragma Import (C, fl_overlay_window_show, "fl_overlay_window_show");
@@ -69,6 +73,8 @@ package body FLTK.Widgets.Groups.Windows.Double.Overlay is
+ -- Settings --
+
function fl_overlay_window_can_do_overlay
(W : in Storage.Integer_Address)
return Interfaces.C.int;
@@ -84,6 +90,8 @@ package body FLTK.Widgets.Groups.Windows.Double.Overlay is
+ -- Drawing, Events --
+
procedure fl_overlay_window_draw
(W : in Storage.Integer_Address);
pragma Import (C, fl_overlay_window_draw, "fl_overlay_window_draw");
@@ -233,9 +241,11 @@ package body FLTK.Widgets.Groups.Windows.Double.Overlay is
- ---------------
- -- Display --
- ---------------
+ -----------------------
+ -- API Subprograms --
+ -----------------------
+
+ -- Visibility --
procedure Show
(This : in out Overlay_Window) is
@@ -267,9 +277,7 @@ package body FLTK.Widgets.Groups.Windows.Double.Overlay is
- -------------
- -- Other --
- -------------
+ -- Settings --
function Can_Do_Overlay
(This : in Overlay_Window)
@@ -294,9 +302,7 @@ package body FLTK.Widgets.Groups.Windows.Double.Overlay is
- ----------------------------------
- -- Drawing and Event Handling --
- ----------------------------------
+ -- Drawing, Events --
procedure Draw_Overlay
(This : in out Overlay_Window) is