Class: UnderOs::UI::Slider

Inherits:
View
  • Object
show all
Includes:
Editable
Defined in:
lib/under_os/ui/slider.rb

Constant Summary

Constants included from Editable

Editable::KEYBOARDS

Constants included from Wrap

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

Instance Method Summary collapse

Methods included from Editable

#keyboard, #keyboard=, #placeholder, #placeholder=

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 = {}) ⇒ Slider

Returns a new instance of Slider.



6
7
8
9
10
11
12
13
14
15
# File 'lib/under_os/ui/slider.rb', line 6

def initialize(options={})
  super

  self.min   = options[:min]   if options[:min]
  self.max   = options[:max]   if options[:max]
  self.value = options[:value] if options[:value]

  @_.continuous = options.delete(:track) || true # track the changes as they go
  @_.addTarget self, action: :fire_change_event, forControlEvents:UIControlEventValueChanged
end

Instance Method Details

#maxObject



33
34
35
# File 'lib/under_os/ui/slider.rb', line 33

def max
  @_.maximumValue
end

#max=(value) ⇒ Object



37
38
39
# File 'lib/under_os/ui/slider.rb', line 37

def max=(value)
  @_.maximumValue = value.to_f
end

#minObject



25
26
27
# File 'lib/under_os/ui/slider.rb', line 25

def min
  @_.minimumValue
end

#min=(value) ⇒ Object



29
30
31
# File 'lib/under_os/ui/slider.rb', line 29

def min=(value)
  @_.minimumValue = value.to_f
end

#valueObject



17
18
19
# File 'lib/under_os/ui/slider.rb', line 17

def value
  @_.value
end

#value=(value) ⇒ Object



21
22
23
# File 'lib/under_os/ui/slider.rb', line 21

def value=(value)
  @_.value = value.to_f
end