diff options
| author | nagai <nagai@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2003-07-30 07:15:00 +0000 |
|---|---|---|
| committer | nagai <nagai@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2003-07-30 07:15:00 +0000 |
| commit | 14529fe9a07b7fd57f3f1e00d3547c93f9b6aee9 (patch) | |
| tree | d933554bf3086ff89f359a5489a7b5aea61b304f /ext/tk/lib/tkentry.rb | |
| parent | 92ecbce72f93136625c41170d927c0896a7f01dc (diff) | |
| download | ruby-14529fe9a07b7fd57f3f1e00d3547c93f9b6aee9.tar.gz ruby-14529fe9a07b7fd57f3f1e00d3547c93f9b6aee9.tar.xz ruby-14529fe9a07b7fd57f3f1e00d3547c93f9b6aee9.zip | |
* bug fix
* fix lack of methods for TkEntry
* fix reference of uninitialized variables
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@4231 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'ext/tk/lib/tkentry.rb')
| -rw-r--r-- | ext/tk/lib/tkentry.rb | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/ext/tk/lib/tkentry.rb b/ext/tk/lib/tkentry.rb index 62b6535ef..ccfb7928a 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 |
