mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
a25fbe3b3e
* 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
177 lines
5.7 KiB
Ruby
177 lines
5.7 KiB
Ruby
# -*- coding: euc-jp -*-
|
|
#
|
|
# Text Search widget demo (called by 'widget')
|
|
#
|
|
|
|
# textLoadFile --
|
|
# This method below loads a file into a text widget, discarding
|
|
# the previous contents of the widget. Tags for the old widget are
|
|
# not affected, however.
|
|
#
|
|
# Arguments:
|
|
# w - The window into which to load the file. Must be a
|
|
# text widget.
|
|
# file - The name of the file to load. Must be readable.
|
|
|
|
def textLoadFile(w,file)
|
|
w.delete('1.0', 'end')
|
|
f = open(file, 'r')
|
|
while(!f.eof?)
|
|
w.insert('end', f.read(1000))
|
|
end
|
|
f.close
|
|
end
|
|
|
|
# textSearch --
|
|
# Search for all instances of a given string in a text widget and
|
|
# apply a given tag to each instance found.
|
|
#
|
|
# Arguments:
|
|
# w - The window in which to search. Must be a text widget.
|
|
# string - The string to search for. The search is done using
|
|
# exact matching only; no special characters.
|
|
# tag - Tag to apply to each instance of a matching string.
|
|
|
|
def textSearch(w, string, tag)
|
|
tag.remove('0.0', 'end')
|
|
return if string == ""
|
|
cur = '1.0'
|
|
loop {
|
|
cur, len = w.search_with_length(string, cur, 'end')
|
|
break if cur == ""
|
|
tag.add(cur, "#{cur} + #{len} char")
|
|
cur = w.index("#{cur} + #{len} char")
|
|
}
|
|
end
|
|
|
|
# textToggle --
|
|
# This method is invoked repeatedly to invoke two commands at
|
|
# periodic intervals. It normally reschedules itself after each
|
|
# execution but if an error occurs (e.g. because the window was
|
|
# deleted) then it doesn't reschedule itself.
|
|
#
|
|
# Arguments:
|
|
# cmd1 - Command to execute when method is called.
|
|
# sleep1 - Ms to sleep after executing cmd1 before executing cmd2.
|
|
# cmd2 - Command to execute in the *next* invocation of this method.
|
|
# sleep2 - Ms to sleep after executing cmd2 before executing cmd1 again.
|
|
|
|
def textToggle(cmd1,sleep1,cmd2,sleep2)
|
|
sleep_list = [sleep2, sleep1]
|
|
TkAfter.new(proc{sleep = sleep_list.shift; sleep_list.push(sleep); sleep},
|
|
-1, cmd1, cmd2).start(sleep1)
|
|
end
|
|
|
|
# toplevel widget ¤¬Â¸ºß¤¹¤ì¤Ðºï½ü¤¹¤ë
|
|
if defined?($search_demo) && $search_demo
|
|
$search_demo.destroy
|
|
$search_demo = nil
|
|
end
|
|
|
|
# demo ÍѤΠtoplevel widget ¤òÀ¸À®
|
|
$search_demo = TkToplevel.new {|w|
|
|
title("Text Demonstration - Search and Highlight")
|
|
iconname("search")
|
|
positionWindow(w)
|
|
}
|
|
|
|
# frame À¸À®
|
|
$search_buttons = TkFrame.new($search_demo) {|frame|
|
|
TkButton.new(frame) {
|
|
#text 'λ²ò'
|
|
text 'ÊĤ¸¤ë'
|
|
command proc{
|
|
tmppath = $search_demo
|
|
$search_demo = nil
|
|
tmppath.destroy
|
|
}
|
|
}.pack('side'=>'left', 'expand'=>'yes')
|
|
|
|
TkButton.new(frame) {
|
|
text '¥³¡¼¥É»²¾È'
|
|
command proc{showCode 'search'}
|
|
}.pack('side'=>'left', 'expand'=>'yes')
|
|
}
|
|
$search_buttons.pack('side'=>'bottom', 'fill'=>'x', 'pady'=>'2m')
|
|
|
|
# frame À¸À®
|
|
TkFrame.new($search_demo) {|f|
|
|
TkLabel.new(f, 'text'=>'¥Õ¥¡¥¤¥ë̾:',
|
|
'width'=>13, 'anchor'=>'w').pack('side'=>'left')
|
|
$search_fileName = TkVariable.new
|
|
TkEntry.new(f, 'width'=>40,
|
|
'textvariable'=>$search_fileName) {
|
|
pack('side'=>'left')
|
|
bind('Return', proc{textLoadFile($search_text, $search_fileName.value)
|
|
$search_string_entry.focus})
|
|
focus
|
|
}
|
|
TkButton.new(f, 'text'=>'Æɤ߹þ¤ß',
|
|
'command'=>proc{textLoadFile($search_text,
|
|
$search_fileName.value)})\
|
|
.pack('side'=>'left', 'pady'=>5, 'padx'=>10)
|
|
}.pack('side'=>'top', 'fill'=>'x')
|
|
|
|
TkFrame.new($search_demo) {|f|
|
|
TkLabel.new(f, 'text'=>'¸¡º÷ʸ»úÎó:',
|
|
'width'=>13, 'anchor'=>'w').pack('side'=>'left')
|
|
$search_searchString = TkVariable.new
|
|
$search_string_entry = TkEntry.new(f, 'width'=>40,
|
|
'textvariable'=>$search_searchString) {
|
|
pack('side'=>'left')
|
|
bind('Return', proc{textSearch($search_text, $search_searchString.value,
|
|
$search_Tag)})
|
|
}
|
|
TkButton.new(f, 'text'=>'ȿž',
|
|
'command'=>proc{textSearch($search_text,
|
|
$search_searchString.value,
|
|
$search_Tag)}) {
|
|
pack('side'=>'left', 'pady'=>5, 'padx'=>10)
|
|
}
|
|
}.pack('side'=>'top', 'fill'=>'x')
|
|
|
|
$search_text = TkText.new($search_demo, 'setgrid'=>true) {|t|
|
|
$search_Tag = TkTextTag.new(t)
|
|
TkScrollbar.new($search_demo, 'command'=>proc{|*args| t.yview(*args)}) {|sc|
|
|
t.yscrollcommand(proc{|first,last| sc.set first,last})
|
|
pack('side'=>'right', 'fill'=>'y')
|
|
}
|
|
pack('expand'=>'yes', 'fill'=>'both')
|
|
}
|
|
|
|
# Set up display styles for text highlighting.
|
|
|
|
if TkWinfo.depth($search_demo) > 1
|
|
textToggle(proc{
|
|
$search_Tag.configure('background'=>'#ce5555',
|
|
'foreground'=>'white')
|
|
},
|
|
800,
|
|
proc{
|
|
$search_Tag.configure('background'=>'', 'foreground'=>'')
|
|
},
|
|
200 )
|
|
else
|
|
textToggle(proc{
|
|
$search_Tag.configure('background'=>'black',
|
|
'foreground'=>'white')
|
|
},
|
|
800,
|
|
proc{
|
|
$search_Tag.configure('background'=>'', 'foreground'=>'')
|
|
},
|
|
200 )
|
|
end
|
|
$search_text.insert('1.0', "\
|
|
¤³¤Î¥¦¥£¥ó¥É¥¦¤Ï¸¡º÷µ¡¹½¤ò¼Â¸½¤¹¤ë¤Î¤Ë¥Æ¥¥¹¥È widget ¤Î¥¿¥°µ¡Ç½¤¬¤É¤Î \
|
|
¤è¤¦¤Ë»È¤ï¤ì¤ë¤Î¤«¤ò¥Ç¥â¤¹¤ë¤â¤Î¤Ç¤¹¡£¤Þ¤º¾å¤Î¥¨¥ó¥È¥ê¤Ë¥Õ¥¡¥¤¥ë̾¤òÆþ \
|
|
¤ì¡¢<¥ê¥¿¡¼¥ó> ¤ò²¡¤¹¤«¡Ö¥í¡¼¥É¡×¥Ü¥¿¥ó¤ò²¡¤·¤Æ¤¯¤À¤µ¤¤¡£¼¡¤Ë¤½¤Î²¼¤Î \
|
|
¥¨¥ó¥È¥ê¤Ëʸ»úÎó¤òÆþÎϤ·¡¢<¥ê¥¿¡¼¥ó> ¤ò²¡¤¹¤«¡Öȿž¡×¥Ü¥¿¥ó¤ò²¡¤·¤Æ¤¯ \
|
|
¤À¤µ¤¤¡£¤¹¤ë¤È¥Õ¥¡¥¤¥ëÃæ¤Î¡¢¸¡º÷ʸ»úÎó¤È°ìÃפ¹¤ëÉôʬ¤ËÁ´¤Æ \"search_Tag\" \
|
|
¤È¤¤¤¦¥¿¥°¤¬¤Ä¤±¤é¤ì¡¢¥¿¥°¤Îɽ¼¨Â°À¤È¤·¤Æ¤½¤Îʸ»úÎó¤¬ÅÀÌǤ¹¤ë¤è¤¦¤Ë \
|
|
ÀßÄꤵ¤ì¤Þ¤¹¡£")
|
|
$search_text.set_insert '0.0'
|
|
|
|
$search_fileName.value = ''
|
|
$search_searchString.value = ''
|
|
|