mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* ext/tk/lib/tk/*: untabify
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@7029 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
05f5928c9d
commit
3514110b89
296 changed files with 13591 additions and 13558 deletions
|
@ -17,8 +17,8 @@ $unicodeout_demo = TkToplevel.new {|w|
|
|||
}
|
||||
|
||||
TkLabel.new($unicodeout_demo,
|
||||
:font=>$font, :wraplength=>'5.4i', :justify=>:left,
|
||||
:text=><<EOL).pack(:side=>:top)
|
||||
:font=>$font, :wraplength=>'5.4i', :justify=>:left,
|
||||
:text=><<EOL).pack(:side=>:top)
|
||||
This is a sample of Tk's support for languages that use non-Western \
|
||||
character sets. However, what you will actually see below depends \
|
||||
largely on what character sets you have installed, and what you see \
|
||||
|
@ -40,18 +40,18 @@ TkFrame.new($unicodeout_demo){|f|
|
|||
pack(:side=>:bottom, :fill=>:x, :pady=>'2m')
|
||||
|
||||
TkButton.new(f, :text=>'Dismiss', :width=>15, :command=>proc{
|
||||
$unicodeout_demo.destroy
|
||||
$unicodeout_demo = nil
|
||||
}).pack(:side=>:left, :expand=>true)
|
||||
$unicodeout_demo.destroy
|
||||
$unicodeout_demo = nil
|
||||
}).pack(:side=>:left, :expand=>true)
|
||||
|
||||
TkButton.new(f, :text=>'See Code', :width=>15, :command=>proc{
|
||||
showCode 'unicodeout'
|
||||
}).pack(:side=>:left, :expand=>true)
|
||||
showCode 'unicodeout'
|
||||
}).pack(:side=>:left, :expand=>true)
|
||||
}
|
||||
|
||||
wait_msg = TkLabel.new($unicodeout_demo,
|
||||
:text=>"Please wait while loading fonts...",
|
||||
:font=>"Helvetica 12 italic").pack
|
||||
:text=>"Please wait while loading fonts...",
|
||||
:font=>"Helvetica 12 italic").pack
|
||||
|
||||
class Unicodeout_SampleFrame < TkFrame
|
||||
@@font = $font
|
||||
|
@ -71,10 +71,10 @@ class Unicodeout_SampleFrame < TkFrame
|
|||
def add_sample(lang, *args)
|
||||
sample_txt = Tk::UTF8_String(args.join(''))
|
||||
l = TkLabel.new(self, :font=>@@font, :text=>lang+':',
|
||||
:anchor=>:nw, :pady=>0)
|
||||
:anchor=>:nw, :pady=>0)
|
||||
#s = TkLabel.new(self, :font=>@@font, :text=>sample_txt,
|
||||
s = TkLabel.new(self, :font=>TkFont.new(@@font), :text=>sample_txt,
|
||||
:anchor=>:nw, :width=>30, :pady=>0)
|
||||
:anchor=>:nw, :width=>30, :pady=>0)
|
||||
Tk.grid(l, s, :sticky=>:ew, :pady=>0)
|
||||
l.grid_config(:padx, '1m')
|
||||
end
|
||||
|
@ -90,23 +90,23 @@ $unicodeout_demo.cursor('watch')
|
|||
Tk.update
|
||||
|
||||
f.add_sample('Arabic',
|
||||
'\uFE94\uFEF4\uFE91\uFEAE\uFECC\uFEDF\uFE8D\uFE94',
|
||||
'\uFEE4\uFEE0\uFEDC\uFEDF\uFE8D')
|
||||
'\uFE94\uFEF4\uFE91\uFEAE\uFECC\uFEDF\uFE8D\uFE94',
|
||||
'\uFEE4\uFEE0\uFEDC\uFEDF\uFE8D')
|
||||
f.add_sample('Trad. Chinese', '\u4E2D\u570B\u7684\u6F22\u5B57')
|
||||
f.add_sample('Simpl. Chinese', '\u6C49\u8BED')
|
||||
f.add_sample('Greek',
|
||||
'\u0395\u03BB\u03BB\u03B7\u03BD\u03B9\u03BA\u03AE ',
|
||||
'\u03B3\u03BB\u03CE\u03C3\u03C3\u03B1')
|
||||
'\u0395\u03BB\u03BB\u03B7\u03BD\u03B9\u03BA\u03AE ',
|
||||
'\u03B3\u03BB\u03CE\u03C3\u03C3\u03B1')
|
||||
f.add_sample('Hebrew',
|
||||
'\u05DD\u05D9\u05DC\u05E9\u05D5\u05E8\u05D9 ',
|
||||
'\u05DC\u05D9\u05D0\u05E8\u05E9\u05D9')
|
||||
'\u05DD\u05D9\u05DC\u05E9\u05D5\u05E8\u05D9 ',
|
||||
'\u05DC\u05D9\u05D0\u05E8\u05E9\u05D9')
|
||||
f.add_sample('Japanese',
|
||||
'\u65E5\u672C\u8A9E\u306E\u3072\u3089\u304C\u306A, ',
|
||||
'\u6F22\u5B57\u3068\u30AB\u30BF\u30AB\u30CA')
|
||||
'\u65E5\u672C\u8A9E\u306E\u3072\u3089\u304C\u306A, ',
|
||||
'\u6F22\u5B57\u3068\u30AB\u30BF\u30AB\u30CA')
|
||||
f.add_sample('Korean', '\uB300\uD55C\uBBFC\uAD6D\uC758 \uD55C\uAE00')
|
||||
f.add_sample('Russian',
|
||||
'\u0420\u0443\u0441\u0441\u043A\u0438\u0439 ',
|
||||
'\u044F\u0437\u044B\u043A')
|
||||
'\u0420\u0443\u0441\u0441\u043A\u0438\u0439 ',
|
||||
'\u044F\u0437\u044B\u043A')
|
||||
|
||||
wait_msg.destroy
|
||||
$unicodeout_demo.cursor(oldCursor)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue