* 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
|
|
|
|
#
|
|
|
|
|
# simple scrollable canvas widget demo (called by 'widget')
|
|
|
|
|
#
|
|
|
|
|
|
|
|
|
|
# toplevel widget <20><>¸<EFBFBD>ߤ<EFBFBD><DFA4><EFBFBD><EFBFBD>к<EFBFBD><D0BA><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
|
|
|
|
if defined?($cscroll_demo) && $cscroll_demo
|
|
|
|
|
$cscroll_demo.destroy
|
|
|
|
|
$cscroll_demo = nil
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
# demo <20>Ѥ<EFBFBD> toplevel widget <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
|
|
|
|
$cscroll_demo = TkToplevel.new {|w|
|
|
|
|
|
title("Scrollable Canvas Demonstration")
|
|
|
|
|
iconname("cscroll")
|
|
|
|
|
positionWindow(w)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
# label <20><><EFBFBD><EFBFBD>
|
|
|
|
|
TkLabel.new($cscroll_demo, 'font'=>$font, 'wraplength'=>'4i',
|
2004-10-11 04:51:21 +00:00
|
|
|
|
'justify'=>'left', 'text'=>"<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>2 <20>ǥ<EFBFBD><C7A5><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ǥ<EFBFBD><C7A4>륭<EFBFBD><EBA5AD><EFBFBD><EFBFBD><EFBFBD>Х<EFBFBD> widget <20><>ɽ<EFBFBD><C9BD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ƥ<EFBFBD><C6A4>ޤ<EFBFBD><DEA4><EFBFBD><EFBFBD>ͳѤξ<D1A4><CEBE>ǥܥ<C7A5><DCA5><EFBFBD>1 <20><EFBFBD><F2A5AFA5>å<EFBFBD><C3A5><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ȡ<EFBFBD><C8A1><EFBFBD><EFBFBD>Υ<EFBFBD><CEA5><EFBFBD><EFBFBD>ǥå<C7A5><C3A5><EFBFBD><EFBFBD><EFBFBD>ɸ<EFBFBD><C9B8><EFBFBD><EFBFBD><EFBFBD>Ϥ˽<CFA4><CBBD>Ϥ<EFBFBD><CFA4><EFBFBD><EFBFBD>ޤ<EFBFBD><DEA4><EFBFBD>"){
|
2003-07-31 20:52:40 +00:00
|
|
|
|
pack('side'=>'top')
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
# frame <20><><EFBFBD><EFBFBD>
|
|
|
|
|
$cscroll_buttons = TkFrame.new($cscroll_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 = $cscroll_demo
|
|
|
|
|
$cscroll_demo = nil
|
|
|
|
|
tmppath.destroy
|
|
|
|
|
}
|
|
|
|
|
}.pack('side'=>'left', 'expand'=>'yes')
|
|
|
|
|
|
|
|
|
|
TkButton.new(frame) {
|
|
|
|
|
text '<27><><EFBFBD><EFBFBD><EFBFBD>ɻ<EFBFBD><C9BB><EFBFBD>'
|
|
|
|
|
command proc{showCode 'cscroll'}
|
|
|
|
|
}.pack('side'=>'left', 'expand'=>'yes')
|
|
|
|
|
}
|
|
|
|
|
$cscroll_buttons.pack('side'=>'bottom', 'fill'=>'x', 'pady'=>'2m')
|
|
|
|
|
|
|
|
|
|
# frame <20><><EFBFBD><EFBFBD>
|
|
|
|
|
unless $tk_version =~ /^4\.[01]/
|
|
|
|
|
$cscroll_grid = TkFrame.new($cscroll_demo) {
|
|
|
|
|
pack('expand'=>'yes', 'fill'=>'both', 'padx'=>1, 'pady'=>1)
|
|
|
|
|
}
|
|
|
|
|
TkGrid.rowconfigure($cscroll_grid, 0, 'weight'=>1, 'minsize'=>0)
|
|
|
|
|
TkGrid.columnconfigure($cscroll_grid, 0, 'weight'=>1, 'minsize'=>0)
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
# canvas <20><><EFBFBD><EFBFBD>
|
|
|
|
|
$cscroll_canvas = TkCanvas.new($cscroll_demo,
|
2004-10-11 04:51:21 +00:00
|
|
|
|
'relief'=>'sunken', 'borderwidth'=>2,
|
|
|
|
|
'scrollregion'=>['-11c', '-11c', '50c', '20c']
|
|
|
|
|
) {|c|
|
2003-07-31 20:52:40 +00:00
|
|
|
|
if $tk_version =~ /^4\.[01]/
|
|
|
|
|
pack('expand'=>'yes', 'fill'=>'both')
|
|
|
|
|
else
|
|
|
|
|
grid('in'=>$cscroll_grid, 'padx'=>1, 'pady'=>1, 'row'=>0, 'column'=>0,
|
2004-10-11 04:51:21 +00:00
|
|
|
|
'rowspan'=>1, 'columnspan'=>1, 'sticky'=>'news')
|
2003-07-31 20:52:40 +00:00
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
TkScrollbar.new($cscroll_demo, 'command'=>proc{|*args| c.yview(*args)}) {|vs|
|
|
|
|
|
c.yscrollcommand(proc{|first,last| vs.set first,last})
|
|
|
|
|
if $tk_version =~ /^4\.[01]/
|
|
|
|
|
pack('side'=>'right', 'fill'=>'y')
|
|
|
|
|
else
|
|
|
|
|
grid('in'=>$cscroll_grid, 'padx'=>1, 'pady'=>1, 'row'=>0, 'column'=>1,
|
2004-10-11 04:51:21 +00:00
|
|
|
|
'rowspan'=>1, 'columnspan'=>1, 'sticky'=>'news')
|
2003-07-31 20:52:40 +00:00
|
|
|
|
end
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
TkScrollbar.new($cscroll_demo, 'orient'=>'horiz',
|
2004-10-11 04:51:21 +00:00
|
|
|
|
'command'=>proc{|*args| c.xview(*args)}) {|hs|
|
2003-07-31 20:52:40 +00:00
|
|
|
|
c.xscrollcommand(proc{|first,last| hs.set first,last})
|
|
|
|
|
if $tk_version =~ /^4\.[01]/
|
|
|
|
|
pack('side'=>'bottom', 'fill'=>'x')
|
|
|
|
|
else
|
|
|
|
|
grid('in'=>$cscroll_grid, 'padx'=>1, 'pady'=>1, 'row'=>1, 'column'=>0,
|
2004-10-11 04:51:21 +00:00
|
|
|
|
'rowspan'=>1, 'columnspan'=>1, 'sticky'=>'news')
|
2003-07-31 20:52:40 +00:00
|
|
|
|
end
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bg = $cscroll_canvas.configinfo('bg')[4]
|
|
|
|
|
(0..19).each{|i|
|
|
|
|
|
x = -10+3*i
|
|
|
|
|
y = -10
|
|
|
|
|
(0..9).each{|j|
|
|
|
|
|
TkcRectangle.new($cscroll_canvas, "#{x}c", "#{y}c", "#{x+2}c", "#{y+2}c",
|
2004-10-11 04:51:21 +00:00
|
|
|
|
'outline'=>'black', 'fill'=>bg, 'tags'=>'rect')
|
2003-07-31 20:52:40 +00:00
|
|
|
|
TkcText.new($cscroll_canvas, "#{x+1}c", "#{y+1}c",
|
2004-10-11 04:51:21 +00:00
|
|
|
|
'text'=>"#{i},#{j}", 'anchor'=>'center', 'tags'=>'text')
|
2003-07-31 20:52:40 +00:00
|
|
|
|
y += 3
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
$cscroll_canvas.itembind('all', 'Any-Enter', proc{scrollEnter $cscroll_canvas})
|
|
|
|
|
$cscroll_canvas.itembind('all', 'Any-Leave', proc{scrollLeave $cscroll_canvas})
|
|
|
|
|
$cscroll_canvas.itembind('all', '1', proc{scrollButton $cscroll_canvas})
|
|
|
|
|
$cscroll_canvas.itembind('all', 'Any-Enter', proc{scrollEnter $cscroll_canvas})
|
|
|
|
|
$cscroll_canvas.bind('2', proc{|x,y| $cscroll_canvas.scan_mark(x,y)}, '%x %y')
|
|
|
|
|
$cscroll_canvas.bind('B2-Motion',
|
2004-10-11 04:51:21 +00:00
|
|
|
|
proc{|x,y| $cscroll_canvas.scan_dragto(x,y)}, '%x %y')
|
2003-07-31 20:52:40 +00:00
|
|
|
|
|
|
|
|
|
def scrollEnter(c)
|
|
|
|
|
id = c.find_withtag('current')[0].id
|
|
|
|
|
id -= 1 if c.gettags('current').include?('text')
|
|
|
|
|
$oldFill = c.itemconfiginfo(id, 'fill')[4]
|
|
|
|
|
if TkWinfo.depth(c) > 1
|
|
|
|
|
c.itemconfigure(id, 'fill'=>'SeaGreen1')
|
|
|
|
|
else
|
|
|
|
|
c.itemconfigure(id, 'fill'=>'black')
|
|
|
|
|
c.itemconfigure(id+1, 'fill'=>'white')
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
def scrollLeave(c)
|
|
|
|
|
id = c.find_withtag('current')[0].id
|
|
|
|
|
id -= 1 if c.gettags('current').include?('text')
|
|
|
|
|
c.itemconfigure(id, 'fill'=>$oldFill)
|
|
|
|
|
c.itemconfigure(id+1, 'fill'=>'black')
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
def scrollButton(c)
|
|
|
|
|
id = c.find_withtag('current')[0].id
|
|
|
|
|
id += 1 unless c.gettags('current').include?('text')
|
|
|
|
|
print "You buttoned at #{c.itemconfiginfo(id,'text')[4]}\n"
|
|
|
|
|
end
|
|
|
|
|
|