class Tk::TreeCtrl::Column

Constants

TreeCtrlColumnID
TreeCtrlColumnID_TBL

Public Class Methods

id2obj(tree, id) click to toggle source
# File lib/tkextlib/treectrl/tktreectrl.rb, line 1740
def self.id2obj(tree, id)
  tpath = tree.path
  Tk::TreeCtrl::Column::TreeCtrlColumnID_TBL.mutex.synchronize{
    if Tk::TreeCtrl::Column::TreeCtrlColumnID_TBL[tpath]
      Tk::TreeCtrl::Column::TreeCtrlColumnID_TBL[tpath][id]? \
                 Tk::TreeCtrl::Column::TreeCtrlColumnID_TBL[tpath][id] : id
    else
      id
    end
  }
end
new(parent, keys={}) click to toggle source
# File lib/tkextlib/treectrl/tktreectrl.rb, line 1752
def initialize(parent, keys={})
  @tree = parent
  @tpath = parent.path

  keys = _symbolkey2str(keys)

  Tk::TreeCtrl::Column::TreeCtrlColumnID.mutex.synchronize{
    @path = @id =
      keys.delete('tag') ||
      Tk::TreeCtrl::Column::TreeCtrlColumnID.join(TkCore::INTERP._ip_id_)
    Tk::TreeCtrl::Column::TreeCtrlColumnID[1].succ!
  }

  keys['tag'] = @id

  Tk::TreeCtrl::Column::TreeCtrlColumnID_TBL.mutex.synchronize{
    Tk::TreeCtrl::Column::TreeCtrlColumnID_TBL[@tpath] ||= {}
    Tk::TreeCtrl::Column::TreeCtrlColumnID_TBL[@tpath][@id] = self
  }

  @tree.column_create(keys)
end

Public Instance Methods

cget(opt) click to toggle source
# File lib/tkextlib/treectrl/tktreectrl.rb, line 1786
def cget(opt)
  @tree.column_cget(@tree.column_index(@id), opt)
end
cget_strict(opt) click to toggle source
# File lib/tkextlib/treectrl/tktreectrl.rb, line 1789
def cget_strict(opt)
  @tree.column_cget_strict(@tree.column_index(@id), opt)
end
cget_tkstring(opt) click to toggle source
# File lib/tkextlib/treectrl/tktreectrl.rb, line 1783
def cget_tkstring(opt)
  @tree.column_cget_tkstring(@tree.column_index(@id), opt)
end
configinfo(*args) click to toggle source
# File lib/tkextlib/treectrl/tktreectrl.rb, line 1797
def configinfo(*args)
  @tree.column_configinfo(@tree.column_index(@id), *args)
end
configure(*args) click to toggle source
# File lib/tkextlib/treectrl/tktreectrl.rb, line 1793
def configure(*args)
  @tree.column_configure(@tree.column_index(@id), *args)
end
current_configinfo(*args) click to toggle source
# File lib/tkextlib/treectrl/tktreectrl.rb, line 1801
def current_configinfo(*args)
  @tree.current_column_configinfo(@tree.column_index(@id), *args)
end
current_width() click to toggle source
# File lib/tkextlib/treectrl/tktreectrl.rb, line 1824
def current_width
  @tree.column_width(@tree.column_index(@id))
end
delete() click to toggle source
# File lib/tkextlib/treectrl/tktreectrl.rb, line 1805
def delete
  @tree.column_delete(@tree.column_index(@id))
  self
end
id() click to toggle source
# File lib/tkextlib/treectrl/tktreectrl.rb, line 1775
def id
  @id
end
index() click to toggle source
# File lib/tkextlib/treectrl/tktreectrl.rb, line 1810
def index
  @tree.column_index(@id)
end
move(before) click to toggle source
# File lib/tkextlib/treectrl/tktreectrl.rb, line 1814
def move(before)
  @tree.column_move(@tree.column_index(@id), before)
  self
end
mutex() click to toggle source
# File lib/tkextlib/treectrl/tktreectrl.rb, line 1730
def mutex; @mutex; end
needed_width() click to toggle source
# File lib/tkextlib/treectrl/tktreectrl.rb, line 1819
def needed_width
  @tree.column_needed_width(@tree.column_index(@id))
end
Also aliased as: neededwidth
neededwidth()
Alias for: needed_width
to_s() click to toggle source
# File lib/tkextlib/treectrl/tktreectrl.rb, line 1779
def to_s
  @id.to_s.dup
end