diff options
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; + |