From f15e45791a0658fd5a062629f59c4815ce8b2489 Mon Sep 17 00:00:00 2001 From: Jed Barber Date: Sat, 28 May 2016 14:53:13 +1000 Subject: Text editors, single and menu windows --- fltk-widgets-groups-text_displays-text_editors.ads | 27 ++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 fltk-widgets-groups-text_displays-text_editors.ads (limited to 'fltk-widgets-groups-text_displays-text_editors.ads') diff --git a/fltk-widgets-groups-text_displays-text_editors.ads b/fltk-widgets-groups-text_displays-text_editors.ads new file mode 100644 index 0000000..c29b107 --- /dev/null +++ b/fltk-widgets-groups-text_displays-text_editors.ads @@ -0,0 +1,27 @@ + + +package FLTK.Widgets.Groups.Text_Displays.Text_Editors is + + + type Text_Editor is new Text_Display with private; + type Text_Editor_Access is access all Text_Editor; + + + function Create + (X, Y, W, H : in Integer; + Label : in String) + return Text_Editor; + + +private + + + type Text_Editor is new Text_Display with null record; + + + overriding procedure Finalize + (This : in out Text_Editor); + + +end FLTK.Widgets.Groups.Text_Displays.Text_Editors; + -- cgit