Class: UnderOs::UI::Switch

Inherits:
Input show all
Defined in:
lib/under_os/ui/switch.rb

Constant Summary

Constants inherited from Input

Input::KEYBOARDS

Constants included from Wrap

Wrap::INSTANCES_CACHE, Wrap::RAW_WRAPS_MAP, Wrap::WRAPS_TAGS_MAP

Instance Method Summary collapse

Methods inherited from Input

#blur, #disable, #disabled, #disabled=, #enable, #focus, #hide_keyboard, #keyboard, #keyboard=, #name, #name=, #placeholder, #placeholder=, #textFieldShouldReturn, #type, #type=

Methods inherited from View

#inspect

Methods included from Manipulation

#append, #clear, #insert, #insertTo, #prepend, #remove

Methods included from Traversing

#children, #empty?, #find, #first, #matches, #parent, #siblings

Methods included from Dimensions

#position, #position=, #size, #size=

Methods included from Animation

#animate, #fade_in, #fade_out, #highlight

Methods included from Commons

#data, #data=, #hidden, #hide, #id, #id=, #page, #show, #tagName, #toggle, #visible

Methods included from Styles

#addClass, #className, #className=, #classNames, #classNames=, #hasClass, #radioClass, #removeClass, #repaint, #style, #style=, #toggleClass

Methods included from Events

#emit, #off, #on, #on=

Methods included from Wrap

included

Constructor Details

#initialize(options = {}) ⇒ Switch

Returns a new instance of Switch.



4
5
6
7
8
# File 'lib/under_os/ui/switch.rb', line 4

def initialize(options={})
  super
  self.checked = options[:checked] if options[:checked]
  @_.addTarget self, action: :handle_change, forControlEvents:UIControlEventValueChanged
end

Instance Method Details

#checkedObject



18
19
20
# File 'lib/under_os/ui/switch.rb', line 18

def checked
  @_.on?
end

#checked=(flag) ⇒ Object



22
23
24
# File 'lib/under_os/ui/switch.rb', line 22

def checked=(flag)
  @_.setOn flag, animated: true
end

#valueObject



10
11
12
# File 'lib/under_os/ui/switch.rb', line 10

def value
  @_value
end

#value=(value) ⇒ Object



14
15
16
# File 'lib/under_os/ui/switch.rb', line 14

def value=(value)
  @_value = value # just saving it on the instance
end