class Tk::Tcllib::Widget::SuperFrame

Constants

PACKAGE_NAME
TkCommandNames

Public Class Methods

package_name() click to toggle source
# File lib/tkextlib/tcllib/superframe.rb, line 19
def self.package_name
  PACKAGE_NAME
end
package_version() click to toggle source
# File lib/tkextlib/tcllib/superframe.rb, line 23
def self.package_version
  begin
    TkPackage.require('widget::superframe')
  rescue
    ''
  end
end

Public Instance Methods

labelwidget() click to toggle source
# File lib/tkextlib/tcllib/superframe.rb, line 48
def labelwidget
  window(tk_send('labelwidget'))
end

Private Instance Methods

create_self(keys) click to toggle source
# File lib/tkextlib/tcllib/superframe.rb, line 38
def create_self(keys)
  if keys and keys != None
    tk_call_without_enc(self.class::TkCommandNames[0], @path,
                        *hash_kv(keys, true))
  else
    tk_call_without_enc(self.class::TkCommandNames[0], @path)
  end
end