summaryrefslogtreecommitdiff
path: root/fltk-text_buffers.ads
diff options
context:
space:
mode:
authorJed Barber <jjbarber@y7mail.com>2016-11-13 18:44:21 +1100
committerJed Barber <jjbarber@y7mail.com>2016-11-13 18:44:21 +1100
commit6fa5de9c6015c2d93aac1f3e379844fc36ff865f (patch)
tree585753829a21867c8733459a35671c14f899d5d3 /fltk-text_buffers.ads
parent0f9b0b9259ada50de7f8866f9591ce4ad3e7eadc (diff)
Added jump to feature
Diffstat (limited to 'fltk-text_buffers.ads')
-rw-r--r--fltk-text_buffers.ads14
1 files changed, 14 insertions, 0 deletions
diff --git a/fltk-text_buffers.ads b/fltk-text_buffers.ads
index a021dbf..5b260d6 100644
--- a/fltk-text_buffers.ads
+++ b/fltk-text_buffers.ads
@@ -91,6 +91,20 @@ package FLTK.Text_Buffers is
Start, Finish : in Natural);
+ -- only takes into account newline characters, not word wrap
+ function Skip_Lines
+ (This : in out Text_Buffer;
+ Start, Lines : in Natural)
+ return Natural;
+
+
+ -- only takes into account newline characters, not word wrap
+ function Rewind_Lines
+ (This : in out Text_Buffer;
+ Start, Lines : in Natural)
+ return Natural;
+
+
private