2003-07-31 16:52:40 -04:00
|
|
|
|
#
|
|
|
|
|
# listbox widget demo 'sayings' (called by 'widget')
|
|
|
|
|
#
|
|
|
|
|
|
|
|
|
|
# toplevel widget <20><>¸<EFBFBD>ߤ<EFBFBD><DFA4><EFBFBD><EFBFBD>к<EFBFBD><D0BA><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
|
|
|
|
if defined?($sayings_demo) && $sayings_demo
|
|
|
|
|
$sayings_demo.destroy
|
|
|
|
|
$sayings_demo = nil
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
# demo <20>Ѥ<EFBFBD> toplevel widget <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
|
|
|
|
$sayings_demo = TkToplevel.new {|w|
|
|
|
|
|
title("Listbox Demonstration (well-known sayings)")
|
|
|
|
|
iconname("sayings")
|
|
|
|
|
positionWindow(w)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
# label <20><><EFBFBD><EFBFBD>
|
|
|
|
|
msg = TkLabel.new($sayings_demo) {
|
|
|
|
|
font $font
|
|
|
|
|
wraplength '4i'
|
|
|
|
|
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><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>2(<28><><EFBFBD>ܥ<EFBFBD><DCA5><EFBFBD>)<29><EFBFBD><F2B2A1A4><EFBFBD><EFBFBD>ޤޥɥ<DEA5><C9A5>å<EFBFBD><C3A5><EFBFBD><EFBFBD>Ƥ<EFBFBD><C6A4>Ǥ<EFBFBD><C7A4>ޤ<EFBFBD><DEA4><EFBFBD>"
|
|
|
|
|
}
|
|
|
|
|
msg.pack('side'=>'top')
|
|
|
|
|
|
|
|
|
|
# frame <20><><EFBFBD><EFBFBD>
|
|
|
|
|
TkFrame.new($sayings_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 = $sayings_demo
|
|
|
|
|
$sayings_demo = nil
|
|
|
|
|
tmppath.destroy
|
|
|
|
|
}
|
|
|
|
|
}.pack('side'=>'left', 'expand'=>'yes')
|
|
|
|
|
|
|
|
|
|
TkButton.new(frame) {
|
|
|
|
|
text '<27><><EFBFBD><EFBFBD><EFBFBD>ɻ<EFBFBD><C9BB><EFBFBD>'
|
|
|
|
|
command proc{showCode 'sayings'}
|
|
|
|
|
}.pack('side'=>'left', 'expand'=>'yes')
|
|
|
|
|
|
|
|
|
|
}.pack('side'=>'bottom', 'fill'=>'x', 'pady'=>'2m')
|
|
|
|
|
|
|
|
|
|
# frame <20><><EFBFBD><EFBFBD>
|
|
|
|
|
sayings_lbox = nil
|
|
|
|
|
TkFrame.new($sayings_demo, 'borderwidth'=>10) {|w|
|
|
|
|
|
sv = TkScrollbar.new(w)
|
|
|
|
|
sh = TkScrollbar.new(w, 'orient'=>'horizontal')
|
|
|
|
|
sayings_lbox = TkListbox.new(w) {
|
|
|
|
|
setgrid 1
|
|
|
|
|
width 20
|
|
|
|
|
height 10
|
|
|
|
|
yscrollcommand proc{|first,last| sv.set first,last}
|
|
|
|
|
xscrollcommand proc{|first,last| sh.set first,last}
|
|
|
|
|
}
|
|
|
|
|
sv.command(proc{|*args| sayings_lbox.yview(*args)})
|
|
|
|
|
sh.command(proc{|*args| sayings_lbox.xview(*args)})
|
|
|
|
|
|
|
|
|
|
if $tk_version =~ /^4\.[01]/
|
|
|
|
|
sv.pack('side'=>'right', 'fill'=>'y')
|
|
|
|
|
sh.pack('side'=>'bottom', 'fill'=>'x')
|
|
|
|
|
sayings_lbox.pack('expand'=>'yes', 'fill'=>'y')
|
|
|
|
|
|
|
|
|
|
else
|
|
|
|
|
sayings_lbox.grid('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
|
|
|
|
sv.grid('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
|
|
|
|
sh.grid('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
|
|
|
|
TkGrid.rowconfigure(w, 0, 'weight'=>1, 'minsize'=>0)
|
|
|
|
|
TkGrid.columnconfigure(w, 0, 'weight'=>1, 'minsize'=>0)
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
}.pack('side'=>'top', 'expand'=>'yes', 'fill'=>'y')
|
|
|
|
|
|
|
|
|
|
sayings_lbox.insert(0,
|
|
|
|
|
"Waste not, want not",
|
|
|
|
|
"Early to bed and early to rise makes a man healthy, wealthy, and wise",
|
|
|
|
|
"Ask not what your country can do for you, ask what you can do for your country",
|
|
|
|
|
"I shall return",
|
|
|
|
|
"NOT",
|
|
|
|
|
"A picture is worth a thousand words",
|
|
|
|
|
"User interfaces are hard to build",
|
|
|
|
|
"Thou shalt not steal",
|
|
|
|
|
"A penny for your thoughts",
|
|
|
|
|
"Fool me once, shame on you; fool me twice, shame on me",
|
|
|
|
|
"Every cloud has a silver lining",
|
|
|
|
|
"Where there's smoke there's fire",
|
|
|
|
|
"It takes one to know one",
|
|
|
|
|
"Curiosity killed the cat",
|
|
|
|
|
"Take this job and shove it",
|
|
|
|
|
"Up a creek without a paddle",
|
|
|
|
|
"I'm mad as hell and I'm not going to take it any more",
|
|
|
|
|
"An apple a day keeps the doctor away",
|
|
|
|
|
"Don't look a gift horse in the mouth"
|
|
|
|
|
)
|
|
|
|
|
|