add(*items)
click to toggle source
def add(*items)
@t.tag_add(@id, *items)
end
added?(item)
click to toggle source
bind(seq, *args)
click to toggle source
def bind(seq, *args)
if TkComm._callback_entry?(args[0]) || !block_given?
cmd = args.shift
else
cmd = Proc.new
end
@t.tag_bind(@id, seq, cmd, *args)
self
end
bind_append(seq, *args)
click to toggle source
def bind_append(seq, *args)
if TkComm._callback_entry?(args[0]) || !block_given?
cmd = args.shift
else
cmd = Proc.new
end
@t.tag_bind_append(@id, seq, cmd, *args)
self
end
bind_remove(seq)
click to toggle source
def bind_remove(seq)
@t.tag_bind_remove(@id, seq)
self
end
bindinfo(seq=nil)
click to toggle source
def bindinfo(seq=nil)
@t.tag_bindinfo(@id, seq)
end
cget(option)
click to toggle source
def cget(option)
@t.tagcget(@id, option)
end
cget_strict(option)
click to toggle source
def cget_strict(option)
@t.tagcget_strict(@id, option)
end
cget_tkstring(option)
click to toggle source
def cget_tkstring(option)
@t.tagcget_tkstring(@id, option)
end
configinfo(key=nil)
click to toggle source
def configinfo(key=nil)
@t.tagconfiginfo(@id, key)
end
current_configinfo(key=nil)
click to toggle source
def current_configinfo(key=nil)
@t.current_tagconfiginfo(@id, key)
end
id()
click to toggle source
mutex()
click to toggle source
remove(*items)
click to toggle source
def remove(*items)
@t.tag_remove(@id, *items)
end
tag_has()
click to toggle source
def tag_has
@t.tag_has(@id)
end
tag_has?(item)
click to toggle source
def tag_has?(item)
@t.tag_has?(@id, item)
end