summaryrefslogtreecommitdiff
path: root/src/fltk-widgets-groups-text_displays.adb
diff options
context:
space:
mode:
Diffstat (limited to 'src/fltk-widgets-groups-text_displays.adb')
-rw-r--r--src/fltk-widgets-groups-text_displays.adb15
1 files changed, 10 insertions, 5 deletions
diff --git a/src/fltk-widgets-groups-text_displays.adb b/src/fltk-widgets-groups-text_displays.adb
index 7a9863f..d818490 100644
--- a/src/fltk-widgets-groups-text_displays.adb
+++ b/src/fltk-widgets-groups-text_displays.adb
@@ -483,6 +483,15 @@ package body FLTK.Widgets.Groups.Text_Displays is
+ procedure Extra_Init
+ (This : in out Text_Display;
+ X, Y, W, H : in Integer;
+ Text : in String) is
+ begin
+ Extra_Init (Group (This), X, Y, W, H, Text);
+ end Extra_Init;
+
+
package body Forge is
function Create
@@ -497,15 +506,11 @@ package body FLTK.Widgets.Groups.Text_Displays is
Interfaces.C.int (W),
Interfaces.C.int (H),
Interfaces.C.To_C (Text));
- fl_group_end (This.Void_Ptr);
- fl_widget_set_user_data
- (This.Void_Ptr,
- Storage.To_Integer (Widget_Convert.To_Address (This'Unchecked_Access)));
+ Extra_Init (This, X, Y, W, H, Text);
text_display_set_draw_hook
(This.Void_Ptr, Storage.To_Integer (Draw_Hook'Address));
text_display_set_handle_hook
(This.Void_Ptr, Storage.To_Integer (Handle_Hook'Address));
- fl_widget_set_label (This.Void_Ptr, Interfaces.C.To_C (Text));
end return;
end Create;