combobox with wheel event

This commit is contained in:
Henrique Santiago
2012-01-19 17:15:38 -02:00
parent 380a13ef83
commit 168f03125c
3 changed files with 26 additions and 1 deletions

View File

@@ -19,6 +19,15 @@ function UIComboBox:setCurrentOption(text)
end
end
function UIComboBox:setCurrentIndex(index)
if index >= 1 and index <= #self.m_options then
local v = self.m_options[index]
self.m_currentIndex = index
self:setText(v.text)
self:onOptionChange(v.text, v.data)
end
end
function UIComboBox:addOption(text, data)
table.insert(self.m_options, { text = text, data = data })
local index = #self.m_options
@@ -38,6 +47,17 @@ function UIComboBox:onMousePress(mousePos, mouseButton)
return true
end
function UIComboBox:onMouseWheel(mousePos, direction)
if direction == MouseWheelUp and self.m_currentIndex > 1 then
self:setCurrentIndex(self.m_currentIndex - 1)
return true
elseif direction == MouseWheelDown and self.m_currentIndex < #self.m_options then
self:setCurrentIndex(self.m_currentIndex + 1)
return true
end
return false
end
function UIComboBox:onStyleApply(styleName, styleNode)
if styleNode.options then
for k,option in pairs(styleNode.options) do