Added spec for step in floatedit controls in Lua config dialogs and intedit spin controls seem to work properly now.

Originally committed to SVN as r1307.
This commit is contained in:
Niels Martin Hansen 2007-06-28 19:11:41 +00:00
parent 53f429c13d
commit 907221c940
2 changed files with 14 additions and 2 deletions

View File

@ -284,9 +284,12 @@ nospin:
wxControl *Create(wxWindow *parent)
{
if (hasspin) {
cw = new wxSpinCtrl(parent, -1, wxString::Format(_T("%d"), value), wxDefaultPosition, wxDefaultSize, min, max, value);
wxSpinCtrl *scw = new wxSpinCtrl(parent, -1, wxString::Format(_T("%d"), value), wxDefaultPosition, wxDefaultSize, min, max, value);
scw->SetRange(min, max);
scw->SetValue(value);
cw = scw;
} else {
cw = new wxTextCtrl(parent, -1, text, wxDefaultPosition, wxDefaultSize, 0); //, IntTextValidator());
cw = new wxTextCtrl(parent, -1, wxString::Format(_T("%d"), value), wxDefaultPosition, wxDefaultSize, 0); //, IntTextValidator());
}
cw->SetToolTip(hint);
return cw;
@ -318,6 +321,8 @@ nospin:
class FloatEdit : public Edit {
public:
float value;
bool hasspin;
float min, max;
// FIXME: Can't support spin button atm
FloatEdit(lua_State *L)

View File

@ -71,6 +71,13 @@ max (number or nil)
If both are present, the control gets a spin button, the user can click to
update the value of the control. The user won't be able to close the
dialog if the value is outside the range between "min" and "max".
Key defined only for the "floatedit" class:
step (number or nil)
If nil/undefined, the value 1 (one) is used instead.
Specifies the size of change when the spin buttons are clicked.
Keys defined only for the "dropdown" class: