* encoding.c: provide basic features for M17N.
* parse.y: encoding aware parsing.
* parse.y (pragma_encoding): encoding specification pragma.
* parse.y (rb_intern3): encoding specified symbols.
* string.c (rb_str_length): length based on characters.
for older behavior, bytesize method added.
* string.c (rb_str_index_m): index based on characters. rindex as
well.
* string.c (succ_char): encoding aware succeeding string.
* string.c (rb_str_reverse): reverse based on characters.
* string.c (rb_str_inspect): encoding aware string description.
* string.c (rb_str_upcase_bang): encoding aware case conversion.
downcase, capitalize, swapcase as well.
* string.c (rb_str_tr_bang): tr based on characters. delete,
squeeze, tr_s, count as well.
* string.c (rb_str_split_m): split based on characters.
* string.c (rb_str_each_line): encoding aware each_line.
* string.c (rb_str_each_char): added. iteration based on
characters.
* string.c (rb_str_strip_bang): encoding aware whitespace
stripping. lstrip, rstrip as well.
* string.c (rb_str_justify): encoding aware justifying (ljust,
rjust, center).
* string.c (str_encoding): get encoding attribute from a string.
* re.c (rb_reg_initialize): encoding aware regular expression
* sprintf.c (rb_str_format): formatting (i.e. length count) based
on characters.
* io.c (rb_io_getc): getc to return one-character string.
for older behavior, getbyte method added.
* ext/stringio/stringio.c (strio_getc): ditto.
* io.c (rb_io_ungetc): allow pushing arbitrary string at the
current reading point.
* ext/stringio/stringio.c (strio_ungetc): ditto.
* ext/strscan/strscan.c: encoding support.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@13261 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2007-08-25 03:29:39 +00:00
|
|
|
|
# -*- coding: euc-jp -*-
|
2003-07-31 20:52:40 +00:00
|
|
|
|
#
|
|
|
|
|
# label widget demo (called by 'widget')
|
|
|
|
|
#
|
|
|
|
|
|
|
|
|
|
# toplevel widget <20><>¸<EFBFBD>ߤ<EFBFBD><DFA4><EFBFBD><EFBFBD>к<EFBFBD><D0BA><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
|
|
|
|
if defined?($label_demo) && $label_demo
|
|
|
|
|
$label_demo.destroy
|
|
|
|
|
$label_demo = nil
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
# demo <20>Ѥ<EFBFBD> toplevel widget <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
|
|
|
|
$label_demo = TkToplevel.new {|w|
|
|
|
|
|
title("Label Demonstration")
|
|
|
|
|
iconname("label")
|
|
|
|
|
positionWindow(w)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
# label <20><><EFBFBD><EFBFBD>
|
|
|
|
|
msg = TkLabel.new($label_demo) {
|
|
|
|
|
font $font
|
|
|
|
|
wraplength '4i'
|
|
|
|
|
justify 'left'
|
|
|
|
|
text "<EFBFBD><EFBFBD><EFBFBD>ˤ<EFBFBD>5<EFBFBD>ĤΥ<EFBFBD><EFBFBD>٥뤬ɽ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ƥ<EFBFBD><EFBFBD>ޤ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>¦<EFBFBD>ˤϥƥ<EFBFBD><EFBFBD><EFBFBD><EFBFBD>ȥ<EFBFBD><EFBFBD>٥뤬3<EFBFBD>Ĥ<EFBFBD><EFBFBD>ꡢ<EFBFBD><EFBFBD>¦<EFBFBD>ˤϥӥåȥޥåץ<EFBFBD><EFBFBD>٥<EFBFBD><EFBFBD>ȥƥ<EFBFBD><EFBFBD><EFBFBD><EFBFBD>ȥ<EFBFBD><EFBFBD>٥뤬<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ޤ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>٥<EFBFBD><EFBFBD>Ȥ<EFBFBD><EFBFBD><EFBFBD><EFBFBD>ΤϤ<EFBFBD><EFBFBD>ޤ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ΤǤϤ<EFBFBD><EFBFBD><EFBFBD><EFBFBD>ޤ<EFBFBD><EFBFBD>ʤ<EFBFBD><EFBFBD>ʤ<EFBFBD>į<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ʳ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ǥ<EFBFBD><EFBFBD>ʤ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ǥ<EFBFBD><EFBFBD><EFBFBD>"
|
|
|
|
|
}
|
|
|
|
|
msg.pack('side'=>'top')
|
|
|
|
|
|
|
|
|
|
# frame <20><><EFBFBD><EFBFBD>
|
|
|
|
|
TkFrame.new($label_demo) {|frame|
|
|
|
|
|
TkButton.new(frame) {
|
2004-05-01 16:09:54 +00:00
|
|
|
|
#text 'λ<><CEBB>'
|
|
|
|
|
text '<27>Ĥ<EFBFBD><C4A4><EFBFBD>'
|
2003-07-31 20:52:40 +00:00
|
|
|
|
command proc{
|
|
|
|
|
tmppath = $label_demo
|
|
|
|
|
$label_demo = nil
|
|
|
|
|
tmppath.destroy
|
|
|
|
|
}
|
|
|
|
|
}.pack('side'=>'left', 'expand'=>'yes')
|
|
|
|
|
|
|
|
|
|
TkButton.new(frame) {
|
|
|
|
|
text '<27><><EFBFBD><EFBFBD><EFBFBD>ɻ<EFBFBD><C9BB><EFBFBD>'
|
|
|
|
|
command proc{showCode 'label'}
|
|
|
|
|
}.pack('side'=>'left', 'expand'=>'yes')
|
|
|
|
|
|
|
|
|
|
}.pack('side'=>'bottom', 'fill'=>'x', 'pady'=>'2m')
|
|
|
|
|
|
|
|
|
|
# label demo <20>ѥե졼<D5A5><ECA1BC><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
|
|
|
|
f_left = TkFrame.new($label_demo)
|
|
|
|
|
f_right = TkFrame.new($label_demo)
|
|
|
|
|
[f_left, f_right].each{|w| w.pack('side'=>'left', 'expand'=>'yes',
|
2004-10-11 04:51:21 +00:00
|
|
|
|
'padx'=>10, 'pady'=>10, 'fill'=>'both')}
|
2003-07-31 20:52:40 +00:00
|
|
|
|
|
|
|
|
|
# label <20><><EFBFBD><EFBFBD>
|
|
|
|
|
[ TkLabel.new(f_left, 'text'=>'<27>ǽ<EFBFBD><C7BD>Υ<EFBFBD><CEA5>٥<EFBFBD>'),
|
|
|
|
|
TkLabel.new(f_left, 'text'=>'2 <20><><EFBFBD>ܡ<EFBFBD><DCA1><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ä<EFBFBD><C3A4>⤭<EFBFBD>夬<EFBFBD>餻<EFBFBD>Ƥߤޤ<DFA4><DEA4><EFBFBD>',
|
2004-10-11 04:51:21 +00:00
|
|
|
|
'relief'=>'raised'),
|
2003-07-31 20:52:40 +00:00
|
|
|
|
TkLabel.new(f_left, 'text'=>'3 <20><><EFBFBD>ܡ<EFBFBD><DCA1><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ǥ<EFBFBD><C7A4>ޤ<EFBFBD> ', 'relief'=>'sunken')
|
|
|
|
|
].each{|w| w.pack('side'=>'top', 'expand'=>'yes', 'pady'=>2, 'anchor'=>'w')}
|
|
|
|
|
|
|
|
|
|
TkLabel.new(f_right) {
|
2004-05-01 16:09:54 +00:00
|
|
|
|
bitmap('@' + [$demo_dir,'..','images','face.xbm'].join(File::Separator))
|
2003-07-31 20:52:40 +00:00
|
|
|
|
borderwidth 2
|
|
|
|
|
relief 'sunken'
|
|
|
|
|
}.pack('side'=>'top')
|
|
|
|
|
|
|
|
|
|
TkLabel.new(f_right) { text 'Tcl/Tk <20><>ͭ<EFBFBD><CDAD>' }.pack('side'=>'top')
|