Extended maintenance of Ruby 1.9.3 ended on February 23, 2015. Read more

In Files

  • tk/lib/tkextlib/tcllib/khim.rb

Class/Module Index [+]

Quicksearch

Tk::Tcllib::KHIM

Public Class Methods

get_config() click to toggle source
 
               # File tk/lib/tkextlib/tcllib/khim.rb, line 40
def self.get_config #=> cmd_string
  Tk.tk_call_without_enc('::khim::getConfig')
end
            
get_options(parent='') click to toggle source
 
               # File tk/lib/tkextlib/tcllib/khim.rb, line 35
def self.get_options(parent='')
  path = parent + '.tcllib_widget_khim_dialog'
  self.new(:widgetname => path)
end
            
package_name() click to toggle source
 
               # File tk/lib/tkextlib/tcllib/khim.rb, line 18
def self.package_name
  PACKAGE_NAME
end
            
package_version() click to toggle source
 
               # File tk/lib/tkextlib/tcllib/khim.rb, line 22
def self.package_version
  begin
    TkPackage.require('khim')
  rescue
    ''
  end
end
            
set_config(*args) click to toggle source
 
               # File tk/lib/tkextlib/tcllib/khim.rb, line 44
def self.set_config(*args)
  if args.length == 1
    # cmd_string generated by
    #Tk.ip_eval_without_enc(cmd_string)
    Tk.ip_eval(cmd_string)
  else
    # args for setConfig command
    #Tk.tk_call_without_enc('::khim::setConfig', *args)
    Tk.tk_call('::khim::setConfig', *args)
  end
end
            
showHelp() click to toggle source
 
               # File tk/lib/tkextlib/tcllib/khim.rb, line 56
def self.showHelp
  Tk::Tcllib::KHIM::Help.new
end
            

Public Instance Methods

create_self(keys=None) click to toggle source
 
               # File tk/lib/tkextlib/tcllib/khim.rb, line 60
def create_self(keys=None)
  @db_class = @classname = nil
  super(None) # ignore keys
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.