mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* 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
This commit is contained in:
parent
af0c875e26
commit
e6697a6405
220 changed files with 7112 additions and 1277 deletions
|
@ -54,9 +54,21 @@ class Tk::Tile::Dialog
|
|||
window(tk_call_without_enc('::ttk::dialog::clientframe', @path))
|
||||
end
|
||||
|
||||
def cget(slot)
|
||||
@keys[slot]
|
||||
def cget_strict(slot)
|
||||
@keys[slot.to_s]
|
||||
end
|
||||
def cget(slot)
|
||||
@keys[slot.to_s]
|
||||
end
|
||||
=begin
|
||||
def cget(slot)
|
||||
unless TkConfigMethod.__IGNORE_UNKNOWN_CONFIGURE_OPTION__
|
||||
cget_strict(slot)
|
||||
else
|
||||
cget_strict(slot) rescue nil
|
||||
end
|
||||
end
|
||||
=end
|
||||
|
||||
def configure(slot, value=None)
|
||||
if slot.kind_of?(Hash)
|
||||
|
|
|
@ -33,9 +33,15 @@ class << Tk::Tile::Style
|
|||
# conflict with some definitions on Tcl/Tk scripts.
|
||||
if Tk::Tile::TILE_SPEC_VERSION_ID < 7
|
||||
def __define_wrapper_proc_for_compatibility__!
|
||||
__define_themes_and_setTheme_proc__!
|
||||
|
||||
unless Tk.info(:commands, '::ttk::style').empty?
|
||||
fail RuntimeError,
|
||||
"can't define ':ttk::style' command (already exist)"
|
||||
# fail RuntimeError,
|
||||
# "can't define '::ttk::style' command (already exist)"
|
||||
|
||||
# do nothing !!!
|
||||
warn "Warning: can't define '::ttk::style' command (already exist)" if $DEBUG
|
||||
return
|
||||
end
|
||||
TkCore::INTERP.add_tk_procs('::ttk::style', 'args', <<-'EOS')
|
||||
if [string equal [lrange $args 0 1] {element create}] {
|
||||
|
@ -55,9 +61,15 @@ class << Tk::Tile::Style
|
|||
end
|
||||
else ### TILE_SPEC_VERSION_ID == 7
|
||||
def __define_wrapper_proc_for_compatibility__!
|
||||
__define_themes_and_setTheme_proc__!
|
||||
|
||||
unless Tk.info(:commands, '::ttk::style').empty?
|
||||
fail RuntimeError,
|
||||
"can't define ':ttk::style' command (already exist)"
|
||||
# fail RuntimeError,
|
||||
# "can't define '::ttk::style' command (already exist)"
|
||||
|
||||
# do nothing !!!
|
||||
warn "Warning: can't define '::ttk::style' command (already exist)" if $DEBUG
|
||||
return
|
||||
end
|
||||
TkCore::INTERP.add_tk_procs('::ttk::style', 'args', <<-'EOS')
|
||||
if [string equal [lrange $args 0 1] {element create}] {
|
||||
|
@ -83,8 +95,14 @@ class << Tk::Tile::Style
|
|||
TkCommandNames = ['::ttk::style'.freeze].freeze
|
||||
|
||||
def __define_wrapper_proc_for_compatibility__!
|
||||
__define_themes_and_setTheme_proc__!
|
||||
|
||||
unless Tk.info(:commands, '::style').empty?
|
||||
fail RuntimeError, "can't define '::style' command (already exist)"
|
||||
# fail RuntimeError, "can't define '::style' command (already exist)"
|
||||
|
||||
# do nothing !!!
|
||||
warn "Warning: can't define '::style' command (already exist)" if $DEBUG
|
||||
return
|
||||
end
|
||||
TkCore::INTERP.add_tk_procs('::style', 'args', <<-'EOS')
|
||||
if [string equal [lrange $args 0 1] {element create}] {
|
||||
|
@ -108,6 +126,36 @@ class << Tk::Tile::Style
|
|||
end
|
||||
end
|
||||
|
||||
def __define_themes_and_setTheme_proc__!
|
||||
TkCore::INTERP.add_tk_procs('::ttk::themes', '{ptn *}', <<-'EOS')
|
||||
#set themes [list]
|
||||
set themes [::ttk::style theme names]
|
||||
foreach pkg [lsearch -inline -all -glob [package names] ttk::theme::$ptn] {
|
||||
set theme [namespace tail $pkg]
|
||||
if {[lsearch -exact $themes $theme] < 0} {
|
||||
lappend themes $theme
|
||||
}
|
||||
}
|
||||
foreach pkg [lsearch -inline -all -glob [package names] tile::theme::$ptn] {
|
||||
set theme [namespace tail $pkg]
|
||||
if {[lsearch -exact $themes $theme] < 0} {
|
||||
lappend themes $theme
|
||||
}
|
||||
}
|
||||
return $themes
|
||||
EOS
|
||||
#########################
|
||||
TkCore::INTERP.add_tk_procs('::ttk::setTheme', 'theme', <<-'EOS')
|
||||
variable currentTheme
|
||||
if {[lsearch -exact [::ttk::style theme names] $theme] < 0} {
|
||||
package require [lsearch -inline -regexp [package names] (ttk|tile)::theme::$theme]
|
||||
}
|
||||
::ttk::style theme use $theme
|
||||
set currentTheme $theme
|
||||
EOS
|
||||
end
|
||||
private :__define_themes_and_setTheme_proc__!
|
||||
|
||||
def configure(style=nil, keys=nil)
|
||||
if style.kind_of?(Hash)
|
||||
keys = style
|
||||
|
|
|
@ -27,6 +27,11 @@ class Tk::Tile::TEntry < Tk::Entry
|
|||
WidgetClassName = 'TEntry'.freeze
|
||||
WidgetClassNames[WidgetClassName] = self
|
||||
|
||||
def __optkey_aliases
|
||||
{:vcmd=>:validatecommand, :invcmd=>:invalidcommand}
|
||||
end
|
||||
private :__optkey_aliases
|
||||
|
||||
def __boolval_optkeys
|
||||
super() << 'exportselection'
|
||||
end
|
||||
|
|
|
@ -41,13 +41,35 @@ class Tk::Tile::TNotebook < TkWindow
|
|||
private :__item_methodcall_optkeys
|
||||
|
||||
#alias tabcget itemcget
|
||||
#alias tabcget_strict itemcget_strict
|
||||
alias tabconfigure itemconfigure
|
||||
alias tabconfiginfo itemconfiginfo
|
||||
alias current_tabconfiginfo current_itemconfiginfo
|
||||
|
||||
def tabcget(tagOrId, option)
|
||||
def tabcget_strict(tagOrId, option)
|
||||
tabconfigure(tagOrId, option)[-1]
|
||||
end
|
||||
def tabcget(tagOrId, option)
|
||||
unless TkItemConfigMethod.__IGNORE_UNKNOWN_CONFIGURE_OPTION__
|
||||
tabcget_strict(tagOrId, option)
|
||||
else
|
||||
begin
|
||||
tabcget_strict(tagOrId, option)
|
||||
rescue => e
|
||||
begin
|
||||
if current_tabconfiginfo(tagOrId).has_key?(option.to_s)
|
||||
# not tag error & option is known -> error on known option
|
||||
fail e
|
||||
else
|
||||
# not tag error & option is unknown
|
||||
nil
|
||||
end
|
||||
rescue
|
||||
fail e # tag error
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
################################
|
||||
|
||||
include Tk::Tile::TileWidget
|
||||
|
@ -77,9 +99,9 @@ class Tk::Tile::TNotebook < TkWindow
|
|||
|
||||
def add(child, keys=nil)
|
||||
if keys && keys != None
|
||||
tk_send_without_enc('add', _epath(child), *hash_kv(keys))
|
||||
tk_send('add', _epath(child), *hash_kv(keys))
|
||||
else
|
||||
tk_send_without_enc('add', _epath(child))
|
||||
tk_send('add', _epath(child))
|
||||
end
|
||||
self
|
||||
end
|
||||
|
|
|
@ -36,9 +36,21 @@ class Tk::Tile::TPaned < TkWindow
|
|||
[self::WidgetClassName, *(args.map!{|a| _get_eval_string(a)})].join('.')
|
||||
end
|
||||
|
||||
def add(win, keys)
|
||||
win = _epath(win)
|
||||
tk_send_without_enc('add', win, *hash_kv(keys))
|
||||
def add(*args)
|
||||
keys = args.pop
|
||||
fail ArgumentError, "no window in arguments" unless keys
|
||||
|
||||
if keys && keys.kind_of?(Hash)
|
||||
fail ArgumentError, "no window in arguments" if args == []
|
||||
opts = hash_kv(keys)
|
||||
else
|
||||
args.push(keys) if keys
|
||||
opts = []
|
||||
end
|
||||
|
||||
args.each{|win|
|
||||
tk_send_without_enc('add', _epath(win), *opts)
|
||||
}
|
||||
self
|
||||
end
|
||||
|
||||
|
@ -54,10 +66,33 @@ class Tk::Tile::TPaned < TkWindow
|
|||
self
|
||||
end
|
||||
|
||||
def panecget(pane, slot)
|
||||
def panecget_strict(pane, slot)
|
||||
pane = _epath(pane)
|
||||
tk_tcl2ruby(tk_send_without_enc('pane', pane, "-#{slot}"))
|
||||
end
|
||||
alias pane_cget_strict panecget_strict
|
||||
|
||||
def panecget(pane, slot)
|
||||
unless TkItemConfigMethod.__IGNORE_UNKNOWN_CONFIGURE_OPTION__
|
||||
panecget_strict(pane, slot)
|
||||
else
|
||||
begin
|
||||
panecget_strict(pane, slot)
|
||||
rescue => e
|
||||
begin
|
||||
if current_paneconfiginfo(pane).has_key?(slot.to_s)
|
||||
# not tag error & option is known -> error on known option
|
||||
fail e
|
||||
else
|
||||
# not tag error & option is unknown
|
||||
nil
|
||||
end
|
||||
rescue
|
||||
fail e # tag error
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
alias pane_cget panecget
|
||||
|
||||
def paneconfigure(pane, key, value=nil)
|
||||
|
|
|
@ -33,6 +33,12 @@ module Tk::Tile::TreeviewConfig
|
|||
else
|
||||
if slot
|
||||
slot = slot.to_s
|
||||
|
||||
alias_name, real_name = __item_optkey_aliases(tagid(tagOrId)).find{|k, v| k.to_s == slot}
|
||||
if real_name
|
||||
slot = real_name.to_s
|
||||
end
|
||||
|
||||
case slot
|
||||
when /^(#{__tile_specific_item_optkeys(tagid(tagOrId)).join('|')})$/
|
||||
begin
|
||||
|
@ -198,6 +204,12 @@ module Tk::Tile::TreeviewConfig
|
|||
else
|
||||
if slot
|
||||
slot = slot.to_s
|
||||
|
||||
alias_name, real_name = __item_optkey_aliases(tagid(tagOrId)).find{|k, v| k.to_s == slot}
|
||||
if real_name
|
||||
slot = real_name.to_s
|
||||
end
|
||||
|
||||
case slot
|
||||
when /^(#{__tile_specific_item_optkeys(tagid(tagOrId)).join('|')})$/
|
||||
begin
|
||||
|
@ -508,17 +520,21 @@ module Tk::Tile::TreeviewConfig
|
|||
end
|
||||
|
||||
alias __itemcget itemcget
|
||||
alias __itemcget_strict itemcget_strict
|
||||
alias __itemconfigure itemconfigure
|
||||
alias __itemconfiginfo itemconfiginfo
|
||||
alias __current_itemconfiginfo current_itemconfiginfo
|
||||
|
||||
private :__itemcget, :__itemconfigure
|
||||
private :__itemconfiginfo, :__current_itemconfiginfo
|
||||
private :__itemcget, :__itemcget_strict
|
||||
private :__itemconfigure, :__itemconfiginfo, :__current_itemconfiginfo
|
||||
|
||||
# Treeview Item
|
||||
def itemcget(tagOrId, option)
|
||||
__itemcget([:item, tagOrId], option)
|
||||
end
|
||||
def itemcget_strict(tagOrId, option)
|
||||
__itemcget_strict([:item, tagOrId], option)
|
||||
end
|
||||
def itemconfigure(tagOrId, slot, value=None)
|
||||
__itemconfigure([:item, tagOrId], slot, value)
|
||||
end
|
||||
|
@ -533,6 +549,9 @@ module Tk::Tile::TreeviewConfig
|
|||
def columncget(tagOrId, option)
|
||||
__itemcget([:column, tagOrId], option)
|
||||
end
|
||||
def columncget_strict(tagOrId, option)
|
||||
__itemcget_strict([:column, tagOrId], option)
|
||||
end
|
||||
def columnconfigure(tagOrId, slot, value=None)
|
||||
__itemconfigure([:column, tagOrId], slot, value)
|
||||
end
|
||||
|
@ -543,12 +562,13 @@ module Tk::Tile::TreeviewConfig
|
|||
__current_itemconfiginfo([:column, tagOrId], slot)
|
||||
end
|
||||
alias column_cget columncget
|
||||
alias column_cget_strict columncget_strict
|
||||
alias column_configure columnconfigure
|
||||
alias column_configinfo columnconfiginfo
|
||||
alias current_column_configinfo current_columnconfiginfo
|
||||
|
||||
# Treeview Heading
|
||||
def headingcget(tagOrId, option)
|
||||
def headingcget_strict(tagOrId, option)
|
||||
if __tile_specific_item_optkeys([:heading, tagOrId]).index(option.to_s)
|
||||
begin
|
||||
# On tile-0.7.{2-8}, 'state' options has no '-' at its head.
|
||||
|
@ -558,7 +578,28 @@ module Tk::Tile::TreeviewConfig
|
|||
tk_call(*(__item_cget_cmd([:heading, tagOrId]) << "-#{option}"))
|
||||
end
|
||||
else
|
||||
__itemcget([:heading, tagOrId], option)
|
||||
__itemcget_strict([:heading, tagOrId], option)
|
||||
end
|
||||
end
|
||||
def headingcget(tagOrId, option)
|
||||
unless TkItemConfigMethod.__IGNORE_UNKNOWN_CONFIGURE_OPTION__
|
||||
headingcget_strict(tagOrId, option)
|
||||
else
|
||||
begin
|
||||
headingcget_strict(tagOrId, option)
|
||||
rescue => e
|
||||
begin
|
||||
if current_headingconfiginfo(tagOrId).has_key?(option.to_s)
|
||||
# not tag error & option is known -> error on known option
|
||||
fail e
|
||||
else
|
||||
# not tag error & option is unknown
|
||||
nil
|
||||
end
|
||||
rescue
|
||||
fail e # tag error
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
def headingconfigure(tagOrId, slot, value=None)
|
||||
|
@ -590,6 +631,7 @@ module Tk::Tile::TreeviewConfig
|
|||
__current_itemconfiginfo([:heading, tagOrId], slot)
|
||||
end
|
||||
alias heading_cget headingcget
|
||||
alias heading_cget_strict headingcget_strict
|
||||
alias heading_configure headingconfigure
|
||||
alias heading_configinfo headingconfiginfo
|
||||
alias current_heading_configinfo current_headingconfiginfo
|
||||
|
@ -598,6 +640,9 @@ module Tk::Tile::TreeviewConfig
|
|||
def tagcget(tagOrId, option)
|
||||
__itemcget([:tag, tagOrId], option)
|
||||
end
|
||||
def tagcget_strict(tagOrId, option)
|
||||
__itemcget_strict([:tag, tagOrId], option)
|
||||
end
|
||||
def tagconfigure(tagOrId, slot, value=None)
|
||||
__itemconfigure([:tag, tagOrId], slot, value)
|
||||
end
|
||||
|
@ -608,6 +653,7 @@ module Tk::Tile::TreeviewConfig
|
|||
__current_itemconfiginfo([:tag, tagOrId], slot)
|
||||
end
|
||||
alias tag_cget tagcget
|
||||
alias tag_cget_strict tagcget_strict
|
||||
alias tag_configure tagconfigure
|
||||
alias tag_configinfo tagconfiginfo
|
||||
alias current_tag_configinfo current_tagconfiginfo
|
||||
|
@ -694,6 +740,9 @@ class Tk::Tile::Treeview::Item < TkObject
|
|||
def cget(option)
|
||||
@t.itemcget(@id, option)
|
||||
end
|
||||
def cget_strict(option)
|
||||
@t.itemcget_strict(@id, option)
|
||||
end
|
||||
|
||||
def configure(key, value=None)
|
||||
@t.itemconfigure(@id, key, value)
|
||||
|
@ -933,6 +982,9 @@ class Tk::Tile::Treeview::Tag < TkObject
|
|||
def cget(option)
|
||||
@t.tagcget(@id, option)
|
||||
end
|
||||
def cget_strict(option)
|
||||
@t.tagcget_strict(@id, option)
|
||||
end
|
||||
|
||||
def configure(key, value=None)
|
||||
@t.tagconfigure(@id, key, value)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue