Class: Shoes::Progress

Inherits:
Native show all
Defined in:
lib/shoes/basic.rb

Instance Attribute Summary

Attributes inherited from Basic

#args, #dps, #initials, #ln, #parent, #pl

Attributes included from Mod

#hover_proc, #hovered, #leave_proc, #margin_bottom, #margin_left, #margin_right, #margin_top

Instance Method Summary collapse

Methods inherited from Native

#clear, #focus, #initialize, #move, #move2, #text, #text=, #toggle

Methods inherited from Basic

#center_at, #clear, #fix_size, #hide, #initialize, #move, #move2, #move3, #positioning, #set_args, #show, #style, #toggle

Methods included from Mod

#click, #hided, #hover, #leave, #release, #set_margin

Constructor Details

This class inherits a constructor from Shoes::Native

Instance Method Details

#fractionObject



324
325
326
# File 'lib/shoes/basic.rb', line 324

def fraction
  @real.isDisposed ? 0 : real.getSelection / 100.0
end

#fraction=(n) ⇒ Object



327
328
329
# File 'lib/shoes/basic.rb', line 327

def fraction= n
  real.setSelection n * 100 unless @real.isDisposed
end