mirror of
https://port.numenaute.org/aleajactaest/khanat-opennel-code.git
synced 2024-11-10 09:19:01 +00:00
CHANGED: #1471 Implemented property setting for CDBViewBar3.
--HG-- branch : gsoc2012-gui-editor
This commit is contained in:
parent
04beaac3c8
commit
1e806b2a09
2 changed files with 111 additions and 1 deletions
|
@ -39,6 +39,7 @@ namespace NLGUI
|
||||||
CDBViewBar3(const TCtorParam ¶m);
|
CDBViewBar3(const TCtorParam ¶m);
|
||||||
|
|
||||||
std::string getProperty( const std::string &name ) const;
|
std::string getProperty( const std::string &name ) const;
|
||||||
|
void setProperty( const std::string &name, const std::string &value );
|
||||||
bool parse(xmlNodePtr cur,CInterfaceGroup * parentGroup);
|
bool parse(xmlNodePtr cur,CInterfaceGroup * parentGroup);
|
||||||
virtual uint32 getMemory() { return (uint32)(sizeof(*this)+_Id.size()); }
|
virtual uint32 getMemory() { return (uint32)(sizeof(*this)+_Id.size()); }
|
||||||
virtual void updateCoords ();
|
virtual void updateCoords ();
|
||||||
|
@ -96,6 +97,7 @@ namespace NLGUI
|
||||||
sint32 _BarH;
|
sint32 _BarH;
|
||||||
|
|
||||||
void parseValProp(xmlNodePtr cur, CInterfaceProperty &dbProp, sint32 &intProp, const char *name);
|
void parseValProp(xmlNodePtr cur, CInterfaceProperty &dbProp, sint32 &intProp, const char *name);
|
||||||
|
void setValProp( const std::string &value, CInterfaceProperty &dbProp, sint32 &intProp );
|
||||||
sint32 getCurrentValProp(const CInterfaceProperty &dbProp, sint32 intProp);
|
sint32 getCurrentValProp(const CInterfaceProperty &dbProp, sint32 intProp);
|
||||||
std::string getValProp( const CInterfaceProperty &prop, sint32 intProp ) const;
|
std::string getValProp( const CInterfaceProperty &prop, sint32 intProp ) const;
|
||||||
};
|
};
|
||||||
|
|
|
@ -55,6 +55,16 @@ namespace NLGUI
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
void CDBViewBar3::setValProp( const std::string &value, CInterfaceProperty &dbProp, sint32 &intProp )
|
||||||
|
{
|
||||||
|
sint32 i;
|
||||||
|
if( fromString( value, i ) )
|
||||||
|
intProp = i;
|
||||||
|
else
|
||||||
|
dbProp.link( value.c_str() );
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
std::string CDBViewBar3::getProperty( const std::string &name ) const
|
std::string CDBViewBar3::getProperty( const std::string &name ) const
|
||||||
{
|
{
|
||||||
if( name == "value1" )
|
if( name == "value1" )
|
||||||
|
@ -129,6 +139,104 @@ namespace NLGUI
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
void CDBViewBar3::setProperty( const std::string &name, const std::string &value )
|
||||||
|
{
|
||||||
|
if( name == "value1" )
|
||||||
|
{
|
||||||
|
setValProp( value, _Value[ 0 ], _ValueInt[ 0 ] );
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
if( name == "value2" )
|
||||||
|
{
|
||||||
|
setValProp( value, _Value[ 1 ], _ValueInt[ 1 ] );
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
if( name == "value3" )
|
||||||
|
{
|
||||||
|
setValProp( value, _Value[ 2 ], _ValueInt[ 2 ] );
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
if( name == "range1" )
|
||||||
|
{
|
||||||
|
setValProp( value, _Range[ 0 ], _RangeInt[ 0 ] );
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
if( name == "range2" )
|
||||||
|
{
|
||||||
|
setValProp( value, _Range[ 1 ], _RangeInt[ 1 ] );
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
if( name == "range3" )
|
||||||
|
{
|
||||||
|
setValProp( value, _Range[ 2 ], _RangeInt[ 2 ] );
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
if( name == "color1" )
|
||||||
|
{
|
||||||
|
CRGBA c;
|
||||||
|
if( fromString( value, c ) )
|
||||||
|
_Colors[ 0 ] = c;
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
if( name == "color2" )
|
||||||
|
{
|
||||||
|
CRGBA c;
|
||||||
|
if( fromString( value, c ) )
|
||||||
|
_Colors[ 1 ] = c;
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
if( name == "color3" )
|
||||||
|
{
|
||||||
|
CRGBA c;
|
||||||
|
if( fromString( value, c ) )
|
||||||
|
_Colors[ 2 ] = c;
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
if( name == "color1_negative" )
|
||||||
|
{
|
||||||
|
CRGBA c;
|
||||||
|
if( fromString( value, c ) )
|
||||||
|
_ColorsNegative[ 0 ] = c;
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
if( name == "color2_negative" )
|
||||||
|
{
|
||||||
|
CRGBA c;
|
||||||
|
if( fromString( value, c ) )
|
||||||
|
_ColorsNegative[ 1 ] = c;
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
if( name == "color3_negative" )
|
||||||
|
{
|
||||||
|
CRGBA c;
|
||||||
|
if( fromString( value, c ) )
|
||||||
|
_ColorsNegative[ 2 ] = c;
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
if( name == "mini" )
|
||||||
|
{
|
||||||
|
bool b;
|
||||||
|
if( fromString( value, b ) )
|
||||||
|
_Mini = b;
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
CViewBitmap::setProperty( name, value );
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
// ----------------------------------------------------------------------------
|
// ----------------------------------------------------------------------------
|
||||||
bool CDBViewBar3::parse (xmlNodePtr cur, CInterfaceGroup * parentGroup)
|
bool CDBViewBar3::parse (xmlNodePtr cur, CInterfaceGroup * parentGroup)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue