mirror of
https://github.com/ruby/ruby.git
synced 2025-08-26 14:34:39 +02:00

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@22784 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
44 lines
1.5 KiB
Ruby
44 lines
1.5 KiB
Ruby
#!/usr/bin/env ruby
|
|
#########################################################
|
|
#
|
|
# set $KCODE to 'utf' for a utf8 charecter
|
|
#
|
|
#########################################################
|
|
unless defined?(::Encoding.default_external)
|
|
$KCODE='utf'
|
|
else
|
|
DEFAULT_TK_ENCODING = 'UTF-8'
|
|
end
|
|
|
|
require 'tk'
|
|
require 'tkextlib/iwidgets'
|
|
|
|
TkOption.add('*textBackground', 'white')
|
|
|
|
ef = Tk::Iwidgets::Entryfield.new(:command=>proc{puts "Return Pressed"})
|
|
|
|
fef = Tk::Iwidgets::Entryfield.new(:labeltext=>'Fixed:',
|
|
:fixed=>10, :width=>12)
|
|
|
|
nef = Tk::Iwidgets::Entryfield.new(:labeltext=>'Numeric:',
|
|
:validate=>:numeric, :width=>12)
|
|
|
|
aef = Tk::Iwidgets::Entryfield.new(:labeltext=>'Alphabetic:',
|
|
:validate=>:alphabetic, :width=>12,
|
|
:invalid=>proc{
|
|
puts "Alphabetic contents invalid"
|
|
})
|
|
|
|
pef = Tk::Iwidgets::Entryfield.new(:labeltext=>'Password:', :width=>12,
|
|
:show=>"\267", ## <=== utf8 character
|
|
:command=>proc{puts "Return Pressed"})
|
|
|
|
Tk::Iwidgets::Labeledwidget.alignlabels(ef, fef, nef, aef, pef)
|
|
|
|
ef.pack(:fil=>:x, :expand=>true, :padx=>10, :pady=>5)
|
|
fef.pack(:fil=>:x, :expand=>true, :padx=>10, :pady=>5)
|
|
nef.pack(:fil=>:x, :expand=>true, :padx=>10, :pady=>5)
|
|
aef.pack(:fil=>:x, :expand=>true, :padx=>10, :pady=>5)
|
|
pef.pack(:fil=>:x, :expand=>true, :padx=>10, :pady=>5)
|
|
|
|
Tk.mainloop
|