child_site()
click to toggle source
def child_site
window(tk_call(@path, 'childsite'))
end
justify(dir)
click to toggle source
def justify(dir)
tk_call(@path, 'justify', dir)
self
end
xview(*index)
click to toggle source
def xview(*index)
if index.size == 0
list(tk_send_without_enc('xview'))
else
tk_send_without_enc('xview', *index)
self
end
end
xview_moveto(*index)
click to toggle source
def xview_moveto(*index)
xview('moveto', *index)
end
yview(*index)
click to toggle source
def yview(*index)
if index.size == 0
list(tk_send_without_enc('yview'))
else
tk_send_without_enc('yview', *index)
self
end
end
yview_moveto(*index)
click to toggle source
def yview_moveto(*index)
yview('moveto', *index)
end