Class | Tk::TclX::XPG3_MsgCat |
In: |
tk/lib/tkextlib/tclx/tclx.rb
|
Parent: | Object |
new | -> | open |
# 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