Sha256: 4107fd301bd35357bdff8c876793a6a797d3a239089660d5418b73d37b3b3243

Contents?: true

Size: 1.02 KB

Versions: 6

Compression:

Stored size: 1.02 KB

Contents

Shoes.app do
  background "#eee"
  @list = stack do
    para "Enter a URL to download:", :margin => [10, 8, 10, 0]
    flow :margin => 10 do
      @url = edit_line :width => -120
      @url.text ='http://shoes.mvmanila.com'
      button "Download", :width => 120 do
        @list.append do
          stack do
            background "#eee".."#ccd"
            stack :margin => 10 do
              dld = nil
              para @url.text, " [", link("cancel") { dld.abort }, "]", :margin => 0
              d = inscription "Beginning transfer.", :margin => 0
              p = progress :width => 1.0, :height => 14
              dld = download @url.text, :save => File.basename(@url.text),
                :pause => 1.25,
                :progress => proc { |dl| 
                  d.text = "Transferred #{dl.transferred} of #{dl.length} bytes (#{dl.percent}%)"
                  p.fraction = dl.percent },
                :finish => proc { |dl| d.text = "Download completed"}
            end
          end
        end
      end
    end
  end
end

Version data entries

6 entries across 6 versions & 2 rubygems

Version Path
scarpe-0.4.0 examples/legacy/not_checked/shoes3-tests/progress/progress.rb
scarpe-0.3.0 examples/legacy/not_checked/shoes3-tests/progress/progress.rb
scarpe-0.2.2 examples/legacy/not_checked/shoes3-tests/progress/progress.rb
lacci-0.2.1 examples/legacy/not_checked/shoes3-tests/progress/progress.rb
scarpe-0.2.1 examples/legacy/not_checked/shoes3-tests/progress/progress.rb
scarpe-0.2.0 examples/legacy/not_checked/shoes3-tests/progress/progress.rb