mirror of
https://port.numenaute.org/aleajactaest/khanat-opennel-code.git
synced 2024-11-11 09:49:05 +00:00
Some refactoring.
This commit is contained in:
parent
c004b02091
commit
b108dd7d34
1 changed files with 95 additions and 50 deletions
|
@ -101,23 +101,97 @@ namespace
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
class NelButtonType
|
||||||
|
{
|
||||||
|
public:
|
||||||
|
|
||||||
|
enum NELButtonTypes
|
||||||
|
{
|
||||||
|
BUTTON_TYPE_PUSH = 0,
|
||||||
|
BUTTON_TYPE_TOGGLE = 1,
|
||||||
|
BUTTON_TYPE_RADIO = 2
|
||||||
|
};
|
||||||
|
|
||||||
|
static int fromString( const std::string &s )
|
||||||
|
{
|
||||||
|
int r = -1;
|
||||||
|
|
||||||
|
if( s == "push_button" )
|
||||||
|
r = BUTTON_TYPE_PUSH;
|
||||||
|
else
|
||||||
|
if( s == "toggle_button" )
|
||||||
|
r = BUTTON_TYPE_TOGGLE;
|
||||||
|
else
|
||||||
|
if( s == "radio_button" )
|
||||||
|
r = BUTTON_TYPE_RADIO;
|
||||||
|
|
||||||
|
return r;
|
||||||
|
}
|
||||||
|
|
||||||
|
static std::string toString( int value )
|
||||||
|
{
|
||||||
|
std::string v;
|
||||||
|
|
||||||
|
switch( value )
|
||||||
|
{
|
||||||
|
case BUTTON_TYPE_PUSH: v = "push_button"; break;
|
||||||
|
case BUTTON_TYPE_TOGGLE: v = "toggle_button"; break;
|
||||||
|
case BUTTON_TYPE_RADIO: v = "radio_button"; break;
|
||||||
|
}
|
||||||
|
|
||||||
|
return v;
|
||||||
|
}
|
||||||
|
|
||||||
|
};
|
||||||
|
|
||||||
|
class NelTxtJustification
|
||||||
|
{
|
||||||
|
public:
|
||||||
|
|
||||||
|
enum NELTxtJustification
|
||||||
|
{
|
||||||
|
TEXT_CLIPWORD,
|
||||||
|
TEXT_DONTCLIPWORD,
|
||||||
|
TEXT_JUSTIFIED
|
||||||
|
};
|
||||||
|
|
||||||
|
static int fromString( const std::string &s )
|
||||||
|
{
|
||||||
|
int r = -1;
|
||||||
|
|
||||||
|
if( s == "clip_word" )
|
||||||
|
r = TEXT_CLIPWORD;
|
||||||
|
else
|
||||||
|
if( s == "dont_clip_word" )
|
||||||
|
r = TEXT_DONTCLIPWORD;
|
||||||
|
else
|
||||||
|
if( s == "justified" )
|
||||||
|
r = TEXT_JUSTIFIED;
|
||||||
|
|
||||||
|
return r;
|
||||||
|
}
|
||||||
|
|
||||||
|
static std::string toString( int value )
|
||||||
|
{
|
||||||
|
std::string v;
|
||||||
|
|
||||||
|
switch( value )
|
||||||
|
{
|
||||||
|
case TEXT_CLIPWORD: v = "clip_word"; break;
|
||||||
|
case TEXT_DONTCLIPWORD: v = "dont_clip_word"; break;
|
||||||
|
case TEXT_JUSTIFIED: v = "justified"; break;
|
||||||
|
}
|
||||||
|
|
||||||
|
return v;
|
||||||
|
}
|
||||||
|
|
||||||
|
};
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
namespace GUIEditor
|
namespace GUIEditor
|
||||||
{
|
{
|
||||||
enum NELButtonTypes
|
|
||||||
{
|
|
||||||
BUTTON_TYPE_PUSH = 0,
|
|
||||||
BUTTON_TYPE_TOGGLE = 1,
|
|
||||||
BUTTON_TYPE_RADIO = 2
|
|
||||||
};
|
|
||||||
|
|
||||||
enum NELTxtJustification
|
|
||||||
{
|
|
||||||
TEXT_CLIPWORD,
|
|
||||||
TEXT_DONTCLIPWORD,
|
|
||||||
TEXT_JUSTIFIED
|
|
||||||
};
|
|
||||||
|
|
||||||
CPropBrowserCtrl::CPropBrowserCtrl()
|
CPropBrowserCtrl::CPropBrowserCtrl()
|
||||||
{
|
{
|
||||||
|
@ -229,17 +303,10 @@ namespace GUIEditor
|
||||||
if( e == NULL )
|
if( e == NULL )
|
||||||
return;
|
return;
|
||||||
|
|
||||||
if( ( value < BUTTON_TYPE_PUSH ) || ( value > BUTTON_TYPE_RADIO ) )
|
|
||||||
return;
|
|
||||||
|
|
||||||
std::string v;
|
std::string v;
|
||||||
|
v = NelButtonType::toString( value );
|
||||||
switch( value )
|
if( v.empty() )
|
||||||
{
|
return;
|
||||||
case BUTTON_TYPE_PUSH: v = "push_button"; break;
|
|
||||||
case BUTTON_TYPE_TOGGLE: v = "toggle_button"; break;
|
|
||||||
case BUTTON_TYPE_RADIO: v = "radio_button"; break;
|
|
||||||
}
|
|
||||||
|
|
||||||
e->setProperty( propName.toUtf8().constData(), v );
|
e->setProperty( propName.toUtf8().constData(), v );
|
||||||
}
|
}
|
||||||
|
@ -250,16 +317,10 @@ namespace GUIEditor
|
||||||
if( e == NULL )
|
if( e == NULL )
|
||||||
return;
|
return;
|
||||||
|
|
||||||
if( ( value < TEXT_CLIPWORD ) || ( value > TEXT_JUSTIFIED ) )
|
|
||||||
return;
|
|
||||||
|
|
||||||
std::string v;
|
std::string v;
|
||||||
switch( value )
|
v = NelTxtJustification::toString( value );
|
||||||
{
|
if( v.empty() )
|
||||||
case TEXT_CLIPWORD: v = "clip_word"; break;
|
return;
|
||||||
case TEXT_DONTCLIPWORD: v = "dont_clip_word"; break;
|
|
||||||
case TEXT_JUSTIFIED: v = "justified"; break;
|
|
||||||
}
|
|
||||||
|
|
||||||
e->setProperty( propName.toUtf8().constData(), v );
|
e->setProperty( propName.toUtf8().constData(), v );
|
||||||
}
|
}
|
||||||
|
@ -327,15 +388,7 @@ namespace GUIEditor
|
||||||
return;
|
return;
|
||||||
|
|
||||||
int e = -1;
|
int e = -1;
|
||||||
if( btype == "push_button" )
|
e = NelButtonType::fromString( btype );
|
||||||
e = BUTTON_TYPE_PUSH;
|
|
||||||
else
|
|
||||||
if( btype == "toggle_button" )
|
|
||||||
e = BUTTON_TYPE_TOGGLE;
|
|
||||||
else
|
|
||||||
if( btype == "radio_button" )
|
|
||||||
e = BUTTON_TYPE_RADIO;
|
|
||||||
|
|
||||||
if( e == -1 )
|
if( e == -1 )
|
||||||
return;
|
return;
|
||||||
|
|
||||||
|
@ -361,15 +414,7 @@ namespace GUIEditor
|
||||||
return;
|
return;
|
||||||
|
|
||||||
int e = -1;
|
int e = -1;
|
||||||
if( j == "clip_word" )
|
e = NelTxtJustification::fromString( j );
|
||||||
e = TEXT_CLIPWORD;
|
|
||||||
else
|
|
||||||
if( j == "dont_clip_word" )
|
|
||||||
e = TEXT_DONTCLIPWORD;
|
|
||||||
else
|
|
||||||
if( j == "justified" )
|
|
||||||
e = TEXT_JUSTIFIED;
|
|
||||||
|
|
||||||
if( e == -1 )
|
if( e == -1 )
|
||||||
return;
|
return;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue