summaryrefslogtreecommitdiffstats
path: root/ext/tk/lib/tkwinpkg.rb
diff options
context:
space:
mode:
authornagai <nagai@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2003-06-12 21:14:11 +0000
committernagai <nagai@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2003-06-12 21:14:11 +0000
commiteb7937012c8171a9355b8b46dac34fcae1b1c4bf (patch)
treef787d2825c0c66790899ebc24a8343358cd0e86a /ext/tk/lib/tkwinpkg.rb
parent79fac09d456e6b158b57aa6379e9410b2cc7b6db (diff)
downloadruby-eb7937012c8171a9355b8b46dac34fcae1b1c4bf.tar.gz
ruby-eb7937012c8171a9355b8b46dac34fcae1b1c4bf.tar.xz
ruby-eb7937012c8171a9355b8b46dac34fcae1b1c4bf.zip
tk.rb : widget configure returns self (for method call chain)
tkmacpkg.rb : Mac resource (not new but not included untill now) tkwinpkg.rb : Win DDE and registry (not new but not included untill now) git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@3938 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'ext/tk/lib/tkwinpkg.rb')
-rw-r--r--ext/tk/lib/tkwinpkg.rb80
1 files changed, 80 insertions, 0 deletions
diff --git a/ext/tk/lib/tkwinpkg.rb b/ext/tk/lib/tkwinpkg.rb
new file mode 100644
index 000000000..a5ac5c7a1
--- /dev/null
+++ b/ext/tk/lib/tkwinpkg.rb
@@ -0,0 +1,80 @@
+#
+# tkwinpkg.rb : methods for Tcl/Tk packages for Microsoft Windows
+# 2000/11/22 by Hidetoshi Nagai <nagai@ai.kyutech.ac.jp>
+#
+# ATTENTION !!
+# This is NOT TESTED. Because I have no test-environment.
+#
+#
+require 'tk'
+
+module TkWinDDE
+ extend Tk
+ extend TkWinDDE
+
+ tk_call('package', 'require', 'dde')
+
+ def servername(topic=nil)
+ tk_call('dde', 'servername', topic)
+ end
+
+ def execute(service, topic, data)
+ tk_call('dde', 'execute', service, topic, data)
+ end
+
+ def async_execute(service, topic, data)
+ tk_call('dde', '-async', 'execute', service, topic, data)
+ end
+
+ def poke(service, topic, item, data)
+ tk_call('dde', 'poke', service, topic, item, data)
+ end
+
+ def request(service, topic, item)
+ tk_call('dde', 'request', service, topic, item)
+ end
+
+ def services(service, topic)
+ tk_call('dde', 'services', service, topic)
+ end
+
+ def eval(topic, cmd, *args)
+ tk_call('dde', 'eval', topic, cmd, *args)
+ end
+
+ module_function :servername, :execute, :async_execute,
+ :poke, :request, :services, :eval
+end
+
+module TkWinRegistry
+ extend Tk
+ extend TkWinRegistry
+
+ tk_call('package', 'require', 'registry')
+
+ def delete(keynam, valnam=nil)
+ tk_call('registry', 'delete', keynam, valnam)
+ end
+
+ def get(keynam, valnam)
+ tk_call('registry', 'get', keynam, valnam)
+ end
+
+ def keys(keynam)
+ tk_split_simplelist(tk_call('registry', 'keys', keynam))
+ end
+
+ def set(keynam, valnam=nil, data=nil, dattype=nil)
+ tk_call('registry', 'set', keynam, valnam, data, dattype)
+ end
+
+ def type(keynam, valnam)
+ tk_call('registry', 'type', keynam, valnam)
+ end
+
+ def values(keynam)
+ tk_split_simplelist(tk_call('registry', 'values', keynam))
+ end
+
+ module_function :delete, :get, :keys, :set, :type, :values
+end