mirror of
https://port.numenaute.org/aleajactaest/khanat-opennel-code.git
synced 2024-11-10 01:09:50 +00:00
CHANGED: Somehow lost this code part during development.
--HG-- branch : gsoc2012-gui-editor
This commit is contained in:
parent
fcb736c387
commit
96a5f00dbf
1 changed files with 21 additions and 0 deletions
|
@ -463,6 +463,27 @@ namespace NLGUI
|
|||
{
|
||||
type = (const char*) prop;
|
||||
}
|
||||
|
||||
if (type.empty() || type == "toggle_button")
|
||||
{
|
||||
_Type = ToggleButton;
|
||||
}
|
||||
else if (type == "push_button")
|
||||
{
|
||||
_Type = PushButton;
|
||||
}
|
||||
else if (type == "radio_button")
|
||||
{
|
||||
_Type = RadioButton;
|
||||
|
||||
initRBRef();
|
||||
if (_Pushed)
|
||||
*_RBRef = this;
|
||||
}
|
||||
else
|
||||
{
|
||||
nlinfo(("cannot parse button type for button " + getId()).c_str());
|
||||
}
|
||||
|
||||
prop= (char*) xmlGetProp (cur, (xmlChar*)"pushed");
|
||||
_Pushed = false;
|
||||
|
|
Loading…
Reference in a new issue