class Tk::Iwidgets::Entryfield
Constants
- TkCommandNames
- WidgetClassName
Public Instance Methods
__validation_class_list()
click to toggle source
Calls superclass method
Tk::ValidateConfigure#__validation_class_list
# File lib/tkextlib/iwidgets/entryfield.rb, line 73 def __validation_class_list super() << EntryfieldValidate end
clear()
click to toggle source
# File lib/tkextlib/iwidgets/entryfield.rb, line 81 def clear tk_call(@path, 'clear') self end
cursor=(index)
click to toggle source
# File lib/tkextlib/iwidgets/entryfield.rb, line 102 def cursor=(index) tk_send_without_enc('icursor', index) #self index end
Also aliased as: icursor
delete(first, last=None)
click to toggle source
# File lib/tkextlib/iwidgets/entryfield.rb, line 86 def delete(first, last=None) tk_send_without_enc('delete', first, last) self end
dragto(pos)
click to toggle source
# File lib/tkextlib/iwidgets/entryfield.rb, line 122 def dragto(pos) tk_send_without_enc('scan', 'dragto', pos) self end
index(index)
click to toggle source
# File lib/tkextlib/iwidgets/entryfield.rb, line 109 def index(index) number(tk_send_without_enc('index', index)) end
insert(pos,text)
click to toggle source
# File lib/tkextlib/iwidgets/entryfield.rb, line 113 def insert(pos,text) tk_send_without_enc('insert', pos, _get_eval_enc_str(text)) self end
mark(pos)
click to toggle source
# File lib/tkextlib/iwidgets/entryfield.rb, line 118 def mark(pos) tk_send_without_enc('scan', 'mark', pos) self end
selection_adjust(index)
click to toggle source
# File lib/tkextlib/iwidgets/entryfield.rb, line 126 def selection_adjust(index) tk_send_without_enc('selection', 'adjust', index) self end
selection_clear()
click to toggle source
# File lib/tkextlib/iwidgets/entryfield.rb, line 130 def selection_clear tk_send_without_enc('selection', 'clear') self end
selection_from(index)
click to toggle source
# File lib/tkextlib/iwidgets/entryfield.rb, line 134 def selection_from(index) tk_send_without_enc('selection', 'from', index) self end
selection_present()
click to toggle source
# File lib/tkextlib/iwidgets/entryfield.rb, line 138 def selection_present() bool(tk_send_without_enc('selection', 'present')) end
selection_range(s, e)
click to toggle source
# File lib/tkextlib/iwidgets/entryfield.rb, line 141 def selection_range(s, e) tk_send_without_enc('selection', 'range', s, e) self end
selection_to(index)
click to toggle source
# File lib/tkextlib/iwidgets/entryfield.rb, line 145 def selection_to(index) tk_send_without_enc('selection', 'to', index) self end
value()
click to toggle source
# File lib/tkextlib/iwidgets/entryfield.rb, line 91 def value _fromUTF8(tk_send_without_enc('get')) end
Also aliased as: get
value=(val)
click to toggle source
# File lib/tkextlib/iwidgets/entryfield.rb, line 94 def value= (val) tk_send_without_enc('delete', 0, 'end') tk_send_without_enc('insert', 0, _get_eval_enc_str(val)) val end
Also aliased as: set
xview(*index)
click to toggle source
based on tk/scrollable.rb
# File lib/tkextlib/iwidgets/entryfield.rb, line 151 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
# File lib/tkextlib/iwidgets/entryfield.rb, line 159 def xview_moveto(*index) xview('moveto', *index) end
xview_scroll(*index)
click to toggle source
# File lib/tkextlib/iwidgets/entryfield.rb, line 162 def xview_scroll(*index) xview('scroll', *index) end
Private Instance Methods
__font_optkeys()
click to toggle source
Calls superclass method
Tk::Iwidgets::Labeledwidget#__font_optkeys
# File lib/tkextlib/iwidgets/entryfield.rb, line 22 def __font_optkeys super() << 'textfont' end