mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
3dd3b2136b
* ext/tk/lib/tk.rb, ext/tk/lib/tk/canvas.rb, ext/tk/lib/tk/entry.rb, ext/tk/lib/tk/frame.rb, ext/tk/lib/tk/image.rb, ext/tk/lib/tk/itemconfig.rb, ext/tk/lib/tk/labelframe.rb, ext/tk/lib/tk/listbox.rb, ext/tk/lib/tk/menu.rb, ext/tk/lib/tk/radiobutton.rb, ext/tk/lib/tk/scale.rb, ext/tk/lib/tk/spinbox.rb, ext/tk/lib/tk/text.rb, ext/tk/lib/tk/toplevel.rb: improve conversion of option values. * ext/tk/lib/tkextlib/*: ditto. * ext/tk/lib/tkextlib/*: update to support ActiveTcl8.4.11.2. * ext/tk/lib/tkextlib/trofs/*: support Trofs 0.4.3. * ext/tk/lib/tkextlib/tile/*: support Tile 0.7.2. * ext/tk/lib/tkextlib/vu/*: support vu 2.3.0. * ext/tk/lib/tkextlib/tcllib/*: support Tcllib 1.8 (Tklib 0.3). git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9448 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
110 lines
2.5 KiB
Ruby
110 lines
2.5 KiB
Ruby
#
|
|
# tkextlib/blt/htext.rb
|
|
# by Hidetoshi NAGAI (nagai@ai.kyutech.ac.jp)
|
|
#
|
|
|
|
require 'tk'
|
|
require 'tk/itemconfig.rb'
|
|
require 'tkextlib/blt.rb'
|
|
|
|
module Tk::BLT
|
|
class Htext<TkWindow
|
|
Htext_Var = TkVarAccess.new_hash('htext')
|
|
Htext_Widget = TkVarAccess.new('htext(widget)', :window)
|
|
Htext_File = TkVarAccess.new('htext(file)')
|
|
Htext_Line = TkVarAccess.new('htext(line)')
|
|
|
|
include TkItemConfigMethod
|
|
include Scrollable
|
|
|
|
TkCommandNames = ['::blt::htext'.freeze].freeze
|
|
WidgetClassName = 'Htext'.freeze
|
|
WidgetClassNames[WidgetClassName] = self
|
|
|
|
alias window_cget itemcget
|
|
alias window_configure itemconfigure
|
|
alias window_configuinfo itemconfiginfo
|
|
alias current_window_configuinfo current_itemconfiginfo
|
|
|
|
def __strval_optkeys
|
|
super() << 'filename'
|
|
end
|
|
private :__strval_optkeys
|
|
|
|
def append(win, keys={})
|
|
tk_send('append', _epath(win), keys)
|
|
self
|
|
end
|
|
|
|
def goto_line(idx)
|
|
tk_send_without_enc('gotoline', idx)
|
|
self
|
|
end
|
|
def current_line
|
|
number(tk_send_without_enc('gotoline'))
|
|
end
|
|
|
|
def index(str)
|
|
number(tk_send('index', str))
|
|
end
|
|
|
|
def line_pos(str)
|
|
tk_send('linepos', str)
|
|
end
|
|
|
|
def range(from=None, to=None)
|
|
tk_send_without_enc('range', from, to)
|
|
end
|
|
|
|
def scan_mark(pos)
|
|
tk_send_without_enc('scan', 'mark', pos)
|
|
self
|
|
end
|
|
|
|
def scan_dragto(pos)
|
|
tk_send_without_enc('scan', 'dragto', pos)
|
|
self
|
|
end
|
|
|
|
def search(pat, from=None, to=None)
|
|
num = number(tk_send('search', pat, from, to))
|
|
(num < 0)? nil: num
|
|
end
|
|
|
|
def selection_adjust(index)
|
|
tk_send_without_enc('selection', 'adjust', index)
|
|
self
|
|
end
|
|
def selection_clear()
|
|
tk_send_without_enc('selection', 'clear')
|
|
self
|
|
end
|
|
def selection_from(index)
|
|
tk_send_without_enc('selection', 'from', index)
|
|
self
|
|
end
|
|
def selection_line(index)
|
|
tk_send_without_enc('selection', 'line', index)
|
|
self
|
|
end
|
|
def selection_present()
|
|
bool(tk_send_without_enc('selection', 'present'))
|
|
end
|
|
def selection_range(first, last)
|
|
tk_send_without_enc('selection', 'range', first, last)
|
|
self
|
|
end
|
|
def selection_to(index)
|
|
tk_send_without_enc('selection', 'to', index)
|
|
self
|
|
end
|
|
def selection_word(index)
|
|
tk_send_without_enc('selection', 'word', index)
|
|
self
|
|
end
|
|
|
|
def windows(pat=None)
|
|
list(tk_send('windows', pat))
|
|
end
|
|
end
|
|
end
|