# File tk/lib/tkextlib/tile/treeview.rb, line 954
def self.id2obj(tree, id)
  tpath = tree.path
  Tk::Tile::Treeview::Tag::TagID_TBL.mutex.synchronize{
    if Tk::Tile::Treeview::Tag::TagID_TBL[tpath]
      (Tk::Tile::Treeview::Tag::TagID_TBL[tpath][id])?                 Tk::Tile::Treeview::Tag::TagID_TBL[tpath][id]: id
    else
      id
    end
  }
end
             
             
               # File tk/lib/tkextlib/tile/treeview.rb, line 966
def initialize(tree, keys=nil)
  @parent = @t = tree
  @tpath = tree.path
  Tag_ID.mutex.synchronize{
    @path = @id = Tag_ID.join(TkCore::INTERP._ip_id_)
    Tag_ID[1].succ!
  }
  TagID_TBL.mutex.synchronize{
    TagID_TBL[@tpath] = {} unless TagID_TBL[@tpath]
    TagID_TBL[@tpath][@id] = self
  }
  if keys && keys != None
    tk_call_without_enc(@tpath, 'tag', 'configure', @id, *hash_kv(keys,true))
  end
end
             
             
               # File tk/lib/tkextlib/tile/treeview.rb, line 994
def add(*items)
  @t.tag_add(@id, *items)
end
             
             
               # File tk/lib/tkextlib/tile/treeview.rb, line 1002
def bind(seq, *args)
  if TkComm._callback_entry?(args[0]) || !block_given?
    cmd = args.shift
  else
    cmd = Proc.new
  end
  @t.tag_bind(@id, seq, cmd, *args)
  self
end
             
             
               # File tk/lib/tkextlib/tile/treeview.rb, line 1012
def bind_append(seq, *args)
  if TkComm._callback_entry?(args[0]) || !block_given?
    cmd = args.shift
  else
    cmd = Proc.new
  end
  @t.tag_bind_append(@id, seq, cmd, *args)
  self
end
             
             
               # File tk/lib/tkextlib/tile/treeview.rb, line 1022
def bind_remove(seq)
  @t.tag_bind_remove(@id, seq)
  self
end
             
             
               # File tk/lib/tkextlib/tile/treeview.rb, line 1027
def bindinfo(seq=nil)
  @t.tag_bindinfo(@id, seq)
end
             
             
               # File tk/lib/tkextlib/tile/treeview.rb, line 1034
def cget(option)
  @t.tagcget(@id, option)
end
             
             
               # File tk/lib/tkextlib/tile/treeview.rb, line 1037
def cget_strict(option)
  @t.tagcget_strict(@id, option)
end
             
             
               # File tk/lib/tkextlib/tile/treeview.rb, line 1031
def cget_tkstring(option)
  @t.tagcget_tkstring(@id, option)
end
             
             
               # File tk/lib/tkextlib/tile/treeview.rb, line 1046
def configinfo(key=nil)
  @t.tagconfiginfo(@id, key)
end
             
             
               # File tk/lib/tkextlib/tile/treeview.rb, line 1041
def configure(key, value=None)
  @t.tagconfigure(@id, key, value)
  self
end
             
             
               # File tk/lib/tkextlib/tile/treeview.rb, line 1050
def current_configinfo(key=nil)
  @t.current_tagconfiginfo(@id, key)
end
             
             
               # File tk/lib/tkextlib/tile/treeview.rb, line 944
def mutex; @mutex; end
             
             
               # File tk/lib/tkextlib/tile/treeview.rb, line 998
def remove(*items)
  @t.tag_remove(@id, *items)
end
             
             
               # File tk/lib/tkextlib/tile/treeview.rb, line 990
def tag_has
  @t.tag_has(@id)
end
             
             
               # File tk/lib/tkextlib/tile/treeview.rb, line 985
def tag_has?(item)
  @t.tag_has?(@id, item)
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.