summaryrefslogtreecommitdiff
path: root/ext/tk/lib/tkextlib/tile.rb
diff options
context:
space:
mode:
author(no author) <(no author)@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2004-07-01 09:38:53 +0000
committer(no author) <(no author)@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2004-07-01 09:38:53 +0000
commit18aad3084f09fdc7a9dff0d48fddea16fcf969ea (patch)
treeb8fcdf67f2058b43c0a7cf704bcd7e0a782eff7c /ext/tk/lib/tkextlib/tile.rb
parentb7a7c70c32ff503d9401b4d47263c5d5fa4e45d8 (diff)
This commit was manufactured by cvs2svn to create branch 'ruby_1_8'.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8@6560 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'ext/tk/lib/tkextlib/tile.rb')
-rw-r--r--ext/tk/lib/tkextlib/tile.rb73
1 files changed, 73 insertions, 0 deletions
diff --git a/ext/tk/lib/tkextlib/tile.rb b/ext/tk/lib/tkextlib/tile.rb
new file mode 100644
index 0000000000..866cdf0644
--- /dev/null
+++ b/ext/tk/lib/tkextlib/tile.rb
@@ -0,0 +1,73 @@
+#
+# Tile theme engin (tile widget set) support
+# by Hidetoshi NAGAI (nagai@ai.kyutech.ac.jp)
+#
+
+require 'tk'
+
+# call setup script for general 'tkextlib' libraries
+require 'tkextlib/setup.rb'
+
+# library directory
+dir = File.expand_path(__FILE__).sub(/#{File.extname(__FILE__)}$/, '')
+
+# call setup script
+require File.join(dir, 'setup.rb')
+
+# load package
+# TkPackage.require('tile', '0.4')
+TkPackage.require('tile')
+
+# autoload
+module Tk
+ module Tile
+ module TileWidget
+ def instate(state, script=nil, &b)
+ if script
+ tk_send('instate', state, script)
+ elsif b
+ tk_send('instate', state, Proc.new(&b))
+ else
+ bool(tk_send('instate', state))
+ end
+ end
+
+ def state(state=nil)
+ if state
+ tk_send('state', state)
+ else
+ list(tk_send('state'))
+ end
+ end
+ end
+
+
+ # library directory
+ dir = File.expand_path(__FILE__).sub(/#{File.extname(__FILE__)}$/, '')
+
+ #autoload :TButton, 'tkextlib/tile/tbutton'
+ autoload :TButton, File.join(dir, 'tbutton')
+
+ #autoload :TCheckButton, 'tkextlib/tile/tcheckbutton'
+ #autoload :TCheckbutton, 'tkextlib/tile/tcheckbutton'
+ autoload :TCheckButton, File.join(dir, 'tcheckbutton')
+ autoload :TCheckbutton, File.join(dir, 'tcheckbutton')
+
+ #autoload :TLabel, 'tkextlib/tile/tlabel'
+ autoload :TLabel, File.join(dir, 'tlabel')
+
+ #autoload :TMenubutton, 'tkextlib/tile/tmenubutton'
+ autoload :TMenubutton, File.join(dir, 'tmenubutton')
+
+ #autoload :TNotebook, 'tkextlib/tile/tnotebook'
+ autoload :TNotebook, File.join(dir, 'tnotebook')
+
+ #autoload :TRadioButton, 'tkextlib/tile/tradiobutton'
+ #autoload :TRadiobutton, 'tkextlib/tile/tradiobutton'
+ autoload :TRadioButton, File.join(dir, 'tradiobutton')
+ autoload :TRadiobutton, File.join(dir, 'tradiobutton')
+
+ #autoload :Style, 'tkextlib/tile/style'
+ autoload :Style, File.join(dir, 'style')
+ end
+end