From 5acc32009d133095366664356385e49ccc612803 Mon Sep 17 00:00:00 2001 From: eap Date: Tue, 5 Jul 2011 08:44:56 +0000 Subject: [PATCH] Hide "Allow Quadrangles" in 3D case --- src/GUI/NETGENPluginGUI_SimpleCreator.cxx | 18 ++++++++++++------ 1 file changed, 12 insertions(+), 6 deletions(-) diff --git a/src/GUI/NETGENPluginGUI_SimpleCreator.cxx b/src/GUI/NETGENPluginGUI_SimpleCreator.cxx index e203d6f..b7654a3 100644 --- a/src/GUI/NETGENPluginGUI_SimpleCreator.cxx +++ b/src/GUI/NETGENPluginGUI_SimpleCreator.cxx @@ -185,12 +185,16 @@ QFrame* NETGENPluginGUI_SimpleCreator::buildFrame() dimRow++; // * allow quadrangles - myAllowQuadCheckBox = new QCheckBox( tr( "NETGEN_ALLOW_QUADRANGLES" ), dimGroup ); - dimLay->addWidget( myAllowQuadCheckBox, dimRow, 0, 1, 2 ); - dimRow++; + const bool is3D = ( hypType()=="NETGEN_SimpleParameters_3D" ); + if ( !is3D ) + { + myAllowQuadCheckBox = new QCheckBox( tr( "NETGEN_ALLOW_QUADRANGLES" ), dimGroup ); + dimLay->addWidget( myAllowQuadCheckBox, dimRow, 0, 1, 2 ); + dimRow++; + } // 3D params group - if ( hypType()=="NETGEN_SimpleParameters_3D" ) + if ( is3D ) { dimGroup = new QGroupBox( tr( "NG_3D" ), argGroup ); argLay->addWidget( dimGroup, argRow, 0, 1, 2 ); @@ -289,7 +293,8 @@ void NETGENPluginGUI_SimpleCreator::retrieveParams() const myLenFromEdgesCheckBox->setChecked( true ); myArea->setEnabled( false ); } - myAllowQuadCheckBox->setChecked( h->GetAllowQuadrangles() ); + if ( myAllowQuadCheckBox ) + myAllowQuadCheckBox->setChecked( h->GetAllowQuadrangles() ); // 3D if ( myVolume ) { @@ -349,7 +354,8 @@ QString NETGENPluginGUI_SimpleCreator::storeParams() const valStr += "; lenFromEdges"; aVariablesList.append(QString()); } - h->SetAllowQuadrangles( myAllowQuadCheckBox->isChecked() ); + if ( myAllowQuadCheckBox ) + h->SetAllowQuadrangles( myAllowQuadCheckBox->isChecked() ); h->SetParameters(aVariablesList.join(":").toLatin1().constData()); -- 2.39.2