2012-03-24 16:22:40 +01:00
|
|
|
UIScrollBar = extends(UIWidget)
|
|
|
|
|
2012-03-25 16:10:15 +02:00
|
|
|
-- private functions
|
|
|
|
local function calcValues(self)
|
|
|
|
local slider = self:getChildById('sliderButton')
|
|
|
|
local decrementButton = self:getChildById('decrementButton')
|
|
|
|
local incrementButton = self:getChildById('incrementButton')
|
|
|
|
|
|
|
|
local pxrange, center
|
|
|
|
if self.orientation == 'vertical' then
|
|
|
|
pxrange = (self:getHeight() - decrementButton:getHeight() - decrementButton:getMarginTop() - decrementButton:getMarginBottom()
|
|
|
|
- incrementButton:getHeight() - incrementButton:getMarginTop() - incrementButton:getMarginBottom())
|
2012-03-28 02:33:35 +02:00
|
|
|
center = self:getY() + math.floor(self:getHeight() / 2)
|
2012-03-25 16:10:15 +02:00
|
|
|
else -- horizontal
|
|
|
|
pxrange = (self:getWidth() - decrementButton:getWidth() - decrementButton:getMarginLeft() - decrementButton:getMarginRight()
|
|
|
|
- incrementButton:getWidth() - incrementButton:getMarginLeft() - incrementButton:getMarginRight())
|
|
|
|
center = self:getX() + self:getWidth() / 2
|
|
|
|
end
|
|
|
|
|
|
|
|
local range = self.maximum - self.minimum + 1
|
2012-03-28 02:33:35 +02:00
|
|
|
|
|
|
|
local proportion
|
|
|
|
|
|
|
|
if self.pixelsScroll then
|
|
|
|
proportion = pxrange/(range+pxrange)
|
|
|
|
else
|
|
|
|
proportion = math.min(math.max(self.step, 1), range)/range
|
|
|
|
end
|
|
|
|
|
|
|
|
local px = math.max(proportion * pxrange, 10)
|
|
|
|
px = px - px % 2 + 1
|
|
|
|
|
2012-03-25 19:10:19 +02:00
|
|
|
local offset = 0
|
2012-03-28 02:33:35 +02:00
|
|
|
if range == 0 or self.value == self.minimum then
|
|
|
|
if self.orientation == 'vertical' then
|
|
|
|
offset = -math.floor((self:getHeight() - px) / 2) + decrementButton:getMarginRect().height
|
|
|
|
else
|
|
|
|
offset = -math.floor((self:getWidth() - px) / 2) + decrementButton:getMarginRect().width
|
|
|
|
end
|
|
|
|
elseif range > 1 and self.value == self.maximum then
|
|
|
|
if self.orientation == 'vertical' then
|
|
|
|
offset = math.ceil((self:getHeight() - px) / 2) - incrementButton:getMarginRect().height
|
|
|
|
else
|
|
|
|
offset = math.ceil((self:getWidth() - px) / 2) - incrementButton:getMarginRect().width
|
|
|
|
end
|
|
|
|
elseif range > 1 then
|
|
|
|
offset = (((self.value - self.minimum) / (range - 1)) - 0.5) * (pxrange - px)
|
2012-03-25 19:10:19 +02:00
|
|
|
end
|
2012-03-25 16:10:15 +02:00
|
|
|
|
|
|
|
return range, pxrange, px, offset, center
|
|
|
|
end
|
|
|
|
|
|
|
|
local function updateSlider(self)
|
|
|
|
local slider = self:getChildById('sliderButton')
|
|
|
|
if slider == nil then return end
|
|
|
|
|
|
|
|
local range, pxrange, px, offset, center = calcValues(self)
|
|
|
|
if self.orientation == 'vertical' then
|
|
|
|
slider:setHeight(px)
|
|
|
|
slider:setMarginTop(offset)
|
|
|
|
else -- horizontal
|
|
|
|
slider:setWidth(px)
|
|
|
|
slider:setMarginLeft(offset)
|
|
|
|
end
|
|
|
|
|
|
|
|
if self.maximum == self.minimum then
|
|
|
|
self:disable()
|
|
|
|
else
|
|
|
|
self:enable()
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
local function parseSliderPos(self, pos)
|
|
|
|
local point
|
|
|
|
if self.orientation == 'vertical' then
|
|
|
|
point = pos.y
|
|
|
|
else
|
|
|
|
point = pos.x
|
|
|
|
end
|
|
|
|
local range, pxrange, px, offset, center = calcValues(self)
|
|
|
|
offset = math.min(math.max(point - center, -pxrange/2), pxrange/2)
|
2012-03-25 19:10:19 +02:00
|
|
|
local newvalue = math.floor(((offset / (pxrange - px)) + 0.5) * (range - 1)) + self.minimum
|
2012-03-25 16:10:15 +02:00
|
|
|
self:setValue(newvalue)
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
|
|
-- public functions
|
2012-03-24 16:22:40 +01:00
|
|
|
function UIScrollBar.create()
|
|
|
|
local scrollbar = UIScrollBar.internalCreate()
|
|
|
|
scrollbar:setFocusable(false)
|
2012-03-25 16:10:15 +02:00
|
|
|
scrollbar.value = 0
|
|
|
|
scrollbar.minimum = 0
|
|
|
|
scrollbar.maximum = 0
|
|
|
|
scrollbar.step = 1
|
|
|
|
scrollbar.orientation = 'vertical'
|
2012-03-28 02:33:35 +02:00
|
|
|
scrollbar.pixelsScroll = false
|
2012-03-24 16:22:40 +01:00
|
|
|
return scrollbar
|
|
|
|
end
|
|
|
|
|
|
|
|
function UIScrollBar:onSetup()
|
2012-03-25 16:10:15 +02:00
|
|
|
addEvent(function()
|
|
|
|
Mouse.bindAutoPress(self:getChildById('decrementButton'), function() self:decrement() end)
|
|
|
|
Mouse.bindAutoPress(self:getChildById('incrementButton'), function() self:increment() end)
|
|
|
|
Mouse.bindPressMove(self:getChildById('sliderButton'), function(mousePos, mouseMoved) parseSliderPos(self, mousePos) end)
|
|
|
|
updateSlider(self)
|
|
|
|
end)
|
2012-03-24 16:22:40 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
function UIScrollBar:onStyleApply(styleName, styleNode)
|
2012-03-25 16:10:15 +02:00
|
|
|
for name,value in pairs(styleNode) do
|
|
|
|
if name == 'maximum' then
|
|
|
|
self:setMaximum(tonumber(value))
|
|
|
|
elseif name == 'minimum' then
|
|
|
|
self:setMinimum(tonumber(value))
|
|
|
|
elseif name == 'step' then
|
|
|
|
self:setStep(tonumber(value))
|
|
|
|
elseif name == 'orientation' then
|
|
|
|
self:setOrientation(value)
|
|
|
|
elseif name == 'value' then
|
|
|
|
self:setValue(value)
|
2012-03-28 02:33:35 +02:00
|
|
|
elseif name == 'pixels-scroll' then
|
|
|
|
self.pixelsScroll = true
|
2012-03-24 16:22:40 +01:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2012-03-25 16:10:15 +02:00
|
|
|
|
|
|
|
function UIScrollBar:decrement()
|
|
|
|
self:setValue(self.value - self.step)
|
|
|
|
end
|
|
|
|
|
|
|
|
function UIScrollBar:increment()
|
|
|
|
self:setValue(self.value + self.step)
|
|
|
|
end
|
|
|
|
|
|
|
|
function UIScrollBar:setMaximum(maximum)
|
|
|
|
if maximum == self.maximum then return end
|
|
|
|
self.maximum = maximum
|
|
|
|
if self.value > maximum then
|
|
|
|
self:setValue(maximum)
|
|
|
|
else
|
|
|
|
updateSlider(self)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
function UIScrollBar:setMinimum(minimum)
|
|
|
|
if minimum == self.minimum then return end
|
|
|
|
self.minimum = minimum
|
|
|
|
if self.value < minimum then
|
|
|
|
self:setValue(minimum)
|
|
|
|
else
|
|
|
|
updateSlider(self)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
function UIScrollBar:setRange(minimum, maximum)
|
|
|
|
self:setMinimum(minimum)
|
|
|
|
self:setMaximum(maximum)
|
|
|
|
end
|
|
|
|
|
|
|
|
function UIScrollBar:setValue(value)
|
|
|
|
value = math.max(math.min(value, self.maximum), self.minimum)
|
|
|
|
if self.value == value then return end
|
|
|
|
local delta = value - self.value
|
|
|
|
self.value = value
|
|
|
|
updateSlider(self)
|
|
|
|
signalcall(self.onValueChange, self, value, delta)
|
|
|
|
end
|
|
|
|
|
|
|
|
function UIScrollBar:setStep(step)
|
|
|
|
self.step = step
|
|
|
|
end
|
|
|
|
|
|
|
|
function UIScrollBar:setOrientation(orientation)
|
|
|
|
self.orientation = orientation
|
|
|
|
end
|
|
|
|
|
|
|
|
function UIScrollBar:onGeometryChange()
|
|
|
|
updateSlider(self)
|
|
|
|
end
|
|
|
|
|
2012-03-26 15:34:43 +02:00
|
|
|
function UIScrollBar:onMouseWheel(mousePos, mouseWheel)
|
|
|
|
if mouseWheel == MouseWheelUp then
|
2012-03-29 15:45:40 +02:00
|
|
|
if self.orientation == 'vertical' then
|
|
|
|
self:decrement()
|
|
|
|
else
|
|
|
|
self:increment()
|
|
|
|
end
|
2012-03-26 15:34:43 +02:00
|
|
|
else
|
2012-03-29 15:45:40 +02:00
|
|
|
if self.orientation == 'vertical' then
|
|
|
|
self:increment()
|
|
|
|
else
|
|
|
|
self:decrement()
|
|
|
|
end
|
2012-03-26 15:34:43 +02:00
|
|
|
end
|
|
|
|
return true
|
|
|
|
end
|
|
|
|
|
2012-03-25 16:10:15 +02:00
|
|
|
function UIScrollBar:getMaximum() return self.maximum end
|
|
|
|
function UIScrollBar:getMinimum() return self.minimum end
|
|
|
|
function UIScrollBar:getValue() return self.value end
|
|
|
|
function UIScrollBar:getStep() return self.step end
|
|
|
|
function UIScrollBar:getOrientation() return self.orientation end
|