summaryrefslogtreecommitdiff
path: root/body/fltk-widgets-groups-tables-row.adb
diff options
context:
space:
mode:
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;