# File tk/lib/tkextlib/treectrl/tktreectrl.rb, line 1858
def self.id2obj(tree, id)
tpath = tree.path
Tk::TreeCtrl::Element::TreeCtrlElementID_TBL.mutex.synchronize{
if Tk::TreeCtrl::Element::TreeCtrlElementID_TBL[tpath]
Tk::TreeCtrl::Element::TreeCtrlElementID_TBL[tpath][id]? Tk::TreeCtrl::Element::TreeCtrlElementID_TBL[tpath][id] : id
else
id
end
}
end
# File tk/lib/tkextlib/treectrl/tktreectrl.rb, line 1870
def initialize(parent, type, keys=nil)
@tree = parent
@tpath = parent.path
@type = type.to_s
Tk::TreeCtrl::Element::TreeCtrlElementID.mutex.synchronize{
@path = @id =
Tk::TreeCtrl::Element::TreeCtrlElementID.join(TkCore::INTERP._ip_id_)
Tk::TreeCtrl::Element::TreeCtrlElementID[1].succ!
}
Tk::TreeCtrl::Element::TreeCtrlElementID_TBL.mutex.synchronize{
Tk::TreeCtrl::Element::TreeCtrlElementID_TBL[@tpath] ||= {}
Tk::TreeCtrl::Element::TreeCtrlElementID_TBL[@tpath][@id] = self
}
@tree.element_create(@id, @type, keys)
end
# File tk/lib/tkextlib/treectrl/tktreectrl.rb, line 1899
def cget(opt)
@tree.element_cget(@id, opt)
end
# File tk/lib/tkextlib/treectrl/tktreectrl.rb, line 1902
def cget_strict(opt)
@tree.element_cget_strict(@id, opt)
end
# File tk/lib/tkextlib/treectrl/tktreectrl.rb, line 1896
def cget_tkstring(opt)
@tree.element_cget_tkstring(@id, opt)
end
# File tk/lib/tkextlib/treectrl/tktreectrl.rb, line 1910
def configinfo(*args)
@tree.element_configinfo(@id, *args)
end
# File tk/lib/tkextlib/treectrl/tktreectrl.rb, line 1906
def configure(*args)
@tree.element_configure(@id, *args)
end
# File tk/lib/tkextlib/treectrl/tktreectrl.rb, line 1914
def current_configinfo(*args)
@tree.current_element_configinfo(@id, *args)
end
# File tk/lib/tkextlib/treectrl/tktreectrl.rb, line 1918
def delete
@tree.element_delete(@id)
self
end
# File tk/lib/tkextlib/treectrl/tktreectrl.rb, line 1927
def element_class
@tree.element_class(@id)
end
# File tk/lib/tkextlib/treectrl/tktreectrl.rb, line 1923
def element_type
@tree.element_type(@id)
end
Commenting is here to help enhance the documentation. For example, sample code, 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.