Sha256: ff1f242be64cfe8c571cac85bcb9ede254249dc1d5c0954b805bfb6f2295a477

Contents?: true

Size: 1.82 KB

Versions: 3

Compression:

Stored size: 1.82 KB

Contents

require 'rabbit/gtk'

module Rabbit
  class Progress
    attr_reader :window, :foreground, :background
    def initialize
      @width = 100
      @height = 20
      @foreground = nil
      @background = nil
    end

    def foreground=(color)
      @foreground = color
    end

    def background=(color)
      @background = color
    end

    def clear_color
      @foreground = nil
      @background = nil
    end

    def start_progress(max, parent)
      return if max.zero?

      @window = Gtk::Window.new(:popup)
      @window.transient_for = parent
      @window.app_paintable = true
      @window.set_default_size(@width, @height)
      @bar = Gtk::ProgressBar.new
      @window.add(@bar)
      @window.show_all
      @bar.fraction = @current = 0
      @max = max.to_f

      setup_progress_color
    end

    def update_progress(i)
      return if @max.nil?

      @current = i
      @bar.fraction = @current / @max
    end

    def end_progress
      return if @max.nil?

      @current = @max
      @bar.fraction = @current / @max
    end

    def hide
      @max = nil
      @window.destroy
      @bar = nil
      @window = nil
    end

    private
    def setup_progress_color
      css = <<-CSS
progress {
  padding: 0px;
  padding-top: #{@height}px;
  padding-bottom: #{@height}px;
}

trough {
  border-width: 0px;
}
      CSS
      if @foreground
        css << <<-CSS
progress {
  background-color: #{@foreground.to_css_rgba};
  border-color: #{@foreground.to_css_rgba};
}
        CSS
      end
      if @background
        css << <<-CSS
progressbar,
trough {
  background-color: #{@background.to_css_rgba};
}
        CSS
      end
      provider = Gtk::CssProvider.new
      provider.load(:data => css)
      @bar.style_context.add_provider(provider,
                                      Gtk::StyleProvider::PRIORITY_USER)
    end
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
rabbit-3.0.3 lib/rabbit/progress.rb
rabbit-3.0.2 lib/rabbit/progress.rb
rabbit-3.0.1 lib/rabbit/progress.rb