diff options
| author | nagai <nagai@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2003-07-31 20:52:40 +0000 |
|---|---|---|
| committer | nagai <nagai@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2003-07-31 20:52:40 +0000 |
| commit | 9521e7d91d8d3341ba9694491c8fba3f55f0d020 (patch) | |
| tree | 33e458bfb8dcf84face1eb34acede77b68ff5d8d /ext/tk/sample/demos-jp/hello | |
| parent | 13fc32aac2a54126b98d23e79e4a2aa47e8c7506 (diff) | |
| download | ruby-9521e7d91d8d3341ba9694491c8fba3f55f0d020.tar.gz ruby-9521e7d91d8d3341ba9694491c8fba3f55f0d020.tar.xz ruby-9521e7d91d8d3341ba9694491c8fba3f55f0d020.zip | |
* (IMPORTANT BUG FIX) scan of event keywords doesn't work on recent
versions of Tck/Tk
* (bug fix) initialize error of instance variable on TkComposite
* (bug fix) initialize error on encoding-system on MultiTkIp
* (bug fix) trouble on destroying widgets
* (new) add JP and EN version of Ruby/Tk widget demos
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@4249 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'ext/tk/sample/demos-jp/hello')
| -rw-r--r-- | ext/tk/sample/demos-jp/hello | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/ext/tk/sample/demos-jp/hello b/ext/tk/sample/demos-jp/hello new file mode 100644 index 000000000..94e450899 --- /dev/null +++ b/ext/tk/sample/demos-jp/hello @@ -0,0 +1,9 @@ +#!/usr/local/bin/ruby +require 'tk' + +TkButton.new(nil, + 'text'=>"こんにちは、世界", + 'command'=>proc{print "こんにちは、世界\n"; exit} +).pack + +Tk.mainloop |
