Sha256: 0c7449be977fc8e86053a29e62116b1786ebf257239f4d4e4298612f5edf7b3a
Contents?: true
Size: 681 Bytes
Versions: 83
Compression:
Stored size: 681 Bytes
Contents
# frozen_string_literal: true # NOTE: # This example displays images that can be freely downloaded from the Studio Ghibli website. require 'glimmer-dsl-libui' include Glimmer IMAGE_ROWS = [] 50.times do |i| url = format('https://www.ghibli.jp/gallery/thumb-redturtle%03d.png', (i + 1)) puts "Processing Image: #{url}"; $stdout.flush # for Windows IMAGE_ROWS << [url] # array of one column cell rescue StandardError => e warn url, e.message end window('The Red Turtle', 310, 350, false) { horizontal_box { table { image_column('www.ghibli.jp/works/red-turtle') cell_rows IMAGE_ROWS } } on_closing do puts 'Bye Bye' end }.show
Version data entries
83 entries across 83 versions & 1 rubygems