From 4ca1bb626d0612ce98e4d8eb99873a31b99c689a Mon Sep 17 00:00:00 2001 From: nagai Date: Thu, 16 Jun 2005 04:37:07 +0000 Subject: * ext/tk/lib/tk.rb: add Tk.getMultiple{Open|Save}File() which return an Array of selected files. git-svn-id: http://svn.ruby-lang.org/repos/ruby/branches/ruby_1_8@8630 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ext/tk/lib/tk.rb | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) (limited to 'ext') diff --git a/ext/tk/lib/tk.rb b/ext/tk/lib/tk.rb index 8ac03f1a9..c02257bee 100644 --- a/ext/tk/lib/tk.rb +++ b/ext/tk/lib/tk.rb @@ -1534,10 +1534,16 @@ module TkCore def getOpenFile(keys = nil) tk_call('tk_getOpenFile', *hash_kv(keys)) end + def getMultipleOpenFile(keys = nil) + simplelist(tk_call('tk_getOpenFile', '-multiple', '1', *hash_kv(keys))) + end def getSaveFile(keys = nil) tk_call('tk_getSaveFile', *hash_kv(keys)) end + def getMultipleSaveFile(keys = nil) + simplelist(tk_call('tk_getSaveFile', '-multiple', '1', *hash_kv(keys))) + end def chooseColor(keys = nil) tk_call('tk_chooseColor', *hash_kv(keys)) @@ -4143,7 +4149,7 @@ end #Tk.freeze module Tk - RELEASE_DATE = '2005-06-15'.freeze + RELEASE_DATE = '2005-06-16'.freeze autoload :AUTO_PATH, 'tk/variable' autoload :TCL_PACKAGE_PATH, 'tk/variable' -- cgit