1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00
ruby--ruby/ext/tk/sample/demos-en/README.tkencoding
nagai 75362fbd47 * (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: svn+ssh://ci.ruby-lang.org/ruby/trunk@4249 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2003-07-31 20:52:40 +00:00

24 lines
519 B
Text
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

tkencoding.rbを用いた日本語の表示について
Copyright (C) 1999/07, Takaaki Tateishi <ttate@jaist.ac.jp>
1. tkencoding.rbとは
tkencoding.rbはTcl/Tk8.1を利用したRuby/Tkのためのライブラリ
です。tkencoding.rbをrequireすることによってWedgetに表示さ
れるテキストは全てunicode(UTF8)へ変換されます。
2. 使い方
tkencoding.rbをrequireしてTk.encodingで使用している文字コード
を指定して下さい。例えば以下のような感じになります。
----
require 'tk'
require 'tkencoding'
Tk.encoding = "euc-jp"
# Tk.encoding = "shiftjis"
---