mirror of
https://port.numenaute.org/aleajactaest/khanat-opennel-code.git
synced 2024-11-10 09:19:01 +00:00
CHANGED: #1471 Implemented property querying for CDBGroupSelectNumber.
This commit is contained in:
parent
963936c503
commit
7fd70b44e8
3 changed files with 72 additions and 0 deletions
|
@ -44,6 +44,8 @@ namespace NLGUI
|
|||
CDBGroupSelectNumber(const TCtorParam ¶m);
|
||||
~CDBGroupSelectNumber();
|
||||
|
||||
std::string getProperty( const std::string &name ) const;
|
||||
|
||||
/// CInterfaceGroup Interface
|
||||
virtual bool parse (xmlNodePtr cur, CInterfaceGroup *parentGroup);
|
||||
virtual void updateCoords ();
|
||||
|
|
|
@ -49,6 +49,39 @@ namespace NLGUI
|
|||
{
|
||||
}
|
||||
|
||||
std::string CDBGroupSelectNumber::getProperty( const std::string &name ) const
|
||||
{
|
||||
if( name == "value" )
|
||||
{
|
||||
if( _Number.getNodePtr() != NULL )
|
||||
return _Number.getNodePtr()->getFullName();
|
||||
else
|
||||
return "";
|
||||
}
|
||||
else
|
||||
if( name == "loop" )
|
||||
{
|
||||
return toString( _LoopMode );
|
||||
}
|
||||
else
|
||||
if( name == "min" )
|
||||
{
|
||||
return toString( _MinValue );
|
||||
}
|
||||
else
|
||||
if( name == "max" )
|
||||
{
|
||||
return toString( _MaxValue );
|
||||
}
|
||||
else
|
||||
if( name == "delta" )
|
||||
{
|
||||
return toString( _DeltaMultiplier );
|
||||
}
|
||||
else
|
||||
return CInterfaceGroup::getProperty( name );
|
||||
}
|
||||
|
||||
// ***************************************************************************
|
||||
bool CDBGroupSelectNumber::parse (xmlNodePtr cur, CInterfaceGroup *parentGroup)
|
||||
{
|
||||
|
|
|
@ -0,0 +1,37 @@
|
|||
<widget>
|
||||
<header>
|
||||
<name>DBGroupSelectNumber</name>
|
||||
<guiname>CDBGroupSelectNumber</guiname>
|
||||
<ancestor>InterfaceGroup</ancestor>
|
||||
<description></description>
|
||||
<abstract>false</abstract>
|
||||
<icon></icon>
|
||||
</header>
|
||||
<properties>
|
||||
<property>
|
||||
<name>value</name>
|
||||
<type>string</type>
|
||||
<default></default>
|
||||
</property>
|
||||
<property>
|
||||
<name>loop</name>
|
||||
<type>bool</type>
|
||||
<default>true</default>
|
||||
</property>
|
||||
<property>
|
||||
<name>min</name>
|
||||
<type>int</type>
|
||||
<default>0</default>
|
||||
</property>
|
||||
<property>
|
||||
<name>max</name>
|
||||
<type>int</type>
|
||||
<default>9</default>
|
||||
</property>
|
||||
<property>
|
||||
<name>delta</name>
|
||||
<type>int</type>
|
||||
<default>1</default>
|
||||
</property>
|
||||
</properties>
|
||||
</widget>
|
Loading…
Reference in a new issue