spinbox improvements

master
Henrique Santiago 12 years ago
parent a26b64c4bf
commit d931b03fed

@ -1 +1 @@
Subproject commit 9beb17daaeb170c127c39c5a5e4feb9d95ebed92 Subproject commit dd648e1431171bffe091b748744395780df7eba1

@ -6,13 +6,16 @@ function UISpinBox.create()
spinbox.m_minimum = 0 spinbox.m_minimum = 0
spinbox.m_maximum = 0 spinbox.m_maximum = 0
spinbox:setCurrentIndex(0) spinbox:setCurrentIndex(0)
spinbox:setText("0")
return spinbox return spinbox
end end
function UISpinBox:setCurrentIndex(index) function UISpinBox:setCurrentIndex(index)
if index >= self.m_minimum and index <= self.m_maximum then if index >= self.m_minimum and index <= self.m_maximum then
if self:getText():len() > 0 then
self:setText(index)
end
self.m_currentIndex = index self.m_currentIndex = index
self:setText(index)
self:onIndexChange(index) self:onIndexChange(index)
end end
end end
@ -52,14 +55,34 @@ function UISpinBox:onMouseWheel(mousePos, direction)
return true return true
end end
function UISpinBox:onTextChange(text) function UISpinBox:onTextChange(text, oldText)
if text:len() == 0 then
self:setCurrentIndex(self.m_minimum)
return
end
local number = tonumber(text) local number = tonumber(text)
if not number or number > self.m_maximum or number < self.m_minimum then if not number or number > self.m_maximum or number < self.m_minimum then
-- todo: restore old text instead of setting minimum self:setText(oldText)
self:setCurrentIndex(self.m_minimum) return
end end
self:setCurrentIndex(number)
end end
function UISpinBox:onIndexChange(index) function UISpinBox:onIndexChange(index)
-- nothing todo -- nothing todo
end end
function UISpinBox:onStyleApply(styleName, styleNode)
-- tonumber converts to 0 if not valid
if styleNode.maximum and tonumber(styleNode.maximum) then
self:setMaximum(tonumber(styleNode.maximum))
end
if styleNode.minimum and tonumber(styleNode.minimum) then
self:setMinimum(tonumber(styleNode.minimum))
end
end

@ -30,4 +30,5 @@ UIGame
id: mouseGrabber id: mouseGrabber
focusable: false focusable: false
visible: false visible: false
phantom: true phantom: true

@ -285,11 +285,12 @@ void UILineEdit::appendText(std::string text)
} }
} }
std::string oldText = m_text;
m_text.insert(m_cursorPos, text); m_text.insert(m_cursorPos, text);
m_cursorPos += text.length(); m_cursorPos += text.length();
blinkCursor(); blinkCursor();
update(); update();
UIWidget::onTextChange(m_text); UIWidget::onTextChange(m_text, oldText);
} }
} }
} }
@ -305,16 +306,18 @@ void UILineEdit::appendCharacter(char c)
std::string tmp; std::string tmp;
tmp = c; tmp = c;
std::string oldText = m_text;
m_text.insert(m_cursorPos, tmp); m_text.insert(m_cursorPos, tmp);
m_cursorPos++; m_cursorPos++;
blinkCursor(); blinkCursor();
update(); update();
UIWidget::onTextChange(m_text); UIWidget::onTextChange(m_text, oldText);
} }
} }
void UILineEdit::removeCharacter(bool right) void UILineEdit::removeCharacter(bool right)
{ {
std::string oldText = m_text;
if(m_cursorPos >= 0 && m_text.length() > 0) { if(m_cursorPos >= 0 && m_text.length() > 0) {
if((uint)m_cursorPos >= m_text.length()) { if((uint)m_cursorPos >= m_text.length()) {
m_text.erase(m_text.begin() + (--m_cursorPos)); m_text.erase(m_text.begin() + (--m_cursorPos));
@ -326,7 +329,7 @@ void UILineEdit::removeCharacter(bool right)
} }
blinkCursor(); blinkCursor();
update(); update();
UIWidget::onTextChange(m_text); UIWidget::onTextChange(m_text, oldText);
} }
} }
@ -376,12 +379,12 @@ std::string UILineEdit::getDisplayedText()
return m_text; return m_text;
} }
void UILineEdit::onTextChange(const std::string& text) void UILineEdit::onTextChange(const std::string& text, const std::string& oldText)
{ {
m_cursorPos = text.length(); m_cursorPos = text.length();
blinkCursor(); blinkCursor();
update(); update();
UIWidget::onTextChange(text); UIWidget::onTextChange(text, oldText);
} }
void UILineEdit::onFontChange(const std::string& font) void UILineEdit::onFontChange(const std::string& font)

@ -57,7 +57,7 @@ public:
bool isTextHidden() { return m_textHidden; } bool isTextHidden() { return m_textHidden; }
protected: protected:
virtual void onTextChange(const std::string& text); virtual void onTextChange(const std::string& text, const std::string& oldText);
virtual void onFontChange(const std::string& font); virtual void onFontChange(const std::string& font);
virtual void onStyleApply(const std::string& styleName, const OTMLNodePtr& styleNode); virtual void onStyleApply(const std::string& styleName, const OTMLNodePtr& styleNode);
virtual void onGeometryChange(const Rect& oldRect, const Rect& newRect); virtual void onGeometryChange(const Rect& oldRect, const Rect& newRect);

@ -426,7 +426,7 @@ private:
protected: protected:
void drawText(const Rect& screenCoords); void drawText(const Rect& screenCoords);
virtual void onTextChange(const std::string& text); virtual void onTextChange(const std::string& text, const std::string& oldText);
virtual void onFontChange(const std::string& font); virtual void onFontChange(const std::string& font);
std::string m_text; std::string m_text;

@ -74,9 +74,9 @@ void UIWidget::drawText(const Rect& screenCoords)
m_textFramebuffer->draw(screenCoords); m_textFramebuffer->draw(screenCoords);
} }
void UIWidget::onTextChange(const std::string& text) void UIWidget::onTextChange(const std::string& text, const std::string& oldText)
{ {
callLuaField("onTextChange", text); callLuaField("onTextChange", text, oldText);
} }
void UIWidget::onFontChange(const std::string& font) void UIWidget::onFontChange(const std::string& font)
@ -94,6 +94,7 @@ void UIWidget::setText(const std::string& text)
if(m_text == text) if(m_text == text)
return; return;
std::string oldText = m_text;
m_text = text; m_text = text;
// update rect size // update rect size
@ -107,7 +108,7 @@ void UIWidget::setText(const std::string& text)
setSize(newSize); setSize(newSize);
} }
onTextChange(text); onTextChange(text, oldText);
m_textMustRecache = true; m_textMustRecache = true;
} }

Loading…
Cancel
Save