summaryrefslogtreecommitdiff
path: root/ext/tk/lib/tk/txtwin_abst.rb
blob: 540f806d17d592482802753a96fbe9e60477f413 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
#
# tk/txtwin_abst.rb : TkTextWin abstruct class
#
require 'tk'

class TkTextWin<TkWindow
  TkCommandNames = [].freeze
  #def create_self
  #  fail RuntimeError, "TkTextWin is an abstract class"
  #end
  #private :create_self

  def bbox(index)
    list(tk_send_without_enc('bbox', index))
  end
  def delete(first, last=None)
    tk_send_without_enc('delete', first, last)
    self
  end
  def get(*index)
    _fromUTF8(tk_send_without_enc('get', *index))
  end
  def insert(index, *args)
    tk_send('insert', index, *args)
    self
  end
  def scan_mark(x, y)
    tk_send_without_enc('scan', 'mark', x, y)
    self
  end
  def scan_dragto(x, y)
    tk_send_without_enc('scan', 'dragto', x, y)
    self
  end
  def see(index)
    tk_send_without_enc('see', index)
    self
  end
end