Class: Shoes::ToggleButton

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

Direct Known Subclasses

Check, Radio

Instance Attribute Summary

Attributes inherited from Basic

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

Attributes included from Mod

#margin_bottom, #margin_left, #margin_right, #margin_top

Instance Method Summary collapse

Methods inherited from Native

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

Methods inherited from Basic

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

Methods included from Mod

#click, #release, #set_margin

Constructor Details

This class inherits a constructor from Shoes::Basic

Instance Method Details

#checked=(tof) ⇒ Object



255
256
257
258
# File 'lib/shoes/basic.rb', line 255

def checked=(tof)
  real.setSelection tof
  block.call if tof
end

#checked?Boolean

Returns:

  • (Boolean)


252
253
254
# File 'lib/shoes/basic.rb', line 252

def checked?
  real.getSelection
end