mirror of
https://git.salome-platform.org/gitpub/modules/smesh.git
synced 2025-01-04 13:50:34 +05:00
PAL10953. Add possibility to have a custom widget for a hypo parameter
This commit is contained in:
parent
6b471bcc54
commit
3a1c4c87ae
@ -144,37 +144,38 @@ QFrame* SMESHGUI_GenericHypothesisCreator::buildStdFrame()
|
|||||||
QLabel* lab = new QLabel( (*anIt).myName, GroupC1 );
|
QLabel* lab = new QLabel( (*anIt).myName, GroupC1 );
|
||||||
GroupC1Layout->addWidget( lab, i, 0 );
|
GroupC1Layout->addWidget( lab, i, 0 );
|
||||||
|
|
||||||
QWidget* w = 0;
|
QWidget* w = getCustomWidget( *anIt, GroupC1 );
|
||||||
switch( (*anIt).myValue.type() )
|
if ( !w )
|
||||||
{
|
switch( (*anIt).myValue.type() )
|
||||||
case QVariant::Int:
|
|
||||||
{
|
{
|
||||||
QtxIntSpinBox* sb = new QtxIntSpinBox( GroupC1, (*anIt).myName.latin1() );
|
case QVariant::Int:
|
||||||
attuneStdWidget( sb, i );
|
{
|
||||||
sb->setValue( (*anIt).myValue.toInt() );
|
QtxIntSpinBox* sb = new QtxIntSpinBox( GroupC1, (*anIt).myName.latin1() );
|
||||||
connect( sb, SIGNAL( valueChanged( int ) ), this, SLOT( onValueChanged() ) );
|
attuneStdWidget( sb, i );
|
||||||
w = sb;
|
sb->setValue( (*anIt).myValue.toInt() );
|
||||||
|
connect( sb, SIGNAL( valueChanged( int ) ), this, SLOT( onValueChanged() ) );
|
||||||
|
w = sb;
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
case QVariant::Double:
|
||||||
|
{
|
||||||
|
QtxDblSpinBox* sb = new SMESHGUI_SpinBox( GroupC1, (*anIt).myName.latin1() );
|
||||||
|
attuneStdWidget( sb, i );
|
||||||
|
sb->setValue( (*anIt).myValue.toDouble() );
|
||||||
|
connect( sb, SIGNAL( valueChanged( double ) ), this, SLOT( onValueChanged() ) );
|
||||||
|
w = sb;
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
case QVariant::String:
|
||||||
|
{
|
||||||
|
QLineEdit* le = new QLineEdit( GroupC1, (*anIt).myName.latin1() );
|
||||||
|
attuneStdWidget( le, i );
|
||||||
|
le->setText( (*anIt).myValue.toString() );
|
||||||
|
connect( le, SIGNAL( textChanged( const QString& ) ), this, SLOT( onValueChanged() ) );
|
||||||
|
w = le;
|
||||||
|
}
|
||||||
|
break;
|
||||||
}
|
}
|
||||||
break;
|
|
||||||
case QVariant::Double:
|
|
||||||
{
|
|
||||||
QtxDblSpinBox* sb = new SMESHGUI_SpinBox( GroupC1, (*anIt).myName.latin1() );
|
|
||||||
attuneStdWidget( sb, i );
|
|
||||||
sb->setValue( (*anIt).myValue.toDouble() );
|
|
||||||
connect( sb, SIGNAL( valueChanged( double ) ), this, SLOT( onValueChanged() ) );
|
|
||||||
w = sb;
|
|
||||||
}
|
|
||||||
break;
|
|
||||||
case QVariant::String:
|
|
||||||
{
|
|
||||||
QLineEdit* le = new QLineEdit( GroupC1, (*anIt).myName.latin1() );
|
|
||||||
attuneStdWidget( le, i );
|
|
||||||
le->setText( (*anIt).myValue.toString() );
|
|
||||||
connect( le, SIGNAL( textChanged( const QString& ) ), this, SLOT( onValueChanged() ) );
|
|
||||||
w = le;
|
|
||||||
}
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
|
|
||||||
if( w )
|
if( w )
|
||||||
{
|
{
|
||||||
@ -224,7 +225,12 @@ bool SMESHGUI_GenericHypothesisCreator::getStdParamFromDlg( ListOfStdParams& par
|
|||||||
params.append( item );
|
params.append( item );
|
||||||
}
|
}
|
||||||
|
|
||||||
else
|
else if ( getParamFromCustomWidget( item, *anIt ))
|
||||||
|
{
|
||||||
|
params.append( item );
|
||||||
|
}
|
||||||
|
|
||||||
|
else
|
||||||
res = false;
|
res = false;
|
||||||
}
|
}
|
||||||
return res;
|
return res;
|
||||||
@ -273,10 +279,15 @@ QString SMESHGUI_GenericHypothesisCreator::type() const
|
|||||||
{
|
{
|
||||||
return QString();
|
return QString();
|
||||||
}
|
}
|
||||||
|
QWidget* SMESHGUI_GenericHypothesisCreator::getCustomWidget( const StdParam & /*param*/,
|
||||||
|
QWidget* /*parent*/) const
|
||||||
|
{
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
bool SMESHGUI_GenericHypothesisCreator::getParamFromCustomWidget( StdParam& , QWidget* ) const
|
||||||
|
{
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
@ -77,6 +77,8 @@ protected:
|
|||||||
virtual bool stdParams ( ListOfStdParams& ) const;
|
virtual bool stdParams ( ListOfStdParams& ) const;
|
||||||
bool getStdParamFromDlg( ListOfStdParams& ) const;
|
bool getStdParamFromDlg( ListOfStdParams& ) const;
|
||||||
virtual void attuneStdWidget( QWidget*, const int ) const;
|
virtual void attuneStdWidget( QWidget*, const int ) const;
|
||||||
|
virtual QWidget* getCustomWidget( const StdParam &, QWidget* ) const;
|
||||||
|
virtual bool getParamFromCustomWidget( StdParam& , QWidget* ) const;
|
||||||
virtual QString caption() const;
|
virtual QString caption() const;
|
||||||
virtual QPixmap icon() const;
|
virtual QPixmap icon() const;
|
||||||
virtual QString type() const;
|
virtual QString type() const;
|
||||||
|
Loading…
Reference in New Issue
Block a user