# File tk/lib/tkextlib/iwidgets/selectiondialog.rb, line 22
def child_site
window(tk_call(@path, 'childsite'))
end
# File tk/lib/tkextlib/iwidgets/selectiondialog.rb, line 26
def clear_items
tk_call(@path, 'clear', 'items')
self
end
# File tk/lib/tkextlib/iwidgets/selectiondialog.rb, line 31
def clear_selection
tk_call(@path, 'clear', 'selection')
self
end
based on Tk::Listbox ( and TkTextWin )
# File tk/lib/tkextlib/iwidgets/selectiondialog.rb, line 54
def curselection
list(tk_send_without_enc('curselection'))
end
# File tk/lib/tkextlib/iwidgets/selectiondialog.rb, line 57
def delete(first, last=None)
tk_send_without_enc('delete', first, last)
self
end
# File tk/lib/tkextlib/iwidgets/selectiondialog.rb, line 36
def get
tk_call(@path, 'get')
end
# File tk/lib/tkextlib/iwidgets/selectiondialog.rb, line 61
def index(idx)
tk_send_without_enc('index', idx).to_i
end
# File tk/lib/tkextlib/iwidgets/selectiondialog.rb, line 40
def insert_items(idx, *args)
tk_call(@path, 'insert', 'items', idx, *args)
end
# File tk/lib/tkextlib/iwidgets/selectiondialog.rb, line 44
def insert_selection(pos, text)
tk_call(@path, 'insert', 'selection', pos, text)
end
# File tk/lib/tkextlib/iwidgets/selectiondialog.rb, line 64
def nearest(y)
tk_send_without_enc('nearest', y).to_i
end
# File tk/lib/tkextlib/iwidgets/selectiondialog.rb, line 71
def scan_dragto(x, y)
tk_send_without_enc('scan', 'dragto', x, y)
self
end
# File tk/lib/tkextlib/iwidgets/selectiondialog.rb, line 67
def scan_mark(x, y)
tk_send_without_enc('scan', 'mark', x, y)
self
end
# File tk/lib/tkextlib/iwidgets/selectiondialog.rb, line 48
def select_item
tk_call(@path, 'selectitem')
self
end
# File tk/lib/tkextlib/iwidgets/selectiondialog.rb, line 75
def selection_anchor(index)
tk_send_without_enc('selection', 'anchor', index)
self
end
# File tk/lib/tkextlib/iwidgets/selectiondialog.rb, line 79
def selection_clear(first, last=None)
tk_send_without_enc('selection', 'clear', first, last)
self
end
# File tk/lib/tkextlib/iwidgets/selectiondialog.rb, line 83
def selection_includes(index)
bool(tk_send_without_enc('selection', 'includes', index))
end
Commenting is here to help enhance the documentation. For example, code samples, or clarification of the documentation.
If you have questions about Ruby or the documentation, please post to one of the Ruby mailing lists. You will get better, faster, help that way.
If you wish to post a correction of the docs, please do so, but also file bug report so that it can be corrected for the next release. Thank you.
If you want to help improve the Ruby documentation, please visit Documenting-ruby.org.