summaryrefslogtreecommitdiff
path: root/ext/tk/lib/tk/toplevel.rb
diff options
context:
space:
mode:
Diffstat (limited to 'ext/tk/lib/tk/toplevel.rb')
-rw-r--r--ext/tk/lib/tk/toplevel.rb15
1 files changed, 15 insertions, 0 deletions
diff --git a/ext/tk/lib/tk/toplevel.rb b/ext/tk/lib/tk/toplevel.rb
index 33920aba77..5e199e1330 100644
--- a/ext/tk/lib/tk/toplevel.rb
+++ b/ext/tk/lib/tk/toplevel.rb
@@ -45,6 +45,21 @@ class TkToplevel<TkWindow
# end
#################
+ def __boolval_optkeys
+ super() << 'container'
+ end
+ private :__boolval_optkeys
+
+ def __strval_optkeys
+ super() << 'screen'
+ end
+ private :__strval_optkeys
+
+ def __val2ruby_optkeys # { key=>proc, ... }
+ super().update('menu'=>proc{|v| window(v)})
+ end
+ private :__val2ruby_optkeys
+
def __methodcall_optkeys # { key=>method, ... }
TOPLEVEL_METHODCALL_OPTKEYS
end