2004-12-23 11:23:30 -05:00
|
|
|
#
|
|
|
|
# tkextlib/blt/table.rb
|
|
|
|
# by Hidetoshi NAGAI (nagai@ai.kyutech.ac.jp)
|
|
|
|
#
|
|
|
|
|
|
|
|
require 'tk'
|
|
|
|
require 'tk/itemconfig.rb'
|
|
|
|
require 'tkextlib/blt.rb'
|
|
|
|
|
|
|
|
module Tk::BLT
|
|
|
|
module Table
|
|
|
|
include Tk
|
|
|
|
extend Tk
|
|
|
|
extend TkItemConfigMethod
|
|
|
|
|
|
|
|
TkCommandNames = ['::blt::table'.freeze].freeze
|
|
|
|
|
|
|
|
module TableContainer
|
|
|
|
def blt_table_add(*args)
|
2006-11-07 04:11:38 -05:00
|
|
|
Tk::BLT::Table.add(self, *args)
|
2004-12-23 11:23:30 -05:00
|
|
|
self
|
|
|
|
end
|
|
|
|
|
|
|
|
def blt_table_arrange()
|
2006-11-07 04:11:38 -05:00
|
|
|
Tk::BLT::Table.arrange(self)
|
2004-12-23 11:23:30 -05:00
|
|
|
self
|
|
|
|
end
|
|
|
|
|
|
|
|
def blt_table_cget(*args)
|
2006-11-07 04:11:38 -05:00
|
|
|
Tk::BLT::Table.cget(self, *args)
|
2004-12-23 11:23:30 -05:00
|
|
|
end
|
* ext/tk/tcltklib.c: SEGV when tcltk-stubs is enabled.
* ext/tk/tcltklib.c: avoid error on a shared object.
* ext/tk/extconf.rb: support --with-tcltkversion
* ext/tk/README.tcltklib: add document about --with-tcltkversion
* ext/tk/lib/tk.rb, ext/tk/lib/multi-tk.rb, ext/tk/lib/remote-tk.rb:
not work on $SAFE==4
* ext/tk/lib/multi-tk.rb: Object#methods returns Symbols on Ruby1.9.
* ext/tk/lib/tk/timer.rb: add TkTimer#at_end(proc) to register the
procedure which called at end of the timer.
* ext/tk/lib/tk.rb, ext/tk/lib/tk/itemfont.rb, ext/tk/lib/font.rb:
support __IGNORE_UNKNOWN_CONFIGURE_OPTION__ about font options.
* ext/tk/lib/*: treat __IGNORE_UNKNOWN_CONFIGURE_OPTION__
* ext/tk/lib/tkextlib/iwidgets/scrolledcanvas.rb,
ext/tk/lib/tkextlib/iwidgets/scrolledlistbox.rb,
ext/tk/lib/tkextlib/iwidgets/scrolledtext.rb: bug fix.
* ext/tk/lib/tk/text.rb: typo. call a wrong method.
* ext/tk/lib/tk/itemconfig.rb: ditto.
* ext/tk/lib/tk.rb, ext/tk/lib/tk/itemconfig.rb,
ext/tk/lib/tk/canvas.rb: support alias names of option keys.
* ext/tk/lib/tk/grid.rb: lack of module-method definitions.
* ext/tk/lib/tk/pack.rb, ext/tk/lib/tk/grid.rb: increase supported
parameter patterns of configure method.
* ext/tk/lib/tk.rb: add TkWindow#grid_anchor, grid_column, grid_row.
* ext/tk/lib/tk/wm.rb: methods of Tk::Wm_for_General module cannot
pass the given block to methods of Tk::Wm module.
* ext/tk/lib/tk/wm.rb: Wm#overrideredirect overwrites arguemnt to
an invalid value.
* ext/tk/lib/tk.rb: fix memory (object) leak bug.
* ext/tk/tcltklib.c, ext/tk/tkutil/tkutil.c: fix memory leak.
* ext/tk/sample/demos-jp/aniwave.rb, ext/tk/sample/demos-en/aniwave.rb:
bug fix.
* ext/tk/lib/tkextlib/blt/component.rb,
ext/tk/lib/tkextlib/tile/tentry.rb,
ext/tk/lib/tkextlib/tile/treeview.rb: ditto.
* ext/tk/lib/tkextlib/tile/tpaned.rb: improve TPaned#add.
* ext/tk/sample/demos-jp/widget, ext/tk/sample/demos-en/widget,
ext/tk/sample/demos-jp/style.rb, ext/tk/sample/demos-en/style.rb,
ext/tk/sample/demos-jp/bind.rb, ext/tk/sample/demos-en/bind.rb:
bug fix.
* ext/tk/sample/ttk_wrapper.rb: ditto.
* ext/tk/sample/ttk_wrapper.rb: support "if __FILE__ == $0" idiom.
* ext/tk/sample/tktextio.rb: add binding for 'Ctrl-u' at console mode.
* ext/tk/lib/tkextlib/tile.rb, ext/tk/lib/tkextlib/tile/style.rb,
ext/tk/sample/ttk_wrapper.rb: improve treating and control themes.
add Tk::Tile.themes and Tk::Tile.set_theme(theme).
* ext/tk/lib/tkextlib/tile.rb: lack of autoload definitions.
* ext/tk/lib/tkextlib/tile/tnotebook.rb: cannot use kanji (not UTF-8)
characters for headings.
* ext/tk/lib/tkextlib/tkDND/shape.rb: wrong package name.
* ext/tk/tkutil/tkutil.c: improve handling callback-subst-keys.
Now, support longnam-keys (e.g. '%CTT' on tkdnd-2.0; however, still
not support tkdnd-2.0 on tkextlib), and symbols of parameters (e.g.
:widget=>'%W', :keycode=>'%k', '%x'=>:x, '%X'=>:root_x, and so on;
those are attributes of event object). It means that Ruby/Tk accepts
not only "widget.bind(ev, '%W', '%k', ...){|w, k, ...| ... }", but
also "widget.bind(ev, :widget, :keycode, ...){|w, k, ...| ... }".
It is potentially incompatible, when user passes symbols to the
arguments of the callback block (the block receives the symbols as
strings). I think that is very rare case (probably, used by Ruby/Tk
experts only). When causes such trouble, please give strings instead
of such symbol parameters (e.g. call Symbol#to_s method).
* ext/tk/lib/tk/event.rb, ext/tk/lib/tk/validation.rb,
ext/tk/lib/tkextlib/blt/treeview.rb,
ext/tk/lib/tkextlib/winico/winico.rb: ditto.
* ext/tk/tkutil/tkutil.c: strings are available on subst_tables on
TkUtil::CallbackSubst class (it is useful on Ruby 1.9).
* ext/tk/lib/tk/spinbox.rb, ext/tk/lib/tkextlib/iwidgets/hierarchy.rb,
ext/tk/lib/tkextlib/iwidgets/spinner.rb,
ext/tk/lib/tkextlib/iwidgets/entryfield.rb,
ext/tk/lib/tkextlib/iwidgets/calendar.rb,
ext/tk/lib/tkextlib/blt/dragdrop.rb,
ext/tk/lib/tkextlib/tkDND/tkdnd.rb,
ext/tk/lib/tkextlib/treectrl/tktreectrl.rb,
ext/tk/lib/tkextlib/tktable/tktable.rb: disable code piece became
unnecessary by reason of the changes of ext/tk/tkutil/tkutil.c.
* ext/tk/lib/tk.rb, ext/tk/lib/multi-tk.rb: change strategy to define
the constant WITH_ENCODING.
* ext/tk/lib/tk.rb: fix bug on Tk::Encoding.tk_encoding_names.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@17083 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2008-06-10 16:59:10 -04:00
|
|
|
def blt_table_cget_strict(*args)
|
|
|
|
Tk::BLT::Table.cget_strict(self, *args)
|
|
|
|
end
|
2004-12-23 11:23:30 -05:00
|
|
|
|
|
|
|
def blt_table_configure(*args)
|
2006-11-07 04:11:38 -05:00
|
|
|
Tk::BLT::Table.configure(self, *args)
|
2004-12-23 11:23:30 -05:00
|
|
|
self
|
|
|
|
end
|
|
|
|
|
|
|
|
def blt_table_configinfo(*args)
|
2006-11-07 04:11:38 -05:00
|
|
|
Tk::BLT::Table.configinfo(self, *args)
|
2004-12-23 11:23:30 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
def blt_table_current_configinfo(*args)
|
2006-11-07 04:11:38 -05:00
|
|
|
Tk::BLT::Table.current_configinfo(self, *args)
|
2004-12-23 11:23:30 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
def blt_table_locate(x, y)
|
2006-11-07 04:11:38 -05:00
|
|
|
Tk::BLT::Table.locate(self, x, y)
|
2004-12-23 11:23:30 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
def blt_table_delete(*args)
|
2006-11-07 04:11:38 -05:00
|
|
|
Tk::BLT::Table.delete(self, *args)
|
2004-12-23 11:23:30 -05:00
|
|
|
self
|
|
|
|
end
|
|
|
|
|
|
|
|
def blt_table_extents(item)
|
2006-11-07 04:11:38 -05:00
|
|
|
Tk::BLT::Table.extents(self, item)
|
2004-12-23 11:23:30 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
def blt_table_insert(*args)
|
2006-11-07 04:11:38 -05:00
|
|
|
Tk::BLT::Table.insert(self, *args)
|
2004-12-23 11:23:30 -05:00
|
|
|
self
|
|
|
|
end
|
|
|
|
|
|
|
|
def blt_table_insert_before(*args)
|
2006-11-07 04:11:38 -05:00
|
|
|
Tk::BLT::Table.insert_before(self, *args)
|
2004-12-23 11:23:30 -05:00
|
|
|
self
|
|
|
|
end
|
|
|
|
|
|
|
|
def blt_table_insert_after(*args)
|
2006-11-07 04:11:38 -05:00
|
|
|
Tk::BLT::Table.insert_after(self, *args)
|
2004-12-23 11:23:30 -05:00
|
|
|
self
|
|
|
|
end
|
|
|
|
|
|
|
|
def blt_table_join(first, last)
|
2006-11-07 04:11:38 -05:00
|
|
|
Tk::BLT::Table.join(self, first, last)
|
2004-12-23 11:23:30 -05:00
|
|
|
self
|
|
|
|
end
|
|
|
|
|
|
|
|
def blt_table_save()
|
2006-11-07 04:11:38 -05:00
|
|
|
Tk::BLT::Table.save(self)
|
2004-12-23 11:23:30 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
def blt_table_search(*args)
|
2006-11-07 04:11:38 -05:00
|
|
|
Tk::BLT::Table.search(self, *args)
|
2004-12-23 11:23:30 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
def blt_table_split(*args)
|
2006-11-07 04:11:38 -05:00
|
|
|
Tk::BLT::Table.split(self, *args)
|
2004-12-23 11:23:30 -05:00
|
|
|
self
|
|
|
|
end
|
|
|
|
|
|
|
|
def blt_table_itemcget(*args)
|
2006-11-07 04:11:38 -05:00
|
|
|
Tk::BLT::Table.itemcget(self, *args)
|
2004-12-23 11:23:30 -05:00
|
|
|
end
|
* ext/tk/tcltklib.c: SEGV when tcltk-stubs is enabled.
* ext/tk/tcltklib.c: avoid error on a shared object.
* ext/tk/extconf.rb: support --with-tcltkversion
* ext/tk/README.tcltklib: add document about --with-tcltkversion
* ext/tk/lib/tk.rb, ext/tk/lib/multi-tk.rb, ext/tk/lib/remote-tk.rb:
not work on $SAFE==4
* ext/tk/lib/multi-tk.rb: Object#methods returns Symbols on Ruby1.9.
* ext/tk/lib/tk/timer.rb: add TkTimer#at_end(proc) to register the
procedure which called at end of the timer.
* ext/tk/lib/tk.rb, ext/tk/lib/tk/itemfont.rb, ext/tk/lib/font.rb:
support __IGNORE_UNKNOWN_CONFIGURE_OPTION__ about font options.
* ext/tk/lib/*: treat __IGNORE_UNKNOWN_CONFIGURE_OPTION__
* ext/tk/lib/tkextlib/iwidgets/scrolledcanvas.rb,
ext/tk/lib/tkextlib/iwidgets/scrolledlistbox.rb,
ext/tk/lib/tkextlib/iwidgets/scrolledtext.rb: bug fix.
* ext/tk/lib/tk/text.rb: typo. call a wrong method.
* ext/tk/lib/tk/itemconfig.rb: ditto.
* ext/tk/lib/tk.rb, ext/tk/lib/tk/itemconfig.rb,
ext/tk/lib/tk/canvas.rb: support alias names of option keys.
* ext/tk/lib/tk/grid.rb: lack of module-method definitions.
* ext/tk/lib/tk/pack.rb, ext/tk/lib/tk/grid.rb: increase supported
parameter patterns of configure method.
* ext/tk/lib/tk.rb: add TkWindow#grid_anchor, grid_column, grid_row.
* ext/tk/lib/tk/wm.rb: methods of Tk::Wm_for_General module cannot
pass the given block to methods of Tk::Wm module.
* ext/tk/lib/tk/wm.rb: Wm#overrideredirect overwrites arguemnt to
an invalid value.
* ext/tk/lib/tk.rb: fix memory (object) leak bug.
* ext/tk/tcltklib.c, ext/tk/tkutil/tkutil.c: fix memory leak.
* ext/tk/sample/demos-jp/aniwave.rb, ext/tk/sample/demos-en/aniwave.rb:
bug fix.
* ext/tk/lib/tkextlib/blt/component.rb,
ext/tk/lib/tkextlib/tile/tentry.rb,
ext/tk/lib/tkextlib/tile/treeview.rb: ditto.
* ext/tk/lib/tkextlib/tile/tpaned.rb: improve TPaned#add.
* ext/tk/sample/demos-jp/widget, ext/tk/sample/demos-en/widget,
ext/tk/sample/demos-jp/style.rb, ext/tk/sample/demos-en/style.rb,
ext/tk/sample/demos-jp/bind.rb, ext/tk/sample/demos-en/bind.rb:
bug fix.
* ext/tk/sample/ttk_wrapper.rb: ditto.
* ext/tk/sample/ttk_wrapper.rb: support "if __FILE__ == $0" idiom.
* ext/tk/sample/tktextio.rb: add binding for 'Ctrl-u' at console mode.
* ext/tk/lib/tkextlib/tile.rb, ext/tk/lib/tkextlib/tile/style.rb,
ext/tk/sample/ttk_wrapper.rb: improve treating and control themes.
add Tk::Tile.themes and Tk::Tile.set_theme(theme).
* ext/tk/lib/tkextlib/tile.rb: lack of autoload definitions.
* ext/tk/lib/tkextlib/tile/tnotebook.rb: cannot use kanji (not UTF-8)
characters for headings.
* ext/tk/lib/tkextlib/tkDND/shape.rb: wrong package name.
* ext/tk/tkutil/tkutil.c: improve handling callback-subst-keys.
Now, support longnam-keys (e.g. '%CTT' on tkdnd-2.0; however, still
not support tkdnd-2.0 on tkextlib), and symbols of parameters (e.g.
:widget=>'%W', :keycode=>'%k', '%x'=>:x, '%X'=>:root_x, and so on;
those are attributes of event object). It means that Ruby/Tk accepts
not only "widget.bind(ev, '%W', '%k', ...){|w, k, ...| ... }", but
also "widget.bind(ev, :widget, :keycode, ...){|w, k, ...| ... }".
It is potentially incompatible, when user passes symbols to the
arguments of the callback block (the block receives the symbols as
strings). I think that is very rare case (probably, used by Ruby/Tk
experts only). When causes such trouble, please give strings instead
of such symbol parameters (e.g. call Symbol#to_s method).
* ext/tk/lib/tk/event.rb, ext/tk/lib/tk/validation.rb,
ext/tk/lib/tkextlib/blt/treeview.rb,
ext/tk/lib/tkextlib/winico/winico.rb: ditto.
* ext/tk/tkutil/tkutil.c: strings are available on subst_tables on
TkUtil::CallbackSubst class (it is useful on Ruby 1.9).
* ext/tk/lib/tk/spinbox.rb, ext/tk/lib/tkextlib/iwidgets/hierarchy.rb,
ext/tk/lib/tkextlib/iwidgets/spinner.rb,
ext/tk/lib/tkextlib/iwidgets/entryfield.rb,
ext/tk/lib/tkextlib/iwidgets/calendar.rb,
ext/tk/lib/tkextlib/blt/dragdrop.rb,
ext/tk/lib/tkextlib/tkDND/tkdnd.rb,
ext/tk/lib/tkextlib/treectrl/tktreectrl.rb,
ext/tk/lib/tkextlib/tktable/tktable.rb: disable code piece became
unnecessary by reason of the changes of ext/tk/tkutil/tkutil.c.
* ext/tk/lib/tk.rb, ext/tk/lib/multi-tk.rb: change strategy to define
the constant WITH_ENCODING.
* ext/tk/lib/tk.rb: fix bug on Tk::Encoding.tk_encoding_names.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@17083 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2008-06-10 16:59:10 -04:00
|
|
|
def blt_table_itemcget_strict(*args)
|
|
|
|
Tk::BLT::Table.itemcget_strict(self, *args)
|
|
|
|
end
|
2004-12-23 11:23:30 -05:00
|
|
|
|
|
|
|
def blt_table_itemconfigure(*args)
|
2006-11-07 04:11:38 -05:00
|
|
|
Tk::BLT::Table.itemconfigure(self, *args)
|
2004-12-23 11:23:30 -05:00
|
|
|
self
|
|
|
|
end
|
|
|
|
|
|
|
|
def blt_table_itemconfiginfo(*args)
|
2006-11-07 04:11:38 -05:00
|
|
|
Tk::BLT::Table.itemconfiginfo(self, *args)
|
2004-12-23 11:23:30 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
def blt_table_current_itemconfiginfo(*args)
|
2006-11-07 04:11:38 -05:00
|
|
|
Tk::BLT::Table.current_itemconfiginfo(self, *args)
|
2004-12-23 11:23:30 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
def blt_table_iteminfo(item)
|
2006-11-07 04:11:38 -05:00
|
|
|
Tk::BLT::Table.iteminfo(self, item)
|
2004-12-23 11:23:30 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
|
|
############################################
|
|
|
|
class << Tk::BLT::Table
|
|
|
|
def __item_cget_cmd(id) # id := [ container, item ]
|
2006-11-07 04:11:38 -05:00
|
|
|
win = (id[0].kind_of?(TkWindow))? id[0].path: id[0].to_s
|
|
|
|
['::blt::table', 'cget', win, id[1]]
|
2004-12-23 11:23:30 -05:00
|
|
|
end
|
|
|
|
private :__item_cget_cmd
|
|
|
|
|
|
|
|
def __item_config_cmd(id) # id := [ container, item, ... ]
|
|
|
|
container, *items = id
|
2006-11-07 04:11:38 -05:00
|
|
|
win = (container.kind_of?(TkWindow))? container.path: container.to_s
|
|
|
|
['::blt::table', 'configure', win, *items]
|
2004-12-23 11:23:30 -05:00
|
|
|
end
|
|
|
|
private :__item_config_cmd
|
|
|
|
|
|
|
|
def __item_pathname(id)
|
2006-11-07 04:11:38 -05:00
|
|
|
win = (id[0].kind_of?(TkWindow))? id[0].path: id[0].to_s
|
|
|
|
win + ';'
|
2004-12-23 11:23:30 -05:00
|
|
|
end
|
|
|
|
private :__item_pathname
|
|
|
|
|
|
|
|
alias __itemcget itemcget
|
* ext/tk/tcltklib.c: SEGV when tcltk-stubs is enabled.
* ext/tk/tcltklib.c: avoid error on a shared object.
* ext/tk/extconf.rb: support --with-tcltkversion
* ext/tk/README.tcltklib: add document about --with-tcltkversion
* ext/tk/lib/tk.rb, ext/tk/lib/multi-tk.rb, ext/tk/lib/remote-tk.rb:
not work on $SAFE==4
* ext/tk/lib/multi-tk.rb: Object#methods returns Symbols on Ruby1.9.
* ext/tk/lib/tk/timer.rb: add TkTimer#at_end(proc) to register the
procedure which called at end of the timer.
* ext/tk/lib/tk.rb, ext/tk/lib/tk/itemfont.rb, ext/tk/lib/font.rb:
support __IGNORE_UNKNOWN_CONFIGURE_OPTION__ about font options.
* ext/tk/lib/*: treat __IGNORE_UNKNOWN_CONFIGURE_OPTION__
* ext/tk/lib/tkextlib/iwidgets/scrolledcanvas.rb,
ext/tk/lib/tkextlib/iwidgets/scrolledlistbox.rb,
ext/tk/lib/tkextlib/iwidgets/scrolledtext.rb: bug fix.
* ext/tk/lib/tk/text.rb: typo. call a wrong method.
* ext/tk/lib/tk/itemconfig.rb: ditto.
* ext/tk/lib/tk.rb, ext/tk/lib/tk/itemconfig.rb,
ext/tk/lib/tk/canvas.rb: support alias names of option keys.
* ext/tk/lib/tk/grid.rb: lack of module-method definitions.
* ext/tk/lib/tk/pack.rb, ext/tk/lib/tk/grid.rb: increase supported
parameter patterns of configure method.
* ext/tk/lib/tk.rb: add TkWindow#grid_anchor, grid_column, grid_row.
* ext/tk/lib/tk/wm.rb: methods of Tk::Wm_for_General module cannot
pass the given block to methods of Tk::Wm module.
* ext/tk/lib/tk/wm.rb: Wm#overrideredirect overwrites arguemnt to
an invalid value.
* ext/tk/lib/tk.rb: fix memory (object) leak bug.
* ext/tk/tcltklib.c, ext/tk/tkutil/tkutil.c: fix memory leak.
* ext/tk/sample/demos-jp/aniwave.rb, ext/tk/sample/demos-en/aniwave.rb:
bug fix.
* ext/tk/lib/tkextlib/blt/component.rb,
ext/tk/lib/tkextlib/tile/tentry.rb,
ext/tk/lib/tkextlib/tile/treeview.rb: ditto.
* ext/tk/lib/tkextlib/tile/tpaned.rb: improve TPaned#add.
* ext/tk/sample/demos-jp/widget, ext/tk/sample/demos-en/widget,
ext/tk/sample/demos-jp/style.rb, ext/tk/sample/demos-en/style.rb,
ext/tk/sample/demos-jp/bind.rb, ext/tk/sample/demos-en/bind.rb:
bug fix.
* ext/tk/sample/ttk_wrapper.rb: ditto.
* ext/tk/sample/ttk_wrapper.rb: support "if __FILE__ == $0" idiom.
* ext/tk/sample/tktextio.rb: add binding for 'Ctrl-u' at console mode.
* ext/tk/lib/tkextlib/tile.rb, ext/tk/lib/tkextlib/tile/style.rb,
ext/tk/sample/ttk_wrapper.rb: improve treating and control themes.
add Tk::Tile.themes and Tk::Tile.set_theme(theme).
* ext/tk/lib/tkextlib/tile.rb: lack of autoload definitions.
* ext/tk/lib/tkextlib/tile/tnotebook.rb: cannot use kanji (not UTF-8)
characters for headings.
* ext/tk/lib/tkextlib/tkDND/shape.rb: wrong package name.
* ext/tk/tkutil/tkutil.c: improve handling callback-subst-keys.
Now, support longnam-keys (e.g. '%CTT' on tkdnd-2.0; however, still
not support tkdnd-2.0 on tkextlib), and symbols of parameters (e.g.
:widget=>'%W', :keycode=>'%k', '%x'=>:x, '%X'=>:root_x, and so on;
those are attributes of event object). It means that Ruby/Tk accepts
not only "widget.bind(ev, '%W', '%k', ...){|w, k, ...| ... }", but
also "widget.bind(ev, :widget, :keycode, ...){|w, k, ...| ... }".
It is potentially incompatible, when user passes symbols to the
arguments of the callback block (the block receives the symbols as
strings). I think that is very rare case (probably, used by Ruby/Tk
experts only). When causes such trouble, please give strings instead
of such symbol parameters (e.g. call Symbol#to_s method).
* ext/tk/lib/tk/event.rb, ext/tk/lib/tk/validation.rb,
ext/tk/lib/tkextlib/blt/treeview.rb,
ext/tk/lib/tkextlib/winico/winico.rb: ditto.
* ext/tk/tkutil/tkutil.c: strings are available on subst_tables on
TkUtil::CallbackSubst class (it is useful on Ruby 1.9).
* ext/tk/lib/tk/spinbox.rb, ext/tk/lib/tkextlib/iwidgets/hierarchy.rb,
ext/tk/lib/tkextlib/iwidgets/spinner.rb,
ext/tk/lib/tkextlib/iwidgets/entryfield.rb,
ext/tk/lib/tkextlib/iwidgets/calendar.rb,
ext/tk/lib/tkextlib/blt/dragdrop.rb,
ext/tk/lib/tkextlib/tkDND/tkdnd.rb,
ext/tk/lib/tkextlib/treectrl/tktreectrl.rb,
ext/tk/lib/tkextlib/tktable/tktable.rb: disable code piece became
unnecessary by reason of the changes of ext/tk/tkutil/tkutil.c.
* ext/tk/lib/tk.rb, ext/tk/lib/multi-tk.rb: change strategy to define
the constant WITH_ENCODING.
* ext/tk/lib/tk.rb: fix bug on Tk::Encoding.tk_encoding_names.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@17083 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2008-06-10 16:59:10 -04:00
|
|
|
alias __itemcget_strict itemcget_strict
|
2004-12-23 11:23:30 -05:00
|
|
|
alias __itemconfigure itemconfigure
|
|
|
|
alias __itemconfiginfo itemconfiginfo
|
|
|
|
alias __current_itemconfiginfo current_itemconfiginfo
|
|
|
|
|
* ext/tk/tcltklib.c: SEGV when tcltk-stubs is enabled.
* ext/tk/tcltklib.c: avoid error on a shared object.
* ext/tk/extconf.rb: support --with-tcltkversion
* ext/tk/README.tcltklib: add document about --with-tcltkversion
* ext/tk/lib/tk.rb, ext/tk/lib/multi-tk.rb, ext/tk/lib/remote-tk.rb:
not work on $SAFE==4
* ext/tk/lib/multi-tk.rb: Object#methods returns Symbols on Ruby1.9.
* ext/tk/lib/tk/timer.rb: add TkTimer#at_end(proc) to register the
procedure which called at end of the timer.
* ext/tk/lib/tk.rb, ext/tk/lib/tk/itemfont.rb, ext/tk/lib/font.rb:
support __IGNORE_UNKNOWN_CONFIGURE_OPTION__ about font options.
* ext/tk/lib/*: treat __IGNORE_UNKNOWN_CONFIGURE_OPTION__
* ext/tk/lib/tkextlib/iwidgets/scrolledcanvas.rb,
ext/tk/lib/tkextlib/iwidgets/scrolledlistbox.rb,
ext/tk/lib/tkextlib/iwidgets/scrolledtext.rb: bug fix.
* ext/tk/lib/tk/text.rb: typo. call a wrong method.
* ext/tk/lib/tk/itemconfig.rb: ditto.
* ext/tk/lib/tk.rb, ext/tk/lib/tk/itemconfig.rb,
ext/tk/lib/tk/canvas.rb: support alias names of option keys.
* ext/tk/lib/tk/grid.rb: lack of module-method definitions.
* ext/tk/lib/tk/pack.rb, ext/tk/lib/tk/grid.rb: increase supported
parameter patterns of configure method.
* ext/tk/lib/tk.rb: add TkWindow#grid_anchor, grid_column, grid_row.
* ext/tk/lib/tk/wm.rb: methods of Tk::Wm_for_General module cannot
pass the given block to methods of Tk::Wm module.
* ext/tk/lib/tk/wm.rb: Wm#overrideredirect overwrites arguemnt to
an invalid value.
* ext/tk/lib/tk.rb: fix memory (object) leak bug.
* ext/tk/tcltklib.c, ext/tk/tkutil/tkutil.c: fix memory leak.
* ext/tk/sample/demos-jp/aniwave.rb, ext/tk/sample/demos-en/aniwave.rb:
bug fix.
* ext/tk/lib/tkextlib/blt/component.rb,
ext/tk/lib/tkextlib/tile/tentry.rb,
ext/tk/lib/tkextlib/tile/treeview.rb: ditto.
* ext/tk/lib/tkextlib/tile/tpaned.rb: improve TPaned#add.
* ext/tk/sample/demos-jp/widget, ext/tk/sample/demos-en/widget,
ext/tk/sample/demos-jp/style.rb, ext/tk/sample/demos-en/style.rb,
ext/tk/sample/demos-jp/bind.rb, ext/tk/sample/demos-en/bind.rb:
bug fix.
* ext/tk/sample/ttk_wrapper.rb: ditto.
* ext/tk/sample/ttk_wrapper.rb: support "if __FILE__ == $0" idiom.
* ext/tk/sample/tktextio.rb: add binding for 'Ctrl-u' at console mode.
* ext/tk/lib/tkextlib/tile.rb, ext/tk/lib/tkextlib/tile/style.rb,
ext/tk/sample/ttk_wrapper.rb: improve treating and control themes.
add Tk::Tile.themes and Tk::Tile.set_theme(theme).
* ext/tk/lib/tkextlib/tile.rb: lack of autoload definitions.
* ext/tk/lib/tkextlib/tile/tnotebook.rb: cannot use kanji (not UTF-8)
characters for headings.
* ext/tk/lib/tkextlib/tkDND/shape.rb: wrong package name.
* ext/tk/tkutil/tkutil.c: improve handling callback-subst-keys.
Now, support longnam-keys (e.g. '%CTT' on tkdnd-2.0; however, still
not support tkdnd-2.0 on tkextlib), and symbols of parameters (e.g.
:widget=>'%W', :keycode=>'%k', '%x'=>:x, '%X'=>:root_x, and so on;
those are attributes of event object). It means that Ruby/Tk accepts
not only "widget.bind(ev, '%W', '%k', ...){|w, k, ...| ... }", but
also "widget.bind(ev, :widget, :keycode, ...){|w, k, ...| ... }".
It is potentially incompatible, when user passes symbols to the
arguments of the callback block (the block receives the symbols as
strings). I think that is very rare case (probably, used by Ruby/Tk
experts only). When causes such trouble, please give strings instead
of such symbol parameters (e.g. call Symbol#to_s method).
* ext/tk/lib/tk/event.rb, ext/tk/lib/tk/validation.rb,
ext/tk/lib/tkextlib/blt/treeview.rb,
ext/tk/lib/tkextlib/winico/winico.rb: ditto.
* ext/tk/tkutil/tkutil.c: strings are available on subst_tables on
TkUtil::CallbackSubst class (it is useful on Ruby 1.9).
* ext/tk/lib/tk/spinbox.rb, ext/tk/lib/tkextlib/iwidgets/hierarchy.rb,
ext/tk/lib/tkextlib/iwidgets/spinner.rb,
ext/tk/lib/tkextlib/iwidgets/entryfield.rb,
ext/tk/lib/tkextlib/iwidgets/calendar.rb,
ext/tk/lib/tkextlib/blt/dragdrop.rb,
ext/tk/lib/tkextlib/tkDND/tkdnd.rb,
ext/tk/lib/tkextlib/treectrl/tktreectrl.rb,
ext/tk/lib/tkextlib/tktable/tktable.rb: disable code piece became
unnecessary by reason of the changes of ext/tk/tkutil/tkutil.c.
* ext/tk/lib/tk.rb, ext/tk/lib/multi-tk.rb: change strategy to define
the constant WITH_ENCODING.
* ext/tk/lib/tk.rb: fix bug on Tk::Encoding.tk_encoding_names.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@17083 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2008-06-10 16:59:10 -04:00
|
|
|
private :__itemcget, :__itemcget_strict
|
|
|
|
private :__itemconfigure, :__itemconfiginfo, :__current_itemconfiginfo
|
2004-12-23 11:23:30 -05:00
|
|
|
|
* ext/tk/extconf.rb: improbe messages [ruby-core:06325].
* ext/tk/lib/tk.rb, ext/tk/lib/tk/canvas.rb, ext/tk/lib/tk/entry.rb,
ext/tk/lib/tk/frame.rb, ext/tk/lib/tk/image.rb,
ext/tk/lib/tk/itemconfig.rb, ext/tk/lib/tk/labelframe.rb,
ext/tk/lib/tk/listbox.rb, ext/tk/lib/tk/menu.rb,
ext/tk/lib/tk/radiobutton.rb, ext/tk/lib/tk/scale.rb,
ext/tk/lib/tk/spinbox.rb, ext/tk/lib/tk/text.rb,
ext/tk/lib/tk/toplevel.rb: improve conversion of option values.
* ext/tk/lib/tkextlib/*: ditto.
* ext/tk/lib/tkextlib/*: update to support ActiveTcl8.4.11.2.
* ext/tk/lib/tkextlib/trofs/*: support Trofs 0.4.3.
* ext/tk/lib/tkextlib/tile/*: support Tile 0.7.2.
* ext/tk/lib/tkextlib/vu/*: support vu 2.3.0.
* ext/tk/lib/tkextlib/tcllib/*: support Tcllib 1.8 (Tklib 0.3).
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9448 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-10-22 18:17:08 -04:00
|
|
|
def __boolval_optkeys
|
|
|
|
super() << 'propagate'
|
|
|
|
end
|
|
|
|
private :__boolval_optkeys
|
|
|
|
|
2004-12-23 11:23:30 -05:00
|
|
|
def tagid(tag)
|
|
|
|
if tag.kind_of?(Array)
|
|
|
|
case tag[0]
|
|
|
|
when Integer
|
|
|
|
# [row, col]
|
|
|
|
tag.join(',')
|
|
|
|
when :c, :C, 'c', 'C', :r, :R, 'r', 'R'
|
|
|
|
# c0 or r1 or C*, and so on
|
|
|
|
tag.collect{|elem| elem.to_s}.join('')
|
|
|
|
else
|
|
|
|
tag
|
|
|
|
end
|
|
|
|
elsif tag.kind_of?(TkWindow)
|
|
|
|
_epath(tag)
|
|
|
|
else
|
|
|
|
tag
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def tagid2obj(tagid)
|
|
|
|
tagid
|
|
|
|
end
|
|
|
|
|
|
|
|
############################################
|
|
|
|
|
|
|
|
def cget(container, option)
|
|
|
|
__itemcget([container], option)
|
|
|
|
end
|
* ext/tk/tcltklib.c: SEGV when tcltk-stubs is enabled.
* ext/tk/tcltklib.c: avoid error on a shared object.
* ext/tk/extconf.rb: support --with-tcltkversion
* ext/tk/README.tcltklib: add document about --with-tcltkversion
* ext/tk/lib/tk.rb, ext/tk/lib/multi-tk.rb, ext/tk/lib/remote-tk.rb:
not work on $SAFE==4
* ext/tk/lib/multi-tk.rb: Object#methods returns Symbols on Ruby1.9.
* ext/tk/lib/tk/timer.rb: add TkTimer#at_end(proc) to register the
procedure which called at end of the timer.
* ext/tk/lib/tk.rb, ext/tk/lib/tk/itemfont.rb, ext/tk/lib/font.rb:
support __IGNORE_UNKNOWN_CONFIGURE_OPTION__ about font options.
* ext/tk/lib/*: treat __IGNORE_UNKNOWN_CONFIGURE_OPTION__
* ext/tk/lib/tkextlib/iwidgets/scrolledcanvas.rb,
ext/tk/lib/tkextlib/iwidgets/scrolledlistbox.rb,
ext/tk/lib/tkextlib/iwidgets/scrolledtext.rb: bug fix.
* ext/tk/lib/tk/text.rb: typo. call a wrong method.
* ext/tk/lib/tk/itemconfig.rb: ditto.
* ext/tk/lib/tk.rb, ext/tk/lib/tk/itemconfig.rb,
ext/tk/lib/tk/canvas.rb: support alias names of option keys.
* ext/tk/lib/tk/grid.rb: lack of module-method definitions.
* ext/tk/lib/tk/pack.rb, ext/tk/lib/tk/grid.rb: increase supported
parameter patterns of configure method.
* ext/tk/lib/tk.rb: add TkWindow#grid_anchor, grid_column, grid_row.
* ext/tk/lib/tk/wm.rb: methods of Tk::Wm_for_General module cannot
pass the given block to methods of Tk::Wm module.
* ext/tk/lib/tk/wm.rb: Wm#overrideredirect overwrites arguemnt to
an invalid value.
* ext/tk/lib/tk.rb: fix memory (object) leak bug.
* ext/tk/tcltklib.c, ext/tk/tkutil/tkutil.c: fix memory leak.
* ext/tk/sample/demos-jp/aniwave.rb, ext/tk/sample/demos-en/aniwave.rb:
bug fix.
* ext/tk/lib/tkextlib/blt/component.rb,
ext/tk/lib/tkextlib/tile/tentry.rb,
ext/tk/lib/tkextlib/tile/treeview.rb: ditto.
* ext/tk/lib/tkextlib/tile/tpaned.rb: improve TPaned#add.
* ext/tk/sample/demos-jp/widget, ext/tk/sample/demos-en/widget,
ext/tk/sample/demos-jp/style.rb, ext/tk/sample/demos-en/style.rb,
ext/tk/sample/demos-jp/bind.rb, ext/tk/sample/demos-en/bind.rb:
bug fix.
* ext/tk/sample/ttk_wrapper.rb: ditto.
* ext/tk/sample/ttk_wrapper.rb: support "if __FILE__ == $0" idiom.
* ext/tk/sample/tktextio.rb: add binding for 'Ctrl-u' at console mode.
* ext/tk/lib/tkextlib/tile.rb, ext/tk/lib/tkextlib/tile/style.rb,
ext/tk/sample/ttk_wrapper.rb: improve treating and control themes.
add Tk::Tile.themes and Tk::Tile.set_theme(theme).
* ext/tk/lib/tkextlib/tile.rb: lack of autoload definitions.
* ext/tk/lib/tkextlib/tile/tnotebook.rb: cannot use kanji (not UTF-8)
characters for headings.
* ext/tk/lib/tkextlib/tkDND/shape.rb: wrong package name.
* ext/tk/tkutil/tkutil.c: improve handling callback-subst-keys.
Now, support longnam-keys (e.g. '%CTT' on tkdnd-2.0; however, still
not support tkdnd-2.0 on tkextlib), and symbols of parameters (e.g.
:widget=>'%W', :keycode=>'%k', '%x'=>:x, '%X'=>:root_x, and so on;
those are attributes of event object). It means that Ruby/Tk accepts
not only "widget.bind(ev, '%W', '%k', ...){|w, k, ...| ... }", but
also "widget.bind(ev, :widget, :keycode, ...){|w, k, ...| ... }".
It is potentially incompatible, when user passes symbols to the
arguments of the callback block (the block receives the symbols as
strings). I think that is very rare case (probably, used by Ruby/Tk
experts only). When causes such trouble, please give strings instead
of such symbol parameters (e.g. call Symbol#to_s method).
* ext/tk/lib/tk/event.rb, ext/tk/lib/tk/validation.rb,
ext/tk/lib/tkextlib/blt/treeview.rb,
ext/tk/lib/tkextlib/winico/winico.rb: ditto.
* ext/tk/tkutil/tkutil.c: strings are available on subst_tables on
TkUtil::CallbackSubst class (it is useful on Ruby 1.9).
* ext/tk/lib/tk/spinbox.rb, ext/tk/lib/tkextlib/iwidgets/hierarchy.rb,
ext/tk/lib/tkextlib/iwidgets/spinner.rb,
ext/tk/lib/tkextlib/iwidgets/entryfield.rb,
ext/tk/lib/tkextlib/iwidgets/calendar.rb,
ext/tk/lib/tkextlib/blt/dragdrop.rb,
ext/tk/lib/tkextlib/tkDND/tkdnd.rb,
ext/tk/lib/tkextlib/treectrl/tktreectrl.rb,
ext/tk/lib/tkextlib/tktable/tktable.rb: disable code piece became
unnecessary by reason of the changes of ext/tk/tkutil/tkutil.c.
* ext/tk/lib/tk.rb, ext/tk/lib/multi-tk.rb: change strategy to define
the constant WITH_ENCODING.
* ext/tk/lib/tk.rb: fix bug on Tk::Encoding.tk_encoding_names.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@17083 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2008-06-10 16:59:10 -04:00
|
|
|
def cget_strict(container, option)
|
|
|
|
__itemcget_strict([container], option)
|
|
|
|
end
|
2004-12-23 11:23:30 -05:00
|
|
|
|
|
|
|
def configure(container, *args)
|
|
|
|
__itemconfigure([container], *args)
|
|
|
|
end
|
|
|
|
|
|
|
|
def configinfo(container, *args)
|
|
|
|
__itemconfiginfo([container], *args)
|
|
|
|
end
|
|
|
|
|
|
|
|
def current_configinfo(container, *args)
|
|
|
|
__current_itemconfiginfo([container], *args)
|
|
|
|
end
|
|
|
|
|
|
|
|
def itemcget(container, item, option)
|
|
|
|
__itemcget([container, tagid(item)], option)
|
|
|
|
end
|
* ext/tk/tcltklib.c: SEGV when tcltk-stubs is enabled.
* ext/tk/tcltklib.c: avoid error on a shared object.
* ext/tk/extconf.rb: support --with-tcltkversion
* ext/tk/README.tcltklib: add document about --with-tcltkversion
* ext/tk/lib/tk.rb, ext/tk/lib/multi-tk.rb, ext/tk/lib/remote-tk.rb:
not work on $SAFE==4
* ext/tk/lib/multi-tk.rb: Object#methods returns Symbols on Ruby1.9.
* ext/tk/lib/tk/timer.rb: add TkTimer#at_end(proc) to register the
procedure which called at end of the timer.
* ext/tk/lib/tk.rb, ext/tk/lib/tk/itemfont.rb, ext/tk/lib/font.rb:
support __IGNORE_UNKNOWN_CONFIGURE_OPTION__ about font options.
* ext/tk/lib/*: treat __IGNORE_UNKNOWN_CONFIGURE_OPTION__
* ext/tk/lib/tkextlib/iwidgets/scrolledcanvas.rb,
ext/tk/lib/tkextlib/iwidgets/scrolledlistbox.rb,
ext/tk/lib/tkextlib/iwidgets/scrolledtext.rb: bug fix.
* ext/tk/lib/tk/text.rb: typo. call a wrong method.
* ext/tk/lib/tk/itemconfig.rb: ditto.
* ext/tk/lib/tk.rb, ext/tk/lib/tk/itemconfig.rb,
ext/tk/lib/tk/canvas.rb: support alias names of option keys.
* ext/tk/lib/tk/grid.rb: lack of module-method definitions.
* ext/tk/lib/tk/pack.rb, ext/tk/lib/tk/grid.rb: increase supported
parameter patterns of configure method.
* ext/tk/lib/tk.rb: add TkWindow#grid_anchor, grid_column, grid_row.
* ext/tk/lib/tk/wm.rb: methods of Tk::Wm_for_General module cannot
pass the given block to methods of Tk::Wm module.
* ext/tk/lib/tk/wm.rb: Wm#overrideredirect overwrites arguemnt to
an invalid value.
* ext/tk/lib/tk.rb: fix memory (object) leak bug.
* ext/tk/tcltklib.c, ext/tk/tkutil/tkutil.c: fix memory leak.
* ext/tk/sample/demos-jp/aniwave.rb, ext/tk/sample/demos-en/aniwave.rb:
bug fix.
* ext/tk/lib/tkextlib/blt/component.rb,
ext/tk/lib/tkextlib/tile/tentry.rb,
ext/tk/lib/tkextlib/tile/treeview.rb: ditto.
* ext/tk/lib/tkextlib/tile/tpaned.rb: improve TPaned#add.
* ext/tk/sample/demos-jp/widget, ext/tk/sample/demos-en/widget,
ext/tk/sample/demos-jp/style.rb, ext/tk/sample/demos-en/style.rb,
ext/tk/sample/demos-jp/bind.rb, ext/tk/sample/demos-en/bind.rb:
bug fix.
* ext/tk/sample/ttk_wrapper.rb: ditto.
* ext/tk/sample/ttk_wrapper.rb: support "if __FILE__ == $0" idiom.
* ext/tk/sample/tktextio.rb: add binding for 'Ctrl-u' at console mode.
* ext/tk/lib/tkextlib/tile.rb, ext/tk/lib/tkextlib/tile/style.rb,
ext/tk/sample/ttk_wrapper.rb: improve treating and control themes.
add Tk::Tile.themes and Tk::Tile.set_theme(theme).
* ext/tk/lib/tkextlib/tile.rb: lack of autoload definitions.
* ext/tk/lib/tkextlib/tile/tnotebook.rb: cannot use kanji (not UTF-8)
characters for headings.
* ext/tk/lib/tkextlib/tkDND/shape.rb: wrong package name.
* ext/tk/tkutil/tkutil.c: improve handling callback-subst-keys.
Now, support longnam-keys (e.g. '%CTT' on tkdnd-2.0; however, still
not support tkdnd-2.0 on tkextlib), and symbols of parameters (e.g.
:widget=>'%W', :keycode=>'%k', '%x'=>:x, '%X'=>:root_x, and so on;
those are attributes of event object). It means that Ruby/Tk accepts
not only "widget.bind(ev, '%W', '%k', ...){|w, k, ...| ... }", but
also "widget.bind(ev, :widget, :keycode, ...){|w, k, ...| ... }".
It is potentially incompatible, when user passes symbols to the
arguments of the callback block (the block receives the symbols as
strings). I think that is very rare case (probably, used by Ruby/Tk
experts only). When causes such trouble, please give strings instead
of such symbol parameters (e.g. call Symbol#to_s method).
* ext/tk/lib/tk/event.rb, ext/tk/lib/tk/validation.rb,
ext/tk/lib/tkextlib/blt/treeview.rb,
ext/tk/lib/tkextlib/winico/winico.rb: ditto.
* ext/tk/tkutil/tkutil.c: strings are available on subst_tables on
TkUtil::CallbackSubst class (it is useful on Ruby 1.9).
* ext/tk/lib/tk/spinbox.rb, ext/tk/lib/tkextlib/iwidgets/hierarchy.rb,
ext/tk/lib/tkextlib/iwidgets/spinner.rb,
ext/tk/lib/tkextlib/iwidgets/entryfield.rb,
ext/tk/lib/tkextlib/iwidgets/calendar.rb,
ext/tk/lib/tkextlib/blt/dragdrop.rb,
ext/tk/lib/tkextlib/tkDND/tkdnd.rb,
ext/tk/lib/tkextlib/treectrl/tktreectrl.rb,
ext/tk/lib/tkextlib/tktable/tktable.rb: disable code piece became
unnecessary by reason of the changes of ext/tk/tkutil/tkutil.c.
* ext/tk/lib/tk.rb, ext/tk/lib/multi-tk.rb: change strategy to define
the constant WITH_ENCODING.
* ext/tk/lib/tk.rb: fix bug on Tk::Encoding.tk_encoding_names.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@17083 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2008-06-10 16:59:10 -04:00
|
|
|
def itemcget_strict(container, item, option)
|
|
|
|
__itemcget_strict([container, tagid(item)], option)
|
|
|
|
end
|
2004-12-23 11:23:30 -05:00
|
|
|
|
|
|
|
def itemconfigure(container, *args)
|
|
|
|
if args[-1].kind_of?(Hash)
|
|
|
|
# container, item, item, ... , hash_optkeys
|
|
|
|
keys = args.pop
|
2006-11-07 04:11:38 -05:00
|
|
|
fail ArgumentError, 'no item is given' if args.empty?
|
2004-12-23 11:23:30 -05:00
|
|
|
id = [container]
|
|
|
|
args.each{|item| id << tagid(item)}
|
|
|
|
__itemconfigure(id, keys)
|
|
|
|
else
|
|
|
|
# container, item, item, ... , option, value
|
|
|
|
val = args.pop
|
|
|
|
opt = args.pop
|
2006-11-07 04:11:38 -05:00
|
|
|
fail ArgumentError, 'no item is given' if args.empty?
|
2004-12-23 11:23:30 -05:00
|
|
|
id = [container]
|
|
|
|
args.each{|item| id << tagid(item)}
|
|
|
|
__itemconfigure(id, opt, val)
|
|
|
|
end
|
2006-11-07 04:11:38 -05:00
|
|
|
container
|
2004-12-23 11:23:30 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
def itemconfiginfo(container, *args)
|
|
|
|
slot = args[-1]
|
|
|
|
if slot.kind_of?(String) || slot.kind_of?(Symbol)
|
|
|
|
slot = slot.to_s
|
|
|
|
if slot[0] == ?. || slot =~ /^\d+,\d+$/ || slot =~ /^(c|C|r|R)(\*|\d+)/
|
|
|
|
# widget || row,col || Ci or Ri
|
|
|
|
slot = nil
|
|
|
|
else
|
|
|
|
# option
|
|
|
|
slot = args.pop
|
|
|
|
end
|
|
|
|
else
|
|
|
|
slot = nil
|
|
|
|
end
|
|
|
|
|
2006-11-07 04:11:38 -05:00
|
|
|
fail ArgumentError, 'no item is given' if args.empty?
|
|
|
|
|
2004-12-23 11:23:30 -05:00
|
|
|
id = [container]
|
|
|
|
args.each{|item| id << tagid(item)}
|
|
|
|
__itemconfiginfo(id, slot)
|
|
|
|
end
|
|
|
|
|
2006-11-07 04:11:38 -05:00
|
|
|
def current_itemconfiginfo(container, *args)
|
|
|
|
slot = args[-1]
|
|
|
|
if slot.kind_of?(String) || slot.kind_of?(Symbol)
|
|
|
|
slot = slot.to_s
|
|
|
|
if slot[0] == ?. || slot =~ /^\d+,\d+$/ || slot =~ /^(c|C|r|R)(\*|\d+)/
|
|
|
|
# widget || row,col || Ci or Ri
|
|
|
|
slot = nil
|
|
|
|
else
|
|
|
|
# option
|
|
|
|
slot = args.pop
|
|
|
|
end
|
|
|
|
else
|
|
|
|
slot = nil
|
|
|
|
end
|
|
|
|
|
|
|
|
fail ArgumentError, 'no item is given' if args.empty?
|
|
|
|
|
|
|
|
id = [container]
|
|
|
|
args.each{|item| id << tagid(item)}
|
|
|
|
__current_itemconfiginfo(id, slot)
|
|
|
|
end
|
|
|
|
|
2004-12-23 11:23:30 -05:00
|
|
|
def info(container)
|
|
|
|
ret = {}
|
|
|
|
inf = list(tk_call('::blt::table', 'info', container))
|
|
|
|
until inf.empty?
|
|
|
|
opt = inf.slice!(0..1)
|
|
|
|
ret[opt[1..-1]] = opt[1]
|
|
|
|
end
|
|
|
|
ret
|
|
|
|
end
|
|
|
|
|
|
|
|
def iteminfo(container, item)
|
2006-11-07 04:11:38 -05:00
|
|
|
inf = list(tk_call('::blt::table', 'info', container, tagid(item)).chomp)
|
|
|
|
|
|
|
|
ret = []
|
|
|
|
until inf.empty? || (inf[0].kind_of?(String) && inf[0] =~ /^-/)
|
|
|
|
ret << inf.shift
|
|
|
|
end
|
|
|
|
|
|
|
|
if inf.length > 1
|
|
|
|
keys = {}
|
|
|
|
while inf.length > 1
|
|
|
|
opt = inf.slice!(0..1)
|
|
|
|
keys[opt[0][1..-1]] = opt[1]
|
|
|
|
end
|
|
|
|
ret << keys
|
2004-12-23 11:23:30 -05:00
|
|
|
end
|
2006-11-07 04:11:38 -05:00
|
|
|
|
2004-12-23 11:23:30 -05:00
|
|
|
ret
|
|
|
|
end
|
|
|
|
|
|
|
|
############################################
|
|
|
|
|
|
|
|
def create_container(container)
|
|
|
|
tk_call('::blt::table', container)
|
|
|
|
begin
|
|
|
|
class << container
|
2006-11-07 04:11:38 -05:00
|
|
|
include Tk::BLT::Table::TableContainer
|
2004-12-23 11:23:30 -05:00
|
|
|
end
|
|
|
|
rescue
|
|
|
|
warn('fail to include TableContainer methods (frozen object?)')
|
|
|
|
end
|
|
|
|
container
|
|
|
|
end
|
|
|
|
|
2005-03-26 08:58:11 -05:00
|
|
|
def add(container, *args)
|
|
|
|
if args.empty?
|
2004-12-23 11:23:30 -05:00
|
|
|
tk_call('::blt::table', container)
|
2005-03-26 08:58:11 -05:00
|
|
|
else
|
|
|
|
args = args.collect{|arg|
|
|
|
|
if arg.kind_of?(TkWindow)
|
|
|
|
_epath(arg)
|
|
|
|
elsif arg.kind_of?(Array) # index
|
|
|
|
arg.join(',')
|
|
|
|
else
|
|
|
|
arg
|
|
|
|
end
|
|
|
|
}
|
|
|
|
tk_call('::blt::table', container, *args)
|
2004-12-23 11:23:30 -05:00
|
|
|
end
|
2006-11-07 04:11:38 -05:00
|
|
|
container
|
2004-12-23 11:23:30 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
def arrange(container)
|
|
|
|
tk_call('::blt::table', 'arrange', container)
|
2006-11-07 04:11:38 -05:00
|
|
|
container
|
2004-12-23 11:23:30 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
def delete(container, *args)
|
|
|
|
tk_call('::blt::table', 'delete', container, *args)
|
|
|
|
end
|
|
|
|
|
|
|
|
def extents(container, item)
|
|
|
|
ret = []
|
|
|
|
inf = list(tk_call('::blt::table', 'extents', container, item))
|
|
|
|
ret << inf.slice!(0..4) until inf.empty?
|
|
|
|
ret
|
|
|
|
end
|
|
|
|
|
|
|
|
def forget(*wins)
|
|
|
|
wins = wins.collect{|win| _epath(win)}
|
|
|
|
tk_call('::blt::table', 'forget', *wins)
|
|
|
|
end
|
|
|
|
|
|
|
|
def insert(container, *args)
|
|
|
|
tk_call('::blt::table', 'insert', container, *args)
|
|
|
|
end
|
|
|
|
|
|
|
|
def insert_before(container, *args)
|
|
|
|
tk_call('::blt::table', 'insert', container, '-before', *args)
|
|
|
|
end
|
|
|
|
|
|
|
|
def insert_after(container, *args)
|
|
|
|
tk_call('::blt::table', 'insert', container, '-after', *args)
|
|
|
|
end
|
|
|
|
|
|
|
|
def join(container, first, last)
|
|
|
|
tk_call('::blt::table', 'join', container, first, last)
|
|
|
|
end
|
|
|
|
|
|
|
|
def locate(container, x, y)
|
|
|
|
tk_call('::blt::table', 'locate', container, x, y)
|
|
|
|
end
|
|
|
|
|
|
|
|
def containers(arg={})
|
|
|
|
list(tk_call('::blt::table', 'containers', *hash_kv(arg)))
|
|
|
|
end
|
|
|
|
|
|
|
|
def containers_pattern(pat)
|
|
|
|
list(tk_call('::blt::table', 'containers', '-pattern', pat))
|
|
|
|
end
|
|
|
|
|
|
|
|
def containers_slave(win)
|
|
|
|
list(tk_call('::blt::table', 'containers', '-slave', win))
|
|
|
|
end
|
|
|
|
|
|
|
|
def save(container)
|
|
|
|
tk_call('::blt::table', 'save', container)
|
|
|
|
end
|
|
|
|
|
|
|
|
def search(container, keys={})
|
|
|
|
list(tk_call('::blt::table', 'containers', *hash_kv(keys)))
|
|
|
|
end
|
|
|
|
|
|
|
|
def split(container, *args)
|
|
|
|
tk_call('::blt::table', 'split', container, *args)
|
|
|
|
end
|
|
|
|
end
|