summaryrefslogtreecommitdiff
path: root/ext/tk/lib/tkentry.rb
diff options
context:
space:
mode:
Diffstat (limited to 'ext/tk/lib/tkentry.rb')
-rw-r--r--ext/tk/lib/tkentry.rb7
1 files changed, 7 insertions, 0 deletions
diff --git a/ext/tk/lib/tkentry.rb b/ext/tk/lib/tkentry.rb
index 62b6535ef3..ccfb7928ac 100644
--- a/ext/tk/lib/tkentry.rb
+++ b/ext/tk/lib/tkentry.rb
@@ -140,6 +140,9 @@ class TkEntry<TkLabel
self
end
+ def bbox(index)
+ list(tk_send('bbox', index))
+ end
def cursor
number(tk_send('index', 'insert'))
end
@@ -154,6 +157,10 @@ class TkEntry<TkLabel
tk_send 'insert', pos, text
self
end
+ def delete(first, last=None)
+ tk_send 'insert', first, last
+ self
+ end
def mark(pos)
tk_send 'scan', 'mark', pos
self