mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
71 lines
1.8 KiB
Ruby
71 lines
1.8 KiB
Ruby
|
#
|
|||
|
# bitmap widget demo (called by 'widget')
|
|||
|
#
|
|||
|
|
|||
|
# bitmapRow --
|
|||
|
# Create a row of bitmap items in a window.
|
|||
|
#
|
|||
|
# Arguments:
|
|||
|
# w - The parent window that is to contain the row.
|
|||
|
# args - The names of one or more bitmaps, which will be displayed
|
|||
|
# in a new row across the bottom of w along with their
|
|||
|
# names.
|
|||
|
|
|||
|
def bitmapRow(w,*args)
|
|||
|
TkFrame.new(w){|row|
|
|||
|
pack('side'=>'top', 'fill'=>'both')
|
|||
|
for bitmap in args
|
|||
|
TkFrame.new(row){|base|
|
|||
|
pack('side'=>'left', 'fill'=>'both', 'pady'=>'.25c', 'padx'=>'.25c')
|
|||
|
TkLabel.new(base, 'text'=>bitmap, 'width'=>9).pack('side'=>'bottom')
|
|||
|
TkLabel.new(base, 'bitmap'=>bitmap).pack('side'=>'bottom')
|
|||
|
}
|
|||
|
end
|
|||
|
}
|
|||
|
end
|
|||
|
|
|||
|
# toplevel widget <20><>¸<EFBFBD>ߤ<EFBFBD><DFA4><EFBFBD><EFBFBD>к<EFBFBD><D0BA><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
|||
|
if defined?($bitmap_demo) && $bitmap_demo
|
|||
|
$bitmap_demo.destroy
|
|||
|
$bitmap_demo = nil
|
|||
|
end
|
|||
|
|
|||
|
# demo <20>Ѥ<EFBFBD> toplevel widget <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
|||
|
$bitmap_demo = TkToplevel.new {|w|
|
|||
|
title("Bitmap Demonstration")
|
|||
|
iconname("bitmap")
|
|||
|
positionWindow(w)
|
|||
|
}
|
|||
|
|
|||
|
# label <20><><EFBFBD><EFBFBD>
|
|||
|
TkLabel.new($bitmap_demo,'font'=>$font,'wraplength'=>'4i','justify'=>'left',
|
|||
|
'text'=>"<EFBFBD><EFBFBD><EFBFBD>Υ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ɥ<EFBFBD><EFBFBD>ˤϡ<EFBFBD>Tk <20><><EFBFBD>Ȥ߹<C8A4><DFB9>ޤ줿<DEA4><ECA4BF><EFBFBD>٤ƤΥӥåȥޥåפ<C3A5><D7A4><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>̾<EFBFBD><CCBE><EFBFBD>ȶ<EFBFBD><C8B6><EFBFBD>ɽ<EFBFBD><C9BD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ƥ<EFBFBD><C6A4>ޤ<EFBFBD><DEA4><EFBFBD>Tcl <20>Υ<EFBFBD><CEA5><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ץ<EFBFBD><D7A5><EFBFBD><EFBFBD>Ǥϡ<C7A4><CFA1><EFBFBD><EFBFBD>줾<EFBFBD><ECA4BE><EFBFBD><EFBFBD>̾<EFBFBD><CCBE><EFBFBD><EFBFBD><EFBFBD>Ѥ<EFBFBD><D1A4>ƻ<EFBFBD><C6BB>Ȥ<EFBFBD><C8A4>ޤ<EFBFBD><DEA4><EFBFBD>"){
|
|||
|
pack('side'=>'top')
|
|||
|
}
|
|||
|
|
|||
|
# frame <20><><EFBFBD><EFBFBD>
|
|||
|
$bitmap_buttons = TkFrame.new($bitmap_demo) {|frame|
|
|||
|
TkButton.new(frame) {
|
|||
|
text 'λ<><CEBB>'
|
|||
|
command proc{
|
|||
|
tmppath = $bitmap_demo
|
|||
|
$bitmap_demo = nil
|
|||
|
tmppath.destroy
|
|||
|
}
|
|||
|
}.pack('side'=>'left', 'expand'=>'yes')
|
|||
|
|
|||
|
TkButton.new(frame) {
|
|||
|
text '<27><><EFBFBD><EFBFBD><EFBFBD>ɻ<EFBFBD><C9BB><EFBFBD>'
|
|||
|
command proc{showCode 'bitmap'}
|
|||
|
}.pack('side'=>'left', 'expand'=>'yes')
|
|||
|
}
|
|||
|
$bitmap_buttons.pack('side'=>'bottom', 'fill'=>'x', 'pady'=>'2m')
|
|||
|
|
|||
|
# frame <20><><EFBFBD><EFBFBD>
|
|||
|
TkFrame.new($bitmap_demo){|f|
|
|||
|
bitmapRow(f,'error','gray25','gray50','hourglass')
|
|||
|
bitmapRow(f,'info','question','questhead','warning')
|
|||
|
pack('side'=>'top', 'expand'=>'yes', 'fill'=>'both')
|
|||
|
}
|
|||
|
|