mirror of
https://github.com/ruby/ruby.git
synced 2025-09-18 18:13:58 +02:00

* ext/tcltklib/tcltklib.c: add nativethread consistency check. * ext/tcltklib/stubs.c: ditto. * ext/tk/lib/tk.rb: forgot to define TclTkIp.encoding and encoding= when Tcl is 7.6 or 8.0. * ext/tk/lib/tk/wm.rb: support to make some methods as options of root or toplevel widget. [ruby-talk:150336] * ext/tk/lib/tk/root.rb: ditto. * ext/tk/lib/tk/toplevel.rb: ditto. * ext/tk/lib/tkextlib/SUPPRT_STATUS: update RELEASE_DATE git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8@8910 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
108 lines
2.3 KiB
Ruby
108 lines
2.3 KiB
Ruby
#
|
|
# tk/root.rb : treat root widget
|
|
#
|
|
require 'tk'
|
|
require 'tk/wm'
|
|
require 'tk/menuspec'
|
|
|
|
class TkRoot<TkWindow
|
|
include Wm
|
|
include TkMenuSpec
|
|
|
|
def __methodcall_optkeys # { key=>method, ... }
|
|
TOPLEVEL_METHODCALL_OPTKEYS
|
|
end
|
|
private :__methodcall_optkeys
|
|
|
|
=begin
|
|
ROOT = []
|
|
def TkRoot.new(keys=nil)
|
|
if ROOT[0]
|
|
Tk_WINDOWS["."] = ROOT[0]
|
|
return ROOT[0]
|
|
end
|
|
new = super(:without_creating=>true, :widgetname=>'.')
|
|
if keys # wm commands
|
|
keys.each{|k,v|
|
|
if v.kind_of? Array
|
|
new.send(k,*v)
|
|
else
|
|
new.send(k,v)
|
|
end
|
|
}
|
|
end
|
|
ROOT[0] = new
|
|
Tk_WINDOWS["."] = new
|
|
end
|
|
=end
|
|
def TkRoot.new(keys=nil, &b)
|
|
unless TkCore::INTERP.tk_windows['.']
|
|
TkCore::INTERP.tk_windows['.'] =
|
|
super(:without_creating=>true, :widgetname=>'.'){}
|
|
end
|
|
root = TkCore::INTERP.tk_windows['.']
|
|
|
|
keys = _symbolkey2str(keys)
|
|
|
|
# wm commands
|
|
root.instance_eval{
|
|
__methodcall_optkeys.each{|key, method|
|
|
value = keys.delete(key.to_s)
|
|
self.__send__(method, value) if value
|
|
}
|
|
}
|
|
|
|
if keys # wm commands ( for backward comaptibility )
|
|
keys.each{|k,v|
|
|
if v.kind_of? Array
|
|
root.__send__(k,*v)
|
|
else
|
|
root.__send__(k,v)
|
|
end
|
|
}
|
|
end
|
|
|
|
root.instance_eval(&b) if block_given?
|
|
root
|
|
end
|
|
|
|
WidgetClassName = 'Tk'.freeze
|
|
WidgetClassNames[WidgetClassName] = self
|
|
|
|
def self.to_eval
|
|
# self::WidgetClassName
|
|
'.'
|
|
end
|
|
|
|
def create_self
|
|
@path = '.'
|
|
end
|
|
private :create_self
|
|
|
|
def path
|
|
"."
|
|
end
|
|
|
|
def add_menu(menu_info, tearoff=false, opts=nil)
|
|
# See tk/menuspec.rb for menu_info.
|
|
# opts is a hash of default configs for all of cascade menus.
|
|
# Configs of menu_info can override it.
|
|
if tearoff.kind_of?(Hash)
|
|
opts = tearoff
|
|
tearoff = false
|
|
end
|
|
_create_menubutton(self, menu_info, tearoff, opts)
|
|
end
|
|
|
|
def add_menubar(menu_spec, tearoff=false, opts=nil)
|
|
# See tk/menuspec.rb for menu_spec.
|
|
# opts is a hash of default configs for all of cascade menus.
|
|
# Configs of menu_spec can override it.
|
|
menu_spec.each{|info| add_menu(info, tearoff, opts)}
|
|
self.menu
|
|
end
|
|
|
|
def TkRoot.destroy
|
|
TkCore::INTERP._invoke('destroy', '.')
|
|
end
|
|
end
|