Tutorial Ruby Bagian 4
Tutorial Ruby Bagian 4
TEKNIK INFORMATIKA
UNIVERSITAS NASIONAL
Image
end
Simple calc
background "#666666".."#000000"
stack do
@msg = para 'Hello', :stroke =>white
@el = edit_line "We love Ruby."
button('ok'){ @msg.text = @el.text}
@eb = edit_box "We love Shoes."
button('ok'){ @msg.text = @eb.text}
end
end
background "#666666".."#000000"
para "Pilih jurusan\n", :stroke =>white
button('OK'){@msg.text = @e.text}
@e = list_box :items => ['Teknik Informatika',
'Telekomunikasi', 'Sistem Informasi', 'Manajemen
Informatika'], :height => 30
@msg = para '', :stroke =>white
End
background "#666666".."#000000"
nostroke
r1 = rect 50, 50, 100, 100, :fill => mediumslateblue
r2 = rect 100, 100, 100, 100, :fill => sandybrown
r3 = rect 150, 150, 100, 100, :fill => orchid
end
Shoes.app :title => "Open ", :width =>300, :height => 70
do
button "Open File" do
filename =ask_open_file
para File.read(filename)
end
end