Class: UnderOs::UI::Slider

Inherits:
Input
  • Object
show all
Defined in:
lib/under_os/ui/slider.rb

Instance Method Summary collapse

Constructor Details

#initialize(options = {}) ⇒ Slider

Returns a new instance of Slider.



4
5
6
7
8
9
10
11
12
# File 'lib/under_os/ui/slider.rb', line 4

def initialize(options={})
  super

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

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

Instance Method Details

#maxObject



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

def max
  @_.maximumValue
end

#max=(value) ⇒ Object



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

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

#minObject



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

def min
  @_.minimumValue
end

#min=(value) ⇒ Object



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

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

#valueObject



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

def value
  @_.value
end

#value=(value) ⇒ Object



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

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