diff options
author | Jedidiah Barber <contact@jedbarber.id.au> | 2024-11-16 10:30:34 +1300 |
---|---|---|
committer | Jedidiah Barber <contact@jedbarber.id.au> | 2024-11-16 10:30:34 +1300 |
commit | f5f77c762534ed15adc557009d1a645e5fd998a5 (patch) | |
tree | 7b9d8c3099c303c74bf41079e9a0785983bd8a31 /src/fltk-widgets-charts.ads | |
parent | 66fba2bf75c5fc3deb2690a6a66cf504f47b7652 (diff) |
Reworked widget init/create subprograms
Diffstat (limited to 'src/fltk-widgets-charts.ads')
-rw-r--r-- | src/fltk-widgets-charts.ads | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/fltk-widgets-charts.ads b/src/fltk-widgets-charts.ads index cf4ee47..409090f 100644 --- a/src/fltk-widgets-charts.ads +++ b/src/fltk-widgets-charts.ads @@ -135,7 +135,11 @@ private overriding procedure Finalize (This : in out Chart); - + procedure Extra_Init + (This : in out Chart; + X, Y, W, H : in Integer; + Text : in String) + with Inline; pragma Inline (Add); @@ -143,7 +147,6 @@ private pragma Inline (Replace); pragma Inline (Clear); - pragma Inline (Will_Autosize); pragma Inline (Set_Autosize); pragma Inline (Get_Bounds); @@ -152,7 +155,6 @@ private pragma Inline (Set_Maximum_Size); pragma Inline (Get_Size); - pragma Inline (Get_Text_Color); pragma Inline (Set_Text_Color); pragma Inline (Get_Text_Font); @@ -160,10 +162,8 @@ private pragma Inline (Get_Text_Size); pragma Inline (Set_Text_Size); - pragma Inline (Resize); - pragma Inline (Draw); pragma Inline (Handle); |