Class Tk::Iwidgets::Panedwindow
In: tk/lib/tkextlib/iwidgets/panedwindow.rb
Parent: Tk::Itk::Widget

Methods

add   child_site   child_site_list   delete   fraction   hide   index   insert   invoke   reset   show   tagid  

Included Modules

TkItemConfigMethod

Constants

TkCommandNames = ['::iwidgets::panedwindow'.freeze].freeze
WidgetClassName = 'Panedwindow'.freeze

External Aliases

itemcget -> panecget
itemconfigure -> paneconfigure
itemconfiginfo -> paneconfiginfo
current_itemconfiginfo -> current_paneconfiginfo

Public Instance methods

[Source]

# File tk/lib/tkextlib/iwidgets/panedwindow.rb, line 59
  def add(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', tagid(tag), *hash_kv(keys)))
    tag
  end

[Source]

# File tk/lib/tkextlib/iwidgets/panedwindow.rb, line 77
  def child_site(idx)
    window(tk_call(@path, 'childsite', index(idx)))
  end

[Source]

# File tk/lib/tkextlib/iwidgets/panedwindow.rb, line 73
  def child_site_list
    list(tk_call(@path, 'childsite'))
  end

[Source]

# File tk/lib/tkextlib/iwidgets/panedwindow.rb, line 81
  def delete(idx)
    tk_call(@path, 'delete', index(idx))
    self
  end

[Source]

# File tk/lib/tkextlib/iwidgets/panedwindow.rb, line 86
  def fraction(*percentages)
    tk_call(@path, 'fraction', *percentages)
    self
  end

[Source]

# File tk/lib/tkextlib/iwidgets/panedwindow.rb, line 91
  def hide(idx)
    tk_call(@path, 'hide', index(idx))
    self
  end

[Source]

# File tk/lib/tkextlib/iwidgets/panedwindow.rb, line 96
  def index(idx)
    number(tk_call(@path, 'index', tagid(idx)))
  end

[Source]

# File tk/lib/tkextlib/iwidgets/panedwindow.rb, line 100
  def insert(idx, 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), tagid(tag), *hash_kv(keys)))
    tag
  end

[Source]

# File tk/lib/tkextlib/iwidgets/panedwindow.rb, line 114
  def invoke(idx=nil)
    if idx
      tk_call(@path, 'invoke', index(idx))
    else
      tk_call(@path, 'invoke')
    end
    self
  end

[Source]

# File tk/lib/tkextlib/iwidgets/panedwindow.rb, line 123
  def reset
    tk_call(@path, 'reset')
    self
  end

[Source]

# File tk/lib/tkextlib/iwidgets/panedwindow.rb, line 128
  def show(idx)
    tk_call(@path, 'show', index(idx))
    self
  end

[Source]

# File tk/lib/tkextlib/iwidgets/panedwindow.rb, line 35
  def tagid(tagOrId)
    if tagOrId.kind_of?(Tk::Itk::Component)
      tagOrId.name
    else
      #_get_eval_string(tagOrId)
      tagOrId
    end
  end

[Validate]