diff options
author | Jed Barber <jjbarber@y7mail.com> | 2016-05-28 14:53:13 +1000 |
---|---|---|
committer | Jed Barber <jjbarber@y7mail.com> | 2016-05-28 14:53:13 +1000 |
commit | f15e45791a0658fd5a062629f59c4815ce8b2489 (patch) | |
tree | ed455c095cba8777b8a9a0c6dfe7b994023c5cd1 /fltk-widgets-groups-text_displays-text_editors.ads | |
parent | 32062c660307d5b34f46b1f7b75d17a184930e71 (diff) |
Text editors, single and menu windows
Diffstat (limited to 'fltk-widgets-groups-text_displays-text_editors.ads')
-rw-r--r-- | fltk-widgets-groups-text_displays-text_editors.ads | 27 |
1 files changed, 27 insertions, 0 deletions
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; + |