summaryrefslogtreecommitdiff
path: root/body/fltk-widgets-groups-tables-row.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-tables-row.adb
parentbefe66a0a98a58e0bdb31bb8c2db4a975a744072 (diff)
Slightly better / more consistent comments
Diffstat (limited to 'body/fltk-widgets-groups-tables-row.adb')
-rw-r--r--body/fltk-widgets-groups-tables-row.adb20
1 files changed, 20 insertions, 0 deletions
diff --git a/body/fltk-widgets-groups-tables-row.adb b/body/fltk-widgets-groups-tables-row.adb
index 2063470..5848cb9 100644
--- a/body/fltk-widgets-groups-tables-row.adb
+++ b/body/fltk-widgets-groups-tables-row.adb
@@ -26,6 +26,8 @@ package body FLTK.Widgets.Groups.Tables.Row is
-- Functions From C --
------------------------
+ -- Allocation --
+
function new_fl_table_row
(X, Y, W, H : in Interfaces.C.int;
Text : in Interfaces.C.char_array)
@@ -41,6 +43,8 @@ package body FLTK.Widgets.Groups.Tables.Row is
+ -- Rows --
+
function fl_table_row_get_rows
(T : in Storage.Integer_Address)
return Interfaces.C.int;
@@ -56,6 +60,8 @@ package body FLTK.Widgets.Groups.Tables.Row is
+ -- Selection --
+
function fl_table_row_row_selected
(T : in Storage.Integer_Address;
R : in Interfaces.C.int)
@@ -91,6 +97,8 @@ package body FLTK.Widgets.Groups.Tables.Row is
+ -- Drawing, Events --
+
procedure fl_table_row_draw
(T : in Storage.Integer_Address);
pragma Import (C, fl_table_row_draw, "fl_table_row_draw");
@@ -201,6 +209,12 @@ package body FLTK.Widgets.Groups.Tables.Row is
+ -----------------------
+ -- API Subprograms --
+ -----------------------
+
+ -- Contents Modification --
+
procedure Clear
(This : in out Row_Table) is
begin
@@ -212,6 +226,8 @@ package body FLTK.Widgets.Groups.Tables.Row is
+ -- Rows --
+
function Get_Rows
(This : in Row_Table)
return Natural
@@ -236,6 +252,8 @@ package body FLTK.Widgets.Groups.Tables.Row is
+ -- Selection --
+
function Is_Row_Selected
(This : in Row_Table;
Row : in Positive)
@@ -329,6 +347,8 @@ package body FLTK.Widgets.Groups.Tables.Row is
+ -- Drawing, Events --
+
procedure Cell_Dimensions
(This : in Row_Table;
Context : in Table_Context;