TkToplevel
# File tk/lib/tkextlib/tcllib/khim.rb, line 40
def self.get_config #=> cmd_string
Tk.tk_call_without_enc('::khim::getConfig')
end
# 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
# File tk/lib/tkextlib/tcllib/khim.rb, line 18
def self.package_name
PACKAGE_NAME
end
# File tk/lib/tkextlib/tcllib/khim.rb, line 22
def self.package_version
begin
TkPackage.require('khim')
rescue
''
end
end
# 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
Commenting is here to help enhance the documentation. For example, sample code, 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.