diff options
author | Jed Barber <jjbarber@y7mail.com> | 2016-09-16 04:10:49 +1000 |
---|---|---|
committer | Jed Barber <jjbarber@y7mail.com> | 2016-09-16 04:10:49 +1000 |
commit | a4b14b883f918161d2c235a52730d159b2f9ca7a (patch) | |
tree | e157eaac1f41c2c575def19e477bf1983fa67a8c /fltk-widgets-groups-text_displays-text_editors.ads | |
parent | 1c0383b276531367c579549b4b640e9de0184500 (diff) |
Adapad menus and callbacks now present in skeleton form, also Text_Buffers have callbacks too
Diffstat (limited to 'fltk-widgets-groups-text_displays-text_editors.ads')
-rw-r--r-- | fltk-widgets-groups-text_displays-text_editors.ads | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/fltk-widgets-groups-text_displays-text_editors.ads b/fltk-widgets-groups-text_displays-text_editors.ads index 5b179b9..37e5464 100644 --- a/fltk-widgets-groups-text_displays-text_editors.ads +++ b/fltk-widgets-groups-text_displays-text_editors.ads @@ -12,6 +12,22 @@ package FLTK.Widgets.Groups.Text_Displays.Text_Editors is return Text_Editor; + procedure Cut + (This : in out Text_Editor); + + + procedure Copy + (This : in out Text_Editor); + + + procedure Paste + (This : in out Text_Editor); + + + procedure Delete + (This : in out Text_Editor); + + private |