Methods
Included Modules
Constants
TkCommandNames | = | ['::iwidgets::toolbar'.freeze].freeze |
WidgetClassName | = | 'Toolbar'.freeze |
Instance Public methods
add(type, tag=nil, keys={})
Link
# File ext/tk/lib/tkextlib/iwidgets/toolbar.rb, line 71 def add(type, tag=nil, keys={}) if tag.kind_of?(Hash) keys = tag tag = nil end if tag tag = Tk::Itk::Component.new(self, tagid(tag)) else tag = Tk::Itk::Component.new(self) end window(tk_call(@path, 'add', type, tagid(tag), *hash_kv(keys))) tag end
delete(idx1, idx2=nil)
Link
index(idx)
Link
insert(idx, type, tag=nil, keys={})
Link
# File ext/tk/lib/tkextlib/iwidgets/toolbar.rb, line 98 def insert(idx, type, tag=nil, keys={}) if tag.kind_of?(Hash) keys = tag tag = nil end if tag tag = Tk::Itk::Component.new(self, tagid(tag)) else tag = Tk::Itk::Component.new(self) end window(tk_call(@path, 'insert', index(idx), type, tagid(tag), *hash_kv(keys))) tag end