summaryrefslogtreecommitdiff
path: root/ext/tk
diff options
context:
space:
mode:
authornagai <nagai@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2005-06-16 09:22:01 +0000
committernagai <nagai@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2005-06-16 09:22:01 +0000
commitffb1f5722bace8f8eb384f8524f2cb8ce01c74a8 (patch)
treedf48f14ae0daecbadb21493a7ec3e8c7072ffbaf /ext/tk
parent79d206efef783fbe276b37c14930c8e022482aca (diff)
* lib/tkextlib/SUPPOPRT_STATUS: add RELEASE_DATE information.
* lib/tkextlib/tile/style.rb: add "style element options <elem>" command support. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@8634 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'ext/tk')
-rw-r--r--ext/tk/ChangeLog.tkextlib7
-rw-r--r--ext/tk/lib/tkextlib/SUPPORT_STATUS3
-rw-r--r--ext/tk/lib/tkextlib/tile/style.rb4
3 files changed, 14 insertions, 0 deletions
diff --git a/ext/tk/ChangeLog.tkextlib b/ext/tk/ChangeLog.tkextlib
index 325fd99ac1..89c33a4dca 100644
--- a/ext/tk/ChangeLog.tkextlib
+++ b/ext/tk/ChangeLog.tkextlib
@@ -1,3 +1,10 @@
+2005-06-16 Hidetoshi NAGAI <nagai@ai.kyutech.ac.jp>
+
+ * lib/tkextlib/SUPPOPRT_STATUS: add RELEASE_DATE information.
+
+ * lib/tkextlib/tile/style.rb: add "style element options <elem>"
+ command support.
+
2005-06-08 Hidetoshi NAGAI <nagai@ai.kyutech.ac.jp>
* lib/tkextlib/ICONS/icons.rb: fail to create instances of
diff --git a/ext/tk/lib/tkextlib/SUPPORT_STATUS b/ext/tk/lib/tkextlib/SUPPORT_STATUS
index 45af92b420..587af51bdb 100644
--- a/ext/tk/lib/tkextlib/SUPPORT_STATUS
+++ b/ext/tk/lib/tkextlib/SUPPORT_STATUS
@@ -1,6 +1,8 @@
[ current support status of Tcl/Tk extensions ]
+ *******<<< RELEASE_DATE of the libraries : 2005/06/16 >>>*******
+
The following list shows *CURRENT* status when this file was modifyed
at last. If you want to add other Tcl/Tk extensions to the planed list
(or change its status position), please request them at the ruby-talk,
@@ -178,6 +180,7 @@ Mk4tcl *** http://www.equi4.com/metakit/tcl.html
Memchan *** http://memchan.sourceforge.net/
+XOTcl *** http://www.xotcl.org/
===< tool (may not supprt) >==================================================
diff --git a/ext/tk/lib/tkextlib/tile/style.rb b/ext/tk/lib/tkextlib/tile/style.rb
index 99b2fd0e72..4245d315f8 100644
--- a/ext/tk/lib/tkextlib/tile/style.rb
+++ b/ext/tk/lib/tkextlib/tile/style.rb
@@ -67,6 +67,10 @@ class << Tk::Tile::Style
list(tk_call('style', 'element', 'names'))
end
+ def element_options(elem)
+ simplelist(tk_call('style', 'element', 'options', elem))
+ end
+
def theme_create(name, keys=nil)
if keys && keys != None
tk_call('style', 'theme', 'create', name, *hash_kv(keys))