Object
# File tk/lib/tkextlib/tclx/tclx.rb, line 52 def initialize(catname, fail_mode=false) if fail_mode @msgcat_id = Tk.tk_call('catopen', '-fail', catname) else @msgcat_id = Tk.tk_call('catopen', '-nofail', catname) end end
# File tk/lib/tkextlib/tclx/tclx.rb, line 60 def close(fail_mode=false) if fail_mode Tk.tk_call('catclose', '-fail', @msgcat_id) else Tk.tk_call('catclose', '-nofail', @msgcat_id) end self end
# File tk/lib/tkextlib/tclx/tclx.rb, line 69 def get(setnum, msgnum, defaultstr) Tk.tk_call('catgets', @msgcat_id, setnum, msgnum, defaultstr) end
This page was generated for Ruby 2.2.10
Ruby-doc.org is a service of James Britt and Neurogami, purveyors of fine dance noise.
Generated with Ruby-doc Rdoc Generator 0.44.0.