2003-07-31 16:52:40 -04: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 00:51:21 -04: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 16:52:40 -04:00
|
|
|
|
pack('side'=>'top')
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
# frame <20><><EFBFBD><EFBFBD>
|
|
|
|
|
$cscroll_buttons = TkFrame.new($cscroll_demo) {|frame|
|
|
|
|
|
TkButton.new(frame) {
|
2004-05-01 12:09:54 -04:00
|
|
|
|
#text 'λ<><CEBB>'
|
|
|
|
|
text '<27>Ĥ<EFBFBD><C4A4><EFBFBD>'
|
2003-07-31 16:52:40 -04: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 00:51:21 -04:00
|
|
|
|
'relief'=>'sunken', 'borderwidth'=>2,
|
|
|
|
|
'scrollregion'=>['-11c', '-11c', '50c', '20c']
|
|
|
|
|
) {|c|
|
2003-07-31 16:52:40 -04: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 00:51:21 -04:00
|
|
|
|
'rowspan'=>1, 'columnspan'=>1, 'sticky'=>'news')
|
2003-07-31 16:52:40 -04: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 00:51:21 -04:00
|
|
|
|
'rowspan'=>1, 'columnspan'=>1, 'sticky'=>'news')
|
2003-07-31 16:52:40 -04:00
|
|
|
|
end
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
TkScrollbar.new($cscroll_demo, 'orient'=>'horiz',
|
2004-10-11 00:51:21 -04:00
|
|
|
|
'command'=>proc{|*args| c.xview(*args)}) {|hs|
|
2003-07-31 16:52:40 -04: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 00:51:21 -04:00
|
|
|
|
'rowspan'=>1, 'columnspan'=>1, 'sticky'=>'news')
|
2003-07-31 16:52:40 -04: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 00:51:21 -04:00
|
|
|
|
'outline'=>'black', 'fill'=>bg, 'tags'=>'rect')
|
2003-07-31 16:52:40 -04:00
|
|
|
|
TkcText.new($cscroll_canvas, "#{x+1}c", "#{y+1}c",
|
2004-10-11 00:51:21 -04:00
|
|
|
|
'text'=>"#{i},#{j}", 'anchor'=>'center', 'tags'=>'text')
|
2003-07-31 16:52:40 -04: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 00:51:21 -04:00
|
|
|
|
proc{|x,y| $cscroll_canvas.scan_dragto(x,y)}, '%x %y')
|
2003-07-31 16:52:40 -04: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
|
|
|
|
|
|