X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FMeasureGUI%2FMeasureGUI_CheckShapeDlg.cxx;h=795107a57f971dd3fea88594c66efbc455d6fcaa;hb=53942415489efb924c4f072ab1767672da1fb025;hp=d63de1040322245cc1f4f007cff21c07a9382e7d;hpb=732211808796539fcf1de34e06038e7fb015ece9;p=modules%2Fgeom.git diff --git a/src/MeasureGUI/MeasureGUI_CheckShapeDlg.cxx b/src/MeasureGUI/MeasureGUI_CheckShapeDlg.cxx index d63de1040..795107a57 100644 --- a/src/MeasureGUI/MeasureGUI_CheckShapeDlg.cxx +++ b/src/MeasureGUI/MeasureGUI_CheckShapeDlg.cxx @@ -17,7 +17,7 @@ // License along with this library; if not, write to the Free Software // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA // -// See http://www.opencascade.org/SALOME/ or email : webmaster.salome@opencascade.org +// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com // // // @@ -27,7 +27,6 @@ // $Header$ #include "MeasureGUI_CheckShapeDlg.h" -#include "MeasureGUI_1Sel1TextView_QTD.h" #include "utilities.h" #include "SUIT_Session.h" @@ -40,10 +39,27 @@ #include #include #include +#include #define TEXTEDIT_FONT_FAMILY "Courier" #define TEXTEDIT_FONT_SIZE 11 +MeasureGUI_1Sel1TextView1Check_QTD::MeasureGUI_1Sel1TextView1Check_QTD(QWidget* parent, + const char* name, WFlags fl) + : MeasureGUI_1Sel1TextView_QTD(parent, name, fl) +{ + CheckBoxGeom = new QCheckBox(GroupBox1, "CheckBoxGeom"); + CheckBoxGeom->setText(tr("CHECK_SHAPE_GEOMETRY")); + Layout1->addMultiCellWidget(CheckBoxGeom, 2, 2, 0, 2); + + CheckBoxGeom->setChecked(false); +} + +MeasureGUI_1Sel1TextView1Check_QTD::~MeasureGUI_1Sel1TextView1Check_QTD() +{ + // no need to delete child widgets, Qt does it all for us +} + //================================================================================= // class : MeasureGUI_CheckShapeDlg() // purpose : Constructs a MeasureGUI_CheckShapeDlg which is a child of 'parent', with the @@ -66,11 +82,11 @@ MeasureGUI_CheckShapeDlg::MeasureGUI_CheckShapeDlg( GeometryGUI* GUI, QWidget* p GroupConstructors->setTitle( tr( "GEOM_CHECK_SHAPE" ) ); RadioButton1->setPixmap( image0 ); - myGrp = new MeasureGUI_1Sel1TextView_QTD( this, "myGrp" ); + myGrp = new MeasureGUI_1Sel1TextView1Check_QTD( this, "myGrp" ); myGrp->GroupBox1->setTitle( tr( "GEOM_CHECK_INFOS" ) ); myGrp->TextLabel1->setText( tr( "GEOM_OBJECT" ) ); myGrp->TextEdit1->setReadOnly( TRUE ); - + QFont aFont( TEXTEDIT_FONT_FAMILY, TEXTEDIT_FONT_SIZE ); aFont.setStyleHint( QFont::TypeWriter, QFont::PreferAntialias ); myGrp->TextEdit1->setFont( aFont ); @@ -81,11 +97,12 @@ MeasureGUI_CheckShapeDlg::MeasureGUI_CheckShapeDlg( GeometryGUI* GUI, QWidget* p /***************************************************************/ + myHelpFileName = "files/salome2_sp3_measuregui_functions.htm#check"; + /* Initialisation */ Init(); } - //================================================================================= // function : ~MeasureGUI_CheckShapeDlg() // purpose : Destroys the object and frees any allocated resources @@ -104,6 +121,9 @@ void MeasureGUI_CheckShapeDlg::Init() mySelBtn = myGrp->PushButton1; mySelEdit = myGrp->LineEdit1; MeasureGUI_Skeleton::Init(); + + connect(myGrp->CheckBoxGeom, SIGNAL(toggled(bool)), + this, SLOT(SelectionIntoArgument())); } //================================================================================= @@ -119,7 +139,13 @@ bool MeasureGUI_CheckShapeDlg::getParameters ( bool& theIsValid, QString& theMsg try { char* aMsg; - theIsValid = GEOM::GEOM_IMeasureOperations::_narrow( getOperation() )->CheckShape( myObj, aMsg ); + bool isCheckGeometry = myGrp->CheckBoxGeom->isChecked(); + GEOM::GEOM_IMeasureOperations_ptr aMeasureOp = + GEOM::GEOM_IMeasureOperations::_narrow( getOperation() ); + if (isCheckGeometry) + theIsValid = aMeasureOp->CheckShapeWithGeometry(myObj, aMsg); + else + theIsValid = aMeasureOp->CheckShape(myObj, aMsg); theMsg = aMsg; } catch( const SALOME::SALOME_Exception& e )