1 // Copyright (C) 2007-2008 CEA/DEN, EDF R&D, OPEN CASCADE
3 // Copyright (C) 2003-2007 OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
6 // This library is free software; you can redistribute it and/or
7 // modify it under the terms of the GNU Lesser General Public
8 // License as published by the Free Software Foundation; either
9 // version 2.1 of the License.
11 // This library is distributed in the hope that it will be useful,
12 // but WITHOUT ANY WARRANTY; without even the implied warranty of
13 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 // Lesser General Public License for more details.
16 // You should have received a copy of the GNU Lesser General Public
17 // License along with this library; if not, write to the Free Software
18 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
20 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
22 // SMESH SMESHGUI : GUI for SMESH component
23 // File : SMESHGUI_MeshOp.cxx
24 // Author : Sergey LITONIN, Open CASCADE S.A.S.
27 #include "SMESHGUI_MeshOp.h"
30 #include "SMESHGUI_MeshDlg.h"
31 #include "SMESHGUI_ShapeByMeshDlg.h"
32 #include "SMESHGUI_HypothesesUtils.h"
33 #include "SMESHGUI_Hypotheses.h"
34 #include "SMESHGUI_Utils.h"
35 #include "SMESHGUI_GEOMGenUtils.h"
37 #include <SMESH_TypeFilter.hxx>
38 #include <SMESH_NumberFilter.hxx>
40 // SALOME GEOM includes
41 #include <GEOM_SelectionFilter.h>
43 #include <GeometryGUI.h>
45 // SALOME GUI includes
46 #include <SalomeApp_Tools.h>
47 #include <SalomeApp_Application.h>
48 #include <LightApp_SelectionMgr.h>
49 #include <LightApp_UpdateFlags.h>
50 #include <SUIT_MessageBox.h>
51 #include <SUIT_OverrideCursor.h>
52 #include <SALOME_InteractiveObject.hxx>
53 #include <SALOME_ListIO.hxx>
55 // SALOME KERNEL includes
56 #include <SALOMEDS_SComponent.hxx>
57 #include <SALOMEDS_SObject.hxx>
60 #include <QStringList>
65 #include <TopoDS_Shape.hxx>
66 #include <TopoDS_Shell.hxx>
67 #include <TopExp_Explorer.hxx>
68 #include <BRep_Tool.hxx>
71 #include <SALOMEconfig.h>
72 #include CORBA_CLIENT_HEADER(SMESH_Gen)
74 //================================================================================
77 * \param theToCreate - if this parameter is true then operation is used for creation,
78 * for editing otherwise
80 * Initialize operation
82 //================================================================================
83 SMESHGUI_MeshOp::SMESHGUI_MeshOp( const bool theToCreate, const bool theIsMesh )
84 : SMESHGUI_SelectionOp(),
85 myToCreate( theToCreate ),
86 myIsMesh( theIsMesh ),
90 if ( GeometryGUI::GetGeomGen()->_is_nil() )// check that GEOM_Gen exists
91 GeometryGUI::InitGeomGen();
92 myIsOnGeometry = true;
95 //================================================================================
99 //================================================================================
100 SMESHGUI_MeshOp::~SMESHGUI_MeshOp()
106 //================================================================================
108 * \brief Gets dialog of this operation
109 * \retval LightApp_Dialog* - pointer to dialog of this operation
111 //================================================================================
112 LightApp_Dialog* SMESHGUI_MeshOp::dlg() const
117 //================================================================================
119 * \brief Creates or edits mesh
120 * \retval bool - TRUE if operation is performed successfully, FALSE otherwise
122 * Virtual slot redefined from the base class called when "Apply" button is clicked
123 * creates or edits mesh
125 //================================================================================
126 bool SMESHGUI_MeshOp::onApply()
132 if ( !isValid( aMess ) )
136 SUIT_MessageBox::warning( myDlg, tr( "SMESH_WRN_WARNING" ), aMess );
140 bool aResult = false;
144 if ( myToCreate && myIsMesh )
145 aResult = createMesh( aMess );
146 if ( myToCreate && !myIsMesh )
147 aResult = createSubMesh( aMess );
148 else if ( !myToCreate )
149 aResult = editMeshOrSubMesh( aMess );
151 update( UF_ObjBrowser | UF_Model );
153 catch ( const SALOME::SALOME_Exception& S_ex )
155 SalomeApp_Tools::QtCatchCorbaException( S_ex );
171 aMess = tr( "SMESH_OPERATION_FAILED" );
172 SUIT_MessageBox::warning( myDlg, tr( "SMESH_ERROR" ), aMess );
178 //================================================================================
180 * \brief Creates dialog if necessary and shows it
182 * Virtual method redefined from base class called when operation is started creates
183 * dialog if necessary and shows it, activates selection
185 //================================================================================
186 void SMESHGUI_MeshOp::startOperation()
190 myDlg = new SMESHGUI_MeshDlg( myToCreate, myIsMesh );
191 for ( int i = SMESH::DIM_0D; i <= SMESH::DIM_3D; i++ )
193 connect( myDlg->tab( i ), SIGNAL( createHyp( const int, const int ) ),
194 this, SLOT( onCreateHyp( const int, const int ) ) );
195 connect( myDlg->tab( i ), SIGNAL( editHyp( const int, const int ) ),
196 this, SLOT( onEditHyp( const int, const int ) ) );
197 connect( myDlg->tab( i ), SIGNAL( selectAlgo( const int ) ),
198 this, SLOT( onAlgoSelected( const int ) ) );
200 connect( myDlg, SIGNAL( hypoSet( const QString& )), SLOT( onHypoSet( const QString& )));
201 connect( myDlg, SIGNAL( geomSelectionByMesh( bool )), SLOT( onGeomSelectionByMesh( bool )));
204 if ( myIsMesh ) myHelpFileName = "constructing_meshes_page.html";
205 else myHelpFileName = "constructing_submeshes_page.html";
206 else myHelpFileName = "editing_meshes_page.html";
208 SMESHGUI_SelectionOp::startOperation();
210 // iterate through dimensions and get available algoritms, set them to the dialog
211 _PTR(SComponent) aFather = SMESH::GetActiveStudyDocument()->FindComponent( "SMESH" );
212 for ( int i = SMESH::DIM_0D; i <= SMESH::DIM_3D; i++ )
214 SMESHGUI_MeshTab* aTab = myDlg->tab( i );
216 // clear available hypotheses
217 aTab->setAvailableHyps( MainHyp, hypList );
218 aTab->setAvailableHyps( AddHyp, hypList );
219 aTab->setExistingHyps( MainHyp, hypList );
220 aTab->setExistingHyps( AddHyp, hypList );
221 myExistingHyps[ i ][ MainHyp ].clear();
222 myExistingHyps[ i ][ AddHyp ].clear();
224 availableHyps( i, Algo, hypList, myAvailableHypData[i][Algo] );
225 aTab->setAvailableHyps( Algo, hypList );
230 myDlg->activateObject( myIsMesh ? SMESHGUI_MeshDlg::Geom : SMESHGUI_MeshDlg::Mesh );
233 myDlg->activateObject( SMESHGUI_MeshDlg::Obj );
235 myDlg->setHypoSets( SMESH::GetHypothesesSets() );
237 myDlg->setCurrentTab( SMESH::DIM_3D );
242 myIgnoreAlgoSelection = false;
245 //================================================================================
247 * \brief Creates selection filter
248 * \param theId - identifier of current selection widget
249 * \retval SUIT_SelectionFilter* - pointer to the created filter or null
251 * Creates selection filter in accordance with identifier of current selection widget
253 //================================================================================
254 SUIT_SelectionFilter* SMESHGUI_MeshOp::createFilter( const int theId ) const
256 if ( theId == SMESHGUI_MeshDlg::Geom )
258 // TColStd_MapOfInteger allTypesMap;
259 // for ( int i = 0; i < 10; i++ )
260 // allTypesMap.Add( i );
261 // return new SMESH_NumberFilter( "GEOM", TopAbs_SHAPE, 0, allTypesMap );
262 return new GEOM_SelectionFilter( (SalomeApp_Study*)study(), true );
264 else if ( theId == SMESHGUI_MeshDlg::Obj && !myToCreate )
265 return new SMESH_TypeFilter( MESHorSUBMESH );
266 else if ( theId == SMESHGUI_MeshDlg::Mesh )
267 return new SMESH_TypeFilter( MESH );
272 //================================================================================
274 * \brief check if selected shape is a subshape of the shape to mesh
275 * \retval bool - check result
277 //================================================================================
279 bool SMESHGUI_MeshOp::isSubshapeOk() const
281 if ( !myToCreate || myIsMesh ) // not submesh creation
285 QString aMeshEntry = myDlg->selectedObject( SMESHGUI_MeshDlg::Mesh );
286 _PTR(SObject) pMesh = studyDS()->FindObjectID( aMeshEntry.toLatin1().data() );
287 if (!pMesh) return false;
289 SMESH::SMESH_Mesh_var mesh = SMESH::SObjectToInterface<SMESH::SMESH_Mesh>( pMesh );
290 if (mesh->_is_nil()) return false;
292 // main shape of the mesh
293 GEOM::GEOM_Object_var mainGeom = mesh->GetShapeToMesh();
294 if (mainGeom->_is_nil()) return false;
298 myDlg->selectedObject(SMESHGUI_MeshDlg::Geom, aGEOMs);
300 if (aGEOMs.count() > 0) {
301 GEOM::GEOM_Gen_var geomGen = SMESH::GetGEOMGen();
302 _PTR(Study) aStudy = SMESH::GetActiveStudyDocument();
303 if (geomGen->_is_nil() || !aStudy) return false;
305 GEOM::GEOM_IGroupOperations_var op =
306 geomGen->GetIGroupOperations(aStudy->StudyId());
307 if (op->_is_nil()) return false;
309 // check all selected shapes
310 QStringList::const_iterator aSubShapesIter = aGEOMs.begin();
311 for ( ; aSubShapesIter != aGEOMs.end(); aSubShapesIter++) {
312 QString aSubGeomEntry = (*aSubShapesIter);
313 _PTR(SObject) pSubGeom = studyDS()->FindObjectID(aSubGeomEntry.toLatin1().data());
314 if (!pSubGeom) return false;
316 GEOM::GEOM_Object_var aSubGeomVar =
317 GEOM::GEOM_Object::_narrow(_CAST(SObject,pSubGeom)->GetObject());
318 if (aSubGeomVar->_is_nil()) return false;
320 // skl for NPAL14695 - implementation of searching of mainObj
321 GEOM::GEOM_Object_var mainObj = op->GetMainShape(aSubGeomVar);
322 //if (mainObj->_is_nil() ||
323 // string(mainObj->GetEntry()) != string(mainGeom->GetEntry())) return false;
325 if (mainObj->_is_nil())
327 if (std::string(mainObj->GetEntry()) == std::string(mainGeom->GetEntry()))
329 mainObj = op->GetMainShape(mainObj);
338 //================================================================================
340 * \brief Return name of the algorithm that does not support submeshes and makes
341 * submesh creation useless
342 * \retval char* - string is to be deleted!!!
344 //================================================================================
346 char* SMESHGUI_MeshOp::isSubmeshIgnored() const
348 if ( myToCreate && !myIsMesh ) {
350 QString aMeshEntry = myDlg->selectedObject( SMESHGUI_MeshDlg::Mesh );
351 QString aGeomEntry = myDlg->selectedObject( SMESHGUI_MeshDlg::Geom );
352 _PTR(SObject) pMesh = studyDS()->FindObjectID( aMeshEntry.toLatin1().data() );
355 QStringList algoNames;
357 existingHyps(3, Algo, pMesh, algoNames, algoList);
358 if (!algoList.empty()) {
359 HypothesisData* algo = SMESH::GetHypothesisData( algoList[0].first->GetName() );
361 algo->InputTypes.empty() && // builds all dimensions it-self
362 !algo->IsSupportSubmeshes )
363 return CORBA::string_dup( algoNames[0].toLatin1().data() );
366 // GEOM::GEOM_Object_var geom;
367 // if (_PTR(SObject) pGeom = studyDS()->FindObjectID( aGeomEntry.toLatin1().data() ))
368 // geom = SMESH::SObjectToInterface<GEOM::GEOM_Object>( pGeom );
370 // if ( !geom->_is_nil() && geom->GetShapeType() >= GEOM::FACE ) { // WIRE, EDGE as well
371 existingHyps(2, Algo, pMesh, algoNames, algoList);
372 if (!algoList.empty()) {
373 HypothesisData* algo = SMESH::GetHypothesisData( algoList[0].first->GetName() );
375 algo->InputTypes.empty() && // builds all dimensions it-self
376 !algo->IsSupportSubmeshes )
377 return CORBA::string_dup( algoNames[0].toLatin1().data() );
385 //================================================================================
387 * \brief find an existing submesh by the selected shape
388 * \retval _PTR(SObject) - the found submesh SObject
390 //================================================================================
392 _PTR(SObject) SMESHGUI_MeshOp::getSubmeshByGeom() const
394 QString aMeshEntry = myDlg->selectedObject( SMESHGUI_MeshDlg::Mesh );
395 QString aGeomEntry = myDlg->selectedObject( SMESHGUI_MeshDlg::Geom );
396 _PTR(SObject) pMesh = studyDS()->FindObjectID( aMeshEntry.toLatin1().data() );
397 _PTR(SObject) pGeom = studyDS()->FindObjectID( aGeomEntry.toLatin1().data() );
398 if ( pMesh && pGeom ) {
399 GEOM::GEOM_Object_var geom = SMESH::SObjectToInterface<GEOM::GEOM_Object>( pGeom );
400 if ( !geom->_is_nil() ) {
402 switch ( geom->GetShapeType() ) {
403 case GEOM::VERTEX: tag = SMESH::Tag_SubMeshOnVertex; break;
404 case GEOM::EDGE: tag = SMESH::Tag_SubMeshOnEdge; break;
405 case GEOM::WIRE: tag = SMESH::Tag_SubMeshOnWire; break;
406 case GEOM::FACE: tag = SMESH::Tag_SubMeshOnFace; break;
407 case GEOM::SHELL: tag = SMESH::Tag_SubMeshOnShell; break;
408 case GEOM::SOLID: tag = SMESH::Tag_SubMeshOnSolid; break;
409 case GEOM::COMPOUND: tag = SMESH::Tag_SubMeshOnCompound; break;
412 _PTR(GenericAttribute) anAttr;
413 _PTR(SObject) aSubmeshRoot;
414 _PTR(Study) aStudy = SMESH::GetActiveStudyDocument();
415 if ( pMesh->FindSubObject( tag, aSubmeshRoot ) )
417 _PTR(ChildIterator) smIter = aStudy->NewChildIterator( aSubmeshRoot );
418 for ( ; smIter->More(); smIter->Next() )
420 _PTR(SObject) aSmObj = smIter->Value();
421 if ( ! aSmObj->FindAttribute( anAttr, "AttributeIOR" ))
423 _PTR(ChildIterator) anIter1 = aStudy->NewChildIterator(aSmObj);
424 for ( ; anIter1->More(); anIter1->Next()) {
425 _PTR(SObject) pGeom2 = anIter1->Value();
426 if ( pGeom2->ReferencedObject( pGeom2 ) &&
427 pGeom2->GetID() == pGeom->GetID() )
434 return _PTR(SObject)();
437 //================================================================================
439 * \brief Updates dialog's look and feel
441 * Virtual method redefined from the base class updates dialog's look and feel
443 //================================================================================
444 void SMESHGUI_MeshOp::selectionDone()
446 if (!dlg()->isVisible() || !myDlg->isEnabled())
449 SMESHGUI_SelectionOp::selectionDone();
453 myIsOnGeometry = true;
455 //Check geometry for mesh
456 QString anObjEntry = myDlg->selectedObject(SMESHGUI_MeshDlg::Obj);
457 _PTR(SObject) pObj = studyDS()->FindObjectID(anObjEntry.toLatin1().data());
460 SMESH::SMESH_Mesh_var aMeshVar =
461 SMESH::SMESH_Mesh::_narrow(_CAST(SObject,pObj)->GetObject());
462 if (!aMeshVar->_is_nil()) {
463 if (!myToCreate && !aMeshVar->HasShapeToMesh())
464 myIsOnGeometry = false;
470 // Enable tabs according to shape dimension
475 myDlg->selectedObject(SMESHGUI_MeshDlg::Geom, aGEOMs);
476 GEOM::ListOfGO_var aSeq = new GEOM::ListOfGO;
478 if (aGEOMs.count() > 0) {
479 // one or more GEOM shape selected
480 aSeq->length(aGEOMs.count());
481 QStringList::const_iterator aSubShapesIter = aGEOMs.begin();
483 for ( ; aSubShapesIter != aGEOMs.end(); aSubShapesIter++, iSubSh++) {
484 QString aSubGeomEntry = (*aSubShapesIter);
485 _PTR(SObject) pSubGeom = studyDS()->FindObjectID(aSubGeomEntry.toLatin1().data());
486 GEOM::GEOM_Object_var aSubGeomVar =
487 GEOM::GEOM_Object::_narrow(_CAST(SObject,pSubGeom)->GetObject());
488 aSeq[iSubSh] = aSubGeomVar;
491 // get geometry by selected sub-mesh
492 QString anObjEntry = myDlg->selectedObject( SMESHGUI_MeshDlg::Obj );
493 _PTR(SObject) pObj = studyDS()->FindObjectID( anObjEntry.toLatin1().data() );
494 GEOM::GEOM_Object_var aGeomVar = SMESH::GetShapeOnMeshOrSubMesh( pObj );
495 if (!aGeomVar->_is_nil()) {
501 if (aSeq->length() > 0) {
503 for (int iss = 0; iss < aSeq->length() && shapeDim < 3; iss++) {
504 GEOM::GEOM_Object_var aGeomVar = aSeq[iss];
505 switch ( aGeomVar->GetShapeType() ) {
506 case GEOM::SOLID: shapeDim = 3; break;
509 //shapeDim = 3; // Bug 0016155: EDF PAL 447: If the shape is a Shell, disable 3D tab
510 shapeDim = (shapeDim < 2) ? 2 : shapeDim;
512 if (GEOMBase::GetShape(aGeomVar, aShape)) {
513 if (/*aShape.Closed()*/BRep_Tool::IsClosed(aShape))
518 case GEOM::FACE: shapeDim = (shapeDim < 2) ? 2 : shapeDim; break;
520 case GEOM::EDGE: shapeDim = (shapeDim < 1) ? 1 : shapeDim; break;
521 case GEOM::VERTEX: break;
525 if (GEOMBase::GetShape(aGeomVar, aShape)) {
526 TopExp_Explorer exp (aShape, TopAbs_SHELL);
528 //shapeDim = 3; // Bug 0016155: EDF PAL 447: If the shape is a Shell, disable 3D tab
529 shapeDim = (shapeDim < 2) ? 2 : shapeDim;
530 for (; exp.More() && shapeDim == 2; exp.Next()) {
531 if (/*exp.Current().Closed()*/BRep_Tool::IsClosed(exp.Current()))
535 else if ( exp.Init( aShape, TopAbs_FACE ), exp.More() )
536 shapeDim = (shapeDim < 2) ? 2 : shapeDim;
537 else if ( exp.Init( aShape, TopAbs_EDGE ), exp.More() )
538 shapeDim = (shapeDim < 1) ? 1 : shapeDim;
546 for (int i = SMESH::DIM_3D; i > shapeDim; i--) {
547 // reset algos before disabling tabs (0020138)
548 onAlgoSelected(-1, i);
550 myDlg->setMaxHypoDim( shapeDim );
553 if (!myToCreate) // edition: read hypotheses
557 SMESH::SMESH_subMesh_var aVar =
558 SMESH::SMESH_subMesh::_narrow( _CAST( SObject,pObj )->GetObject() );
559 myDlg->setObjectShown( SMESHGUI_MeshDlg::Mesh, !aVar->_is_nil() );
560 myDlg->setObjectShown( SMESHGUI_MeshDlg::Geom, true );
561 myDlg->objectWg( SMESHGUI_MeshDlg::Mesh, SMESHGUI_MeshDlg::Btn )->hide();
562 myDlg->objectWg( SMESHGUI_MeshDlg::Geom, SMESHGUI_MeshDlg::Btn )->hide();
563 myDlg->updateGeometry();
570 else if ( !myIsMesh ) // submesh creation
572 // if a submesh on the selected shape already exist, pass to submesh edition mode
573 if ( _PTR(SObject) pSubmesh = getSubmeshByGeom() ) {
574 SMESH::SMESH_subMesh_var sm =
575 SMESH::SObjectToInterface<SMESH::SMESH_subMesh>( pSubmesh );
576 bool editSubmesh = ( !sm->_is_nil() &&
577 SUIT_MessageBox::question( myDlg, tr( "SMESH_WARNING" ),
578 tr( "EDIT_SUBMESH_QUESTION"),
579 SUIT_MessageBox::Yes |
581 SUIT_MessageBox::No )
582 == SUIT_MessageBox::Yes );
585 selectionMgr()->clearFilters();
586 selectObject( pSubmesh );
587 SMESHGUI::GetSMESHGUI()->switchToOperation(704);
592 myDlg->selectObject( "", SMESHGUI_MeshDlg::Geom, "" );
593 selectObject( _PTR(SObject)() );
598 // discard selected mesh if submesh creation not allowed because of
599 // a global algorithm that does not support submeshes
600 if ( char* algoName = isSubmeshIgnored() ) {
601 SUIT_MessageBox::warning( myDlg, tr( "SMESH_ERROR" ),
602 tr("SUBMESH_NOT_ALLOWED").arg(algoName));
603 CORBA::string_free( algoName );
604 myDlg->selectObject( "", SMESHGUI_MeshDlg::Mesh, "" );
605 selectObject( _PTR(SObject)() );
610 // enable/disable popup for choice of geom selection way
612 QString aMeshEntry = myDlg->selectedObject( SMESHGUI_MeshDlg::Mesh );
613 if ( _PTR(SObject) pMesh = studyDS()->FindObjectID( aMeshEntry.toLatin1().data() )) {
614 SMESH::SMESH_Mesh_var mesh = SMESH::SObjectToInterface<SMESH::SMESH_Mesh>( pMesh );
615 if ( !mesh->_is_nil() )
616 enable = ( shapeDim > 1 ) && ( mesh->NbEdges() > 0 );
618 myDlg->setGeomPopupEnabled( enable );
622 myDlg->enableTab( SMESH::DIM_3D );
624 availableHyps( SMESH::DIM_3D, Algo, hypList,
625 myAvailableHypData[SMESH::DIM_3D][Algo]);
627 SMESHGUI_MeshTab* aTab = myDlg->tab( SMESH::DIM_3D );
628 aTab->setAvailableHyps( Algo, hypList );
629 for (int i = SMESH::DIM_0D;i < SMESH::DIM_3D; ++i) {
630 myDlg->disableTab(i);
632 //Hide labels and fields (Mesh ang Geometry)
633 myDlg->setObjectShown( SMESHGUI_MeshDlg::Mesh, false );
634 myDlg->setObjectShown( SMESHGUI_MeshDlg::Geom, false );
639 catch ( const SALOME::SALOME_Exception& S_ex )
641 SalomeApp_Tools::QtCatchCorbaException( S_ex );
648 //================================================================================
650 * \brief Verifies validity of input data
651 * \param theMess - Output parameter intended for returning error message
652 * \retval bool - TRUE if input data is valid, false otherwise
654 * Verifies validity of input data. This method is called when "Apply" or "OK" button
655 * is pressed before mesh creation or editing.
657 //================================================================================
658 bool SMESHGUI_MeshOp::isValid( QString& theMess ) const
660 // Selected object to be edited
661 if ( !myToCreate && myDlg->selectedObject( SMESHGUI_MeshDlg::Obj ) == "" )
663 theMess = tr( "THERE_IS_NO_OBJECT_FOR_EDITING" );
668 QString aMeshName = myDlg->objectText( SMESHGUI_MeshDlg::Obj ).trimmed();
669 if ( aMeshName.isEmpty() )
671 theMess = myIsMesh ? tr( "NAME_OF_MESH_IS_EMPTY" ) : tr( "NAME_OF_SUBMESH_IS_EMPTY" );
675 /* // Imported mesh, if create sub-mesh or edit mesh
676 if ( !myToCreate || ( myToCreate && !myIsMesh ))
678 QString aMeshEntry = myDlg->selectedObject
679 ( myToCreate ? SMESHGUI_MeshDlg::Mesh : SMESHGUI_MeshDlg::Obj );
680 if ( _PTR(SObject) pMesh = studyDS()->FindObjectID( aMeshEntry.toLatin1().data() )) {
681 SMESH::SMESH_Mesh_var mesh = SMESH::SObjectToInterface<SMESH::SMESH_Mesh>( pMesh );
682 if ( !mesh->_is_nil() && CORBA::is_nil( mesh->GetShapeToMesh() )) {
683 theMess = tr( "IMPORTED_MESH" );
692 QString aGeomEntry = myDlg->selectedObject( SMESHGUI_MeshDlg::Geom );
693 if ( aGeomEntry == "" )
695 theMess = tr( "GEOMETRY_OBJECT_IS_NOT_DEFINED" );
698 _PTR(SObject) pGeom = studyDS()->FindObjectID( aGeomEntry.toLatin1().data() );
699 if ( !pGeom || GEOM::GEOM_Object::_narrow( _CAST( SObject,pGeom )->GetObject() )->_is_nil() )
701 theMess = tr( "GEOMETRY_OBJECT_IS_NULL" );
706 if ( !myIsMesh ) // i.e sub-mesh creation,
708 QString aMeshEntry = myDlg->selectedObject( SMESHGUI_MeshDlg::Mesh );
709 if ( aMeshEntry == "" )
711 theMess = tr( "MESH_IS_NOT_DEFINED" );
714 _PTR(SObject) pMesh = studyDS()->FindObjectID( aMeshEntry.toLatin1().data() );
715 if ( !pMesh || SMESH::SMESH_Mesh::_narrow( _CAST( SObject,pMesh )->GetObject() )->_is_nil() )
717 theMess = tr( "MESH_IS_NULL" );
720 if ( !isSubshapeOk() )
722 theMess = tr( "INVALID_SUBSHAPE" );
731 //================================================================================
733 * \brief check compatibility of the algorithm and another algorithm or hypothesis
734 * \param theAlgoData - algorithm data
735 * \param theHypData - hypothesis data
736 * \param theHypType - hypothesis type
737 * \param theHypTypeName - hypothesis type name, must be provided if 2-nd arg is not algo
738 * \retval bool - check result
740 //================================================================================
742 static bool isCompatible(const HypothesisData* theAlgoData,
743 const HypothesisData* theHypData,
744 const int theHypType)
749 if ( theHypType == SMESHGUI_MeshOp::Algo )
750 return SMESH::IsCompatibleAlgorithm( theAlgoData, theHypData );
753 return ( SMESH::IsAvailableHypothesis( theAlgoData, theHypData->TypeName, isOptional ));
756 //================================================================================
758 * \brief Gets available hypotheses or algorithms
759 * \param theDim - specifies dimension of returned hypotheses/algorifms
760 * \param theHypType - specifies whether algorims or hypotheses or additional ones
761 * are retrieved (possible values are in HypType enumeration)
762 * \param theHyps - Output list of hypotheses' names
763 * \param theAlgoData - to select hypos able to be used by this algo (optional)
765 * Gets available hypotheses or algorithm in accordance with input parameters
767 //================================================================================
768 void SMESHGUI_MeshOp::availableHyps( const int theDim,
769 const int theHypType,
770 QStringList& theHyps,
771 THypDataList& theDataList,
772 HypothesisData* theAlgoData ) const
776 bool isAlgo = ( theHypType == Algo );
777 bool isAux = ( theHypType == AddHyp );
778 QStringList aHypTypeNameList = SMESH::GetAvailableHypotheses( isAlgo, theDim, isAux, myIsOnGeometry );
780 QStringList::const_iterator anIter;
781 for ( anIter = aHypTypeNameList.begin(); anIter != aHypTypeNameList.end(); ++anIter )
783 HypothesisData* aData = SMESH::GetHypothesisData( *anIter );
784 if ( isCompatible ( theAlgoData, aData, theHypType )) {
785 theDataList.append( aData );
786 theHyps.append( aData->Label );
791 //================================================================================
793 * \brief Gets existing hypotheses or algorithms
794 * \param theDim - specifies dimension of returned hypotheses/algorifms
795 * \param theHypType - specifies whether algorims or hypotheses or additional ones
796 * are retrieved (possible values are in HypType enumeration)
797 * \param theFather - start object for finding ( may be component, mesh, or sub-mesh )
798 * \param theHyps - output list of names.
799 * \param theHypVars - output list of variables.
800 * \param theAlgoData - to select hypos able to be used by this algo (optional)
802 * Gets existing (i.e. already created) hypotheses or algorithm in accordance with
805 //================================================================================
806 void SMESHGUI_MeshOp::existingHyps( const int theDim,
807 const int theHypType,
808 _PTR(SObject) theFather,
809 QStringList& theHyps,
810 THypList& theHypList,
811 HypothesisData* theAlgoData)
813 // Clear hypoheses list
820 const bool isAux = ( theHypType == AddHyp );
822 _PTR(SObject) aHypRoot;
823 _PTR(GenericAttribute) anAttr;
824 _PTR(AttributeName) aName;
825 _PTR(AttributeIOR) anIOR;
827 bool isMesh = !_CAST( SComponent, theFather );
830 aPart = theHypType == Algo ? SMESH::Tag_RefOnAppliedAlgorithms : SMESH::Tag_RefOnAppliedHypothesis;
832 aPart = theHypType == Algo ? SMESH::Tag_AlgorithmsRoot : SMESH::Tag_HypothesisRoot;
834 if ( theFather->FindSubObject( aPart, aHypRoot ) )
836 _PTR(ChildIterator) anIter =
837 SMESH::GetActiveStudyDocument()->NewChildIterator( aHypRoot );
838 for ( ; anIter->More(); anIter->Next() )
840 _PTR(SObject) anObj = anIter->Value();
841 if ( isMesh ) // i.e. mesh or submesh
843 _PTR(SObject) aRefObj;
844 if ( anObj->ReferencedObject( aRefObj ) )
849 if ( anObj->FindAttribute( anAttr, "AttributeName" ) )
852 CORBA::Object_var aVar = _CAST(SObject,anObj)->GetObject();
853 if ( !CORBA::is_nil( aVar ) )
855 SMESH::SMESH_Hypothesis_var aHypVar = SMESH::SMESH_Hypothesis::_narrow( aVar );
856 if ( !aHypVar->_is_nil() )
858 HypothesisData* aData = SMESH::GetHypothesisData( aHypVar->GetName() );
859 if ( ( theDim == -1 || aData->Dim.contains( theDim ) ) &&
860 ( isCompatible ( theAlgoData, aData, theHypType )) &&
861 ( isAux == aData->IsAux ))
863 std::string aHypName = aName->Value();
864 theHyps.append( aHypName.c_str() );
865 theHypList.append( THypItem( aHypVar, aHypName.c_str() ) );
874 //================================================================================
876 * \brief If create or edit a submesh, return a hypothesis holding parameters used
878 * \param aHypType - The hypothesis type name
879 * \param aServerLib - Server library name
880 * \param hypData - The structure holding the hypothesis type etc.
881 * \retval SMESH::SMESH_Hypothesis_var - the hypothesis holding parameter values
883 //================================================================================
885 SMESH::SMESH_Hypothesis_var
886 SMESHGUI_MeshOp::getInitParamsHypothesis( const QString& aHypType,
887 const QString& aServerLib ) const
889 if ( aHypType.isEmpty() || aServerLib.isEmpty() )
890 return SMESH::SMESH_Hypothesis::_nil();
892 const int nbColonsInMeshEntry = 3;
893 bool isSubMesh = myToCreate ?
895 myDlg->selectedObject( SMESHGUI_MeshDlg::Obj ).count(':') > nbColonsInMeshEntry;
897 // get mesh and geom object
898 SMESH::SMESH_Mesh_var aMeshVar = SMESH::SMESH_Mesh::_nil();
899 GEOM::GEOM_Object_var aGeomVar = GEOM::GEOM_Object::_nil();
904 anEntry = myDlg->selectedObject
905 ( myToCreate ? SMESHGUI_MeshDlg::Mesh : SMESHGUI_MeshDlg::Obj );
906 if ( _PTR(SObject) pObj = studyDS()->FindObjectID( anEntry.toLatin1().data() ))
908 CORBA::Object_ptr Obj = _CAST( SObject,pObj )->GetObject();
909 if ( myToCreate ) // mesh and geom may be selected
911 aMeshVar = SMESH::SMESH_Mesh::_narrow( Obj );
912 anEntry = myDlg->selectedObject( SMESHGUI_MeshDlg::Geom );
913 if ( _PTR(SObject) pGeom = studyDS()->FindObjectID( anEntry.toLatin1().data() ))
914 aGeomVar= GEOM::GEOM_Object::_narrow( _CAST( SObject,pGeom )->GetObject() );
916 else // edition: sub-mesh may be selected
918 SMESH::SMESH_subMesh_var sm = SMESH::SMESH_subMesh::_narrow( Obj );
919 if ( !sm->_is_nil() ) {
920 aMeshVar = sm->GetFather();
921 aGeomVar = sm->GetSubShape();
928 if ( !myToCreate ) // mesh to edit can be selected
930 anEntry = myDlg->selectedObject( SMESHGUI_MeshDlg::Obj );
931 if ( _PTR(SObject) pMesh = studyDS()->FindObjectID( anEntry.toLatin1().data() ))
933 aMeshVar = SMESH::SMESH_Mesh::_narrow( _CAST( SObject,pMesh )->GetObject() );
934 if ( !aMeshVar->_is_nil() )
935 aGeomVar = SMESH::GetShapeOnMeshOrSubMesh( pMesh );
938 if ( aGeomVar->_is_nil() ) {
939 anEntry = myDlg->selectedObject( SMESHGUI_MeshDlg::Geom );
940 if ( _PTR(SObject) pGeom = studyDS()->FindObjectID( anEntry.toLatin1().data() ))
942 aGeomVar= GEOM::GEOM_Object::_narrow( _CAST( SObject,pGeom )->GetObject() );
947 if ( (!isSubMesh || !aMeshVar->_is_nil()) && !aGeomVar->_is_nil() )
948 return SMESHGUI::GetSMESHGen()->GetHypothesisParameterValues( aHypType.toLatin1().data(),
949 aServerLib.toLatin1().data(),
952 /*byMesh = */isSubMesh);
954 return SMESH::SMESH_Hypothesis::_nil();
957 //================================================================================
959 * \Brief Returns tab dimention
960 * \param tab - the tab in the dlg
961 * \param dlg - my dialogue
962 * \retval int - dimention
964 //================================================================================
966 static int getTabDim (const QObject* tab, SMESHGUI_MeshDlg* dlg )
969 for (int i = SMESH::DIM_0D; i <= SMESH::DIM_3D; i++)
970 if (tab == dlg->tab(i))
975 //================================================================================
977 * \brief Create hypothesis
978 * \param theHypType - hypothesis category (main or additional)
979 * \param theIndex - index of type of hypothesis to be cerated
981 * Specifies dimension of hypothesis to be created (using sender() method),
982 * specifies its type and calls method for hypothesis creation
984 //================================================================================
985 void SMESHGUI_MeshOp::onCreateHyp( const int theHypType, const int theIndex )
987 // Specifies dimension of hypothesis to be created
988 int aDim = getTabDim( sender(), myDlg );
992 // Specifies type of hypothesis to be created
993 THypDataList& dataList = myAvailableHypData[ aDim ][ theHypType ];
994 if (theIndex < 0 || theIndex >= dataList.count())
996 QString aHypTypeName = dataList[ theIndex ]->TypeName;
999 createHypothesis(aDim, theHypType, aHypTypeName);
1002 //================================================================================
1004 * Create hypothesis and update dialog.
1005 * \param theDim - dimension of hypothesis to be created
1006 * \param theType - hypothesis category (algorithm, hypothesis, additional hypothesis)
1007 * \param theTypeName - specifies hypothesis to be created
1009 //================================================================================
1012 QString GetUniqueName (const QStringList& theHypNames,
1013 const QString& theName,
1014 size_t theIteration = 1)
1016 QString aName = theName + "_" + QString::number( theIteration );
1017 if ( theHypNames.contains( aName ) )
1018 return GetUniqueName( theHypNames, theName, ++theIteration );
1023 void SMESHGUI_MeshOp::createHypothesis (const int theDim,
1025 const QString& theTypeName)
1027 // During a hypothesis creation we might need to select some objects.
1028 // Main dialog must not update it's own selected objects in this case.
1029 dlg()->deactivateAll();
1031 HypothesisData* aData = SMESH::GetHypothesisData(theTypeName);
1035 QStringList aHypNames;
1036 TDim2Type2HypList::const_iterator aDimIter = myExistingHyps.begin();
1037 for ( ; aDimIter != myExistingHyps.end(); aDimIter++) {
1038 const TType2HypList& aType2HypList = aDimIter.value();
1039 TType2HypList::const_iterator aTypeIter = aType2HypList.begin();
1040 for ( ; aTypeIter != aType2HypList.end(); aTypeIter++) {
1041 const THypList& aHypList = aTypeIter.value();
1042 THypList::const_iterator anIter = aHypList.begin();
1043 for ( ; anIter != aHypList.end(); anIter++) {
1044 const THypItem& aHypItem = *anIter;
1045 const QString& aHypName = aHypItem.second;
1046 aHypNames.append(aHypName);
1050 QString aHypName = GetUniqueName( aHypNames, aData->Label);
1053 int nbHyp = myExistingHyps[theDim][theType].count();
1055 QString aClientLibName = aData->ClientLibName;
1056 if (aClientLibName == "") {
1057 // Call hypothesis creation server method (without GUI)
1058 SMESH::CreateHypothesis(theTypeName, aHypName, false);
1060 // Get hypotheses creator client (GUI)
1061 SMESHGUI_GenericHypothesisCreator* aCreator = SMESH::GetHypothesisCreator(theTypeName);
1063 // Create hypothesis
1065 // Get parameters appropriate to initialize a new hypothesis
1066 SMESH::SMESH_Hypothesis_var initParamHyp =
1067 getInitParamsHypothesis(theTypeName, aData->ServerLibName);
1068 myDlg->setEnabled( false );
1069 aCreator->create(initParamHyp, aHypName, myDlg);
1070 myDlg->setEnabled( true );
1072 SMESH::CreateHypothesis(theTypeName, aHypName, false);
1076 _PTR(SComponent) aFather = SMESH::GetActiveStudyDocument()->FindComponent("SMESH");
1078 HypothesisData* algoData = hypData( theDim, Algo, currentHyp( theDim, Algo ));
1079 QStringList aNewHyps;
1080 existingHyps(theDim, theType, aFather, aNewHyps, myExistingHyps[theDim][theType], algoData);
1081 if (aNewHyps.count() > nbHyp) {
1082 for (int i = nbHyp; i < aNewHyps.count(); i++)
1083 myDlg->tab(theDim)->addHyp(theType, aNewHyps[i]);
1087 //================================================================================
1089 * \brief Calls plugin methods for hypothesis editing
1090 * \param theHypType - specifies whether main hypothesis or additional one
1092 * \param theIndex - index of existing hypothesis
1094 * Calls plugin methods for hypothesis editing
1096 //================================================================================
1097 void SMESHGUI_MeshOp::onEditHyp( const int theHypType, const int theIndex )
1099 // Speicfies dimension of hypothesis to be created
1100 int aDim = getTabDim( sender(), myDlg );
1104 const THypList& aList = myExistingHyps[ aDim ][ theHypType ];
1105 if ( theIndex < 0 || theIndex >= aList.count() )
1107 const THypItem& aHypItem = aList[ theIndex ];
1108 SMESH::SMESH_Hypothesis_var aHyp = aHypItem.first;
1109 if ( aHyp->_is_nil() )
1112 SMESHGUI_GenericHypothesisCreator* aCreator = SMESH::GetHypothesisCreator( aHyp->GetName() );
1114 // Get initial parameters
1115 SMESH::SMESH_Hypothesis_var initParamHyp =
1116 getInitParamsHypothesis( aHyp->GetName(), aHyp->GetLibName());
1117 myDlg->setEnabled( false );
1118 aCreator->setInitParamsHypothesis( initParamHyp );
1119 aCreator->edit( aHyp.in(), aHypItem.second, dlg() );
1120 myDlg->setEnabled( true );
1124 //================================================================================
1126 * \brief access to hypothesis data
1127 * \param theDim - hyp dimension
1128 * \param theHypType - hyp type (Algo,MainHyp or AddHyp)
1129 * \param theIndex - index in the list
1130 * \retval HypothesisData* - result data, may be 0
1132 //================================================================================
1134 HypothesisData* SMESHGUI_MeshOp::hypData( const int theDim,
1135 const int theHypType,
1138 if ( theDim > -1 && theDim <= SMESH::DIM_3D &&
1139 theHypType > -1 && theHypType < NbHypTypes &&
1140 theIndex > -1 && theIndex < myAvailableHypData[ theDim ][ theHypType ].count() )
1141 return myAvailableHypData[ theDim ][ theHypType ][ theIndex ];
1145 //================================================================================
1147 * \brief Set available algos and hypos according to the selected algorithm
1148 * \param theIndex - algorithm index
1150 //================================================================================
1152 void SMESHGUI_MeshOp::onAlgoSelected( const int theIndex,
1155 if ( myIgnoreAlgoSelection )
1158 int aDim = theDim < 0 ? getTabDim( sender(), myDlg ): theDim;
1162 // find highest available dimension, all algos of this dimension are available for choice
1164 for (int i = SMESH::DIM_0D; i <= SMESH::DIM_3D; i++)
1165 if (isAccessibleDim( i ))
1170 const bool isSubmesh = ( myToCreate ? !myIsMesh : myDlg->isObjectShown( SMESHGUI_MeshDlg::Mesh ));
1172 HypothesisData* algoData = hypData( aDim, Algo, theIndex );
1173 HypothesisData* algoByDim[4];
1174 algoByDim[ aDim ] = algoData;
1176 QStringList anAvailable;
1177 if ( !algoData ) { // all algos becomes available
1178 availableHyps( aDim, Algo, anAvailable, myAvailableHypData[ aDim ][ Algo ]);
1179 myDlg->tab( aDim )->setAvailableHyps( Algo, anAvailable );
1182 // check that algorithms of other dimentions are compatible with
1185 // 2 loops: backward and forward from algo dimension
1186 for ( int forward = false; forward <= true; ++forward )
1188 int dim = aDim + 1, lastDim = SMESH::DIM_3D, dir = 1;
1190 dim = aDim - 1; lastDim = SMESH::DIM_0D; dir = -1;
1192 HypothesisData* prevAlgo = algoData;
1193 bool noCompatible = false;
1194 for ( ; dim * dir <= lastDim * dir; dim += dir)
1196 if ( !isAccessibleDim( dim ))
1198 if ( noCompatible ) { // the selected algo has no compatible ones
1199 anAvailable.clear();
1200 myDlg->tab( dim )->setAvailableHyps( Algo, anAvailable );
1201 myAvailableHypData[dim][Algo].clear();
1202 algoByDim[ dim ] = 0;
1205 // get currently selected algo
1206 int algoIndex = currentHyp( dim, Algo );
1207 HypothesisData* curAlgo = hypData( dim, Algo, algoIndex );
1208 if ( curAlgo ) { // some algo selected
1209 if ( !isCompatible( prevAlgo, curAlgo, Algo ))
1212 // set new available algoritms
1213 availableHyps( dim, Algo, anAvailable, myAvailableHypData[dim][Algo], prevAlgo );
1214 HypothesisData* soleCompatible = 0;
1215 if ( anAvailable.count() == 1 )
1216 soleCompatible = myAvailableHypData[dim][Algo][0];
1217 if ( dim == aTopDim && prevAlgo ) // all available algoritms should be selectable any way
1218 availableHyps( dim, Algo, anAvailable, myAvailableHypData[dim][Algo], 0 );
1219 myDlg->tab( dim )->setAvailableHyps( Algo, anAvailable );
1220 noCompatible = anAvailable.isEmpty();
1222 // restore previously selected algo
1223 algoIndex = myAvailableHypData[dim][Algo].indexOf( curAlgo );
1224 if ( !isSubmesh && algoIndex < 0 && soleCompatible && !forward && dim != SMESH::DIM_0D)
1225 // select the sole compatible algo
1226 algoIndex = myAvailableHypData[dim][Algo].indexOf( soleCompatible );
1227 setCurrentHyp( dim, Algo, algoIndex );
1229 // remember current algo
1230 prevAlgo = algoByDim[ dim ] = hypData( dim, Algo, algoIndex );
1234 // set hypotheses corresponding to the found algoritms
1236 _PTR(SObject) pObj = SMESH::GetActiveStudyDocument()->FindComponent("SMESH");
1238 for ( int dim = SMESH::DIM_0D; dim <= SMESH::DIM_3D; dim++ )
1240 if ( !isAccessibleDim( dim ))
1242 for ( int type = MainHyp; type < NbHypTypes; type++ )
1244 myAvailableHypData[ dim ][ type ].clear();
1245 QStringList anAvailable, anExisting;
1247 HypothesisData* curAlgo = algoByDim[ dim ];
1248 int hypIndex = currentHyp( dim, type );
1250 SMESH::SMESH_Hypothesis_var curHyp;
1251 if ( hypIndex >= 0 && hypIndex < myExistingHyps[ dim ][ type ].count() )
1252 curHyp = myExistingHyps[ dim ][ type ][ hypIndex ].first;
1254 if ( !myToCreate && !curAlgo && !curHyp->_is_nil() ) { // edition, algo not selected
1255 // try to find algo by selected hypothesis in order to keep it selected
1256 bool algoDeselectedByUser = ( theDim < 0 && aDim == dim );
1257 CORBA::String_var curHypType = curHyp->GetName();
1258 if ( !algoDeselectedByUser &&
1259 myObjHyps[ dim ][ type ].count() > 0 &&
1260 curHypType == myObjHyps[ dim ][ type ].first().first->GetName())
1262 HypothesisData* hypData = SMESH::GetHypothesisData( curHyp->GetName() );
1263 for (int i = 0; i < myAvailableHypData[ dim ][ Algo ].count(); ++i) {
1264 curAlgo = myAvailableHypData[ dim ][ Algo ][ i ];
1265 if (curAlgo && hypData && isCompatible(curAlgo, hypData, type))
1272 // get hyps compatible with curAlgo
1275 // check if a selected hyp is compatible with the curAlgo
1276 if ( !curHyp->_is_nil() ) {
1277 HypothesisData* hypData = SMESH::GetHypothesisData( curHyp->GetName() );
1278 if ( !isCompatible( curAlgo, hypData, type ))
1279 curHyp = SMESH::SMESH_Hypothesis::_nil();
1281 existingHyps( dim, type, pObj, anExisting, myExistingHyps[ dim ][ type ], curAlgo);
1282 availableHyps( dim, type, anAvailable, myAvailableHypData[ dim ][ type ], curAlgo);
1284 // set list of hypotheses
1285 myDlg->tab( dim )->setAvailableHyps( type, anAvailable );
1286 myDlg->tab( dim )->setExistingHyps( type, anExisting );
1288 // set current existing hypothesis
1289 if ( !curHyp->_is_nil() && !anExisting.isEmpty() )
1290 hypIndex = this->find( curHyp, myExistingHyps[ dim ][ type ]);
1293 if ( !isSubmesh && hypIndex < 0 && anExisting.count() == 1 ) {
1294 // none is yet selected => select the sole existing if it is not optional
1295 CORBA::String_var hypTypeName = myExistingHyps[ dim ][ type ].first().first->GetName();
1296 bool isOptional = true;
1297 if ( algoByDim[ dim ] &&
1298 SMESH::IsAvailableHypothesis( algoByDim[ dim ], hypTypeName.in(), isOptional ) &&
1302 setCurrentHyp( dim, type, hypIndex );
1307 //================================================================================
1309 * \brief Creates and selects hypothesis of hypotheses set
1310 * \param theSetName - The name of hypotheses set
1312 //================================================================================
1313 void SMESHGUI_MeshOp::onHypoSet( const QString& theSetName )
1315 HypothesesSet* aHypoSet = SMESH::GetHypothesesSet(theSetName);
1316 if (!aHypoSet) return;
1319 for (int dim = SMESH::DIM_0D; dim <= SMESH::DIM_3D; dim++) {
1320 setCurrentHyp(dim, Algo, -1);
1321 setCurrentHyp(dim, AddHyp, -1);
1322 setCurrentHyp(dim, MainHyp, -1);
1325 for (int aHypType = Algo; aHypType < AddHyp; aHypType++) {
1326 bool isAlgo = (aHypType == Algo);
1328 // set hyps from the set
1329 QStringList* aHypoList = isAlgo ? &aHypoSet->AlgoList : &aHypoSet->HypoList;
1330 for (int i = 0, n = aHypoList->count(); i < n; i++) {
1331 const QString& aHypoTypeName = (*aHypoList)[ i ];
1332 HypothesisData* aHypData = SMESH::GetHypothesisData(aHypoTypeName);
1336 int aDim = aHypData->Dim[0];
1337 // create or/and set
1339 int index = myAvailableHypData[aDim][Algo].indexOf( aHypData );
1341 QStringList anAvailable;
1342 availableHyps( aDim, Algo, anAvailable, myAvailableHypData[aDim][Algo] );
1343 myDlg->tab( aDim )->setAvailableHyps( Algo, anAvailable );
1344 index = myAvailableHypData[aDim][Algo].indexOf( aHypData );
1346 setCurrentHyp( aDim, Algo, index );
1347 onAlgoSelected( index, aDim );
1350 bool mainHyp = true;
1351 QStringList anAvailable;
1352 availableHyps( aDim, MainHyp, anAvailable, myAvailableHypData[aDim][MainHyp] );
1353 myDlg->tab( aDim )->setAvailableHyps( MainHyp, anAvailable );
1354 int index = myAvailableHypData[aDim][MainHyp].indexOf( aHypData );
1357 index = myAvailableHypData[aDim][AddHyp].indexOf( aHypData );
1360 createHypothesis(aDim, mainHyp ? MainHyp : AddHyp, aHypoTypeName);
1362 } // loop on hypos in the set
1363 } // loop on algo/hypo
1366 //================================================================================
1368 * \brief Creates mesh
1369 * \param theMess - Output parameter intended for returning error message
1370 * \retval bool - TRUE if mesh is created, FALSE otherwise
1374 //================================================================================
1375 bool SMESHGUI_MeshOp::createMesh( QString& theMess )
1379 //QString aGeomEntry = myDlg->selectedObject( SMESHGUI_MeshDlg::Geom );
1380 //QString aGeomEntry = myDlg->selectedObject( SMESHGUI_MeshDlg::Geom );
1383 myDlg->selectedObject( SMESHGUI_MeshDlg::Geom, aList );
1384 QStringList::Iterator it = aList.begin();
1385 for ( ; it!=aList.end(); it++)
1387 QString aGeomEntry = *it;
1388 _PTR(SObject) pGeom = studyDS()->FindObjectID( aGeomEntry.toLatin1().data() );
1389 GEOM::GEOM_Object_var aGeomVar =
1390 GEOM::GEOM_Object::_narrow( _CAST( SObject,pGeom )->GetObject() );
1392 SMESH::SMESH_Gen_var aSMESHGen = SMESHGUI::GetSMESHGen();
1393 if ( aSMESHGen->_is_nil() )
1396 SUIT_OverrideCursor aWaitCursor;
1399 SMESH::SMESH_Mesh_var aMeshVar = aSMESHGen->CreateMesh( aGeomVar );
1400 if ( aMeshVar->_is_nil() )
1402 _PTR(SObject) aMeshSO = SMESH::FindSObject( aMeshVar.in() );
1404 SMESH::SetName( aMeshSO, myDlg->objectText( SMESHGUI_MeshDlg::Obj ) );
1406 for ( int aDim = SMESH::DIM_0D; aDim <= SMESH::DIM_3D; aDim++ ) {
1407 if ( !isAccessibleDim( aDim )) continue;
1409 // assign hypotheses
1410 for ( int aHypType = MainHyp; aHypType <= AddHyp; aHypType++ ) {
1411 int aHypIndex = currentHyp( aDim, aHypType );
1412 if ( aHypIndex >= 0 && aHypIndex < myExistingHyps[ aDim ][ aHypType ].count() ) {
1413 SMESH::SMESH_Hypothesis_var aHypVar = myExistingHyps[ aDim ][ aHypType ][ aHypIndex ].first;
1414 if ( !aHypVar->_is_nil() )
1415 SMESH::AddHypothesisOnMesh( aMeshVar, aHypVar );
1418 // find or create algorithm
1419 SMESH::SMESH_Hypothesis_var anAlgoVar = getAlgo( aDim );
1420 if ( !anAlgoVar->_is_nil() )
1421 SMESH::AddHypothesisOnMesh( aMeshVar, anAlgoVar );
1428 //================================================================================
1430 * \brief Creates sub-mesh
1431 * \param theMess - Output parameter intended for returning error message
1432 * \retval bool - TRUE if sub-mesh is created, FALSE otherwise
1436 //================================================================================
1437 bool SMESHGUI_MeshOp::createSubMesh( QString& theMess )
1441 SMESH::SMESH_Gen_var aSMESHGen = SMESHGUI::GetSMESHGen();
1442 if ( aSMESHGen->_is_nil() )
1446 QString aMeshEntry = myDlg->selectedObject( SMESHGUI_MeshDlg::Mesh );
1447 _PTR(SObject) pMesh = studyDS()->FindObjectID( aMeshEntry.toLatin1().data() );
1448 SMESH::SMESH_Mesh_var aMeshVar =
1449 SMESH::SMESH_Mesh::_narrow( _CAST( SObject,pMesh )->GetObject() );
1450 if (aMeshVar->_is_nil())
1453 // GEOM shape of the main mesh
1454 GEOM::GEOM_Object_var mainGeom = aMeshVar->GetShapeToMesh();
1456 // Name for the new sub-mesh
1457 QString aName = myDlg->objectText(SMESHGUI_MeshDlg::Obj);
1460 GEOM::GEOM_Object_var aGeomVar;
1462 myDlg->selectedObject(SMESHGUI_MeshDlg::Geom, aGEOMs);
1463 if (aGEOMs.count() == 1)
1465 //QString aGeomEntry = myDlg->selectedObject( SMESHGUI_MeshDlg::Geom );
1466 QString aGeomEntry = aGEOMs.first();
1467 _PTR(SObject) pGeom = studyDS()->FindObjectID( aGeomEntry.toLatin1().data() );
1468 aGeomVar = GEOM::GEOM_Object::_narrow( _CAST( SObject,pGeom )->GetObject() );
1470 else if (aGEOMs.count() > 1)
1472 // create a GEOM group
1473 GEOM::GEOM_Gen_var geomGen = SMESH::GetGEOMGen();
1474 _PTR(Study) aStudy = SMESH::GetActiveStudyDocument();
1475 if (!geomGen->_is_nil() && aStudy) {
1476 GEOM::GEOM_IGroupOperations_var op =
1477 geomGen->GetIGroupOperations(aStudy->StudyId());
1478 if (!op->_is_nil()) {
1479 // check and add all selected GEOM objects: they must be
1480 // a sub-shapes of the main GEOM and must be of one type
1482 TopAbs_ShapeEnum aGroupType = TopAbs_SHAPE;
1483 GEOM::ListOfGO_var aSeq = new GEOM::ListOfGO;
1484 aSeq->length(aGEOMs.count());
1485 QStringList::const_iterator aSubShapesIter = aGEOMs.begin();
1486 for ( ; aSubShapesIter != aGEOMs.end(); aSubShapesIter++, iSubSh++) {
1487 QString aSubGeomEntry = (*aSubShapesIter);
1488 _PTR(SObject) pSubGeom = studyDS()->FindObjectID(aSubGeomEntry.toLatin1().data());
1489 GEOM::GEOM_Object_var aSubGeomVar =
1490 GEOM::GEOM_Object::_narrow(_CAST(SObject,pSubGeom)->GetObject());
1491 TopAbs_ShapeEnum aSubShapeType = (TopAbs_ShapeEnum)aSubGeomVar->GetShapeType();
1493 aGroupType = aSubShapeType;
1495 if (aSubShapeType != aGroupType)
1496 aGroupType = TopAbs_SHAPE;
1498 aSeq[iSubSh] = aSubGeomVar;
1501 GEOM::GEOM_Object_var aGroupVar = op->CreateGroup(mainGeom, aGroupType);
1502 op->UnionList(aGroupVar, aSeq);
1505 aGeomVar = aGroupVar;
1507 // publish the GEOM group in study
1508 QString aNewGeomGroupName ("Auto_group_for_");
1509 aNewGeomGroupName += aName;
1510 SALOMEDS::SObject_var aNewGroupSO =
1511 geomGen->AddInStudy(aSMESHGen->GetCurrentStudy(), aGeomVar,
1512 aNewGeomGroupName.toLatin1().data(), mainGeom);
1519 if (aGeomVar->_is_nil())
1522 SUIT_OverrideCursor aWaitCursor;
1525 SMESH::SMESH_subMesh_var aSubMeshVar = aMeshVar->GetSubMesh( aGeomVar, aName.toLatin1().data() );
1526 _PTR(SObject) aSubMeshSO = SMESH::FindSObject( aSubMeshVar.in() );
1528 SMESH::SetName( aSubMeshSO, aName.toLatin1().data() );
1530 for ( int aDim = SMESH::DIM_0D; aDim <= SMESH::DIM_3D; aDim++ )
1532 if ( !isAccessibleDim( aDim )) continue;
1534 // find or create algorithm
1535 SMESH::SMESH_Hypothesis_var anAlgoVar = getAlgo( aDim );
1536 if ( !anAlgoVar->_is_nil() )
1537 SMESH::AddHypothesisOnSubMesh( aSubMeshVar, anAlgoVar );
1538 // assign hypotheses
1539 for ( int aHypType = MainHyp; aHypType <= AddHyp; aHypType++ )
1541 int aHypIndex = currentHyp( aDim, aHypType );
1542 if ( aHypIndex >= 0 && aHypIndex < myExistingHyps[ aDim ][ aHypType ].count() )
1544 SMESH::SMESH_Hypothesis_var aHypVar =
1545 myExistingHyps[ aDim ][ aHypType ][ aHypIndex ].first;
1546 if ( !aHypVar->_is_nil() )
1547 SMESH::AddHypothesisOnSubMesh( aSubMeshVar, aHypVar );
1552 // deselect geometry: next submesh should be created on other subshape
1553 myDlg->clearSelection( SMESHGUI_MeshDlg::Geom );
1554 selectObject( _PTR(SObject)() );
1560 //================================================================================
1562 * \brief Gets current hypothesis or algorithms
1563 * \param theDim - dimension of hypothesis or algorithm
1564 * \param theHypType - Type of hypothesis (Algo, MainHyp, AddHyp)
1565 * \retval int - current hypothesis or algorithms
1567 * Gets current hypothesis or algorithms
1569 //================================================================================
1570 int SMESHGUI_MeshOp::currentHyp( const int theDim, const int theHypType ) const
1572 return myDlg->tab( theDim )->currentHyp( theHypType ) - 1;
1575 //================================================================================
1577 * \brief Returns true if hypotheses of given dim can be assigned
1578 * \param theDim - hypotheses dimension
1579 * \retval bool - result
1581 //================================================================================
1582 bool SMESHGUI_MeshOp::isAccessibleDim( const int theDim ) const
1584 return myDlg->tab( theDim )->isEnabled();
1587 //================================================================================
1589 * \brief Sets current hypothesis or algorithms
1590 * \param theDim - dimension of hypothesis or algorithm
1591 * \param theHypType - Type of hypothesis (Algo, MainHyp, AddHyp)
1592 * \param theIndex - Index of hypothesis
1594 * Gets current hypothesis or algorithms
1596 //================================================================================
1597 void SMESHGUI_MeshOp::setCurrentHyp( const int theDim,
1598 const int theHypType,
1599 const int theIndex )
1601 myIgnoreAlgoSelection = true;
1602 myDlg->tab( theDim )->setCurrentHyp( theHypType, theIndex + 1 );
1603 myIgnoreAlgoSelection = false;
1606 //================================================================================
1608 * \brief Generates default and sets mesh/submesh name
1610 * Generates and sets default mesh/submesh name(Mesh_1, Mesh_2, etc.)
1612 //================================================================================
1613 void SMESHGUI_MeshOp::setDefaultName() const
1617 _PTR(Study) aStudy = SMESH::GetActiveStudyDocument();
1619 QString aPrefix = tr( myIsMesh ? "SMESH_OBJECT_MESH" : "SMESH_SUBMESH" ) + "_";
1620 _PTR(SObject) anObj;
1623 aResName = aPrefix + QString::number( i++ );
1624 anObj = aStudy->FindObject( aResName.toLatin1().data() );
1628 QLineEdit* aControl = ( QLineEdit* )myDlg->objectWg(
1629 SMESHGUI_MeshDlg::Obj, SMESHGUI_MeshDlg::Control );
1630 aControl->setText( aResName );
1633 //================================================================================
1635 * \brief Gets algorithm or creates it if necessary
1636 * \param theDim - specifies dimension of returned hypotheses/algorifms
1637 * \retval SMESH::SMESH_Hypothesis_var - algorithm
1639 * Gets algorithm or creates it if necessary
1641 //================================================================================
1642 SMESH::SMESH_Hypothesis_var SMESHGUI_MeshOp::getAlgo( const int theDim )
1644 SMESH::SMESH_Hypothesis_var anAlgoVar;
1646 // get type of the selected algo
1647 int aHypIndex = currentHyp( theDim, Algo );
1648 THypDataList& dataList = myAvailableHypData[ theDim ][ Algo ];
1649 if ( aHypIndex < 0 || aHypIndex >= dataList.count())
1651 QString aHypName = dataList[ aHypIndex ]->TypeName;
1653 // get existing algoritms
1654 _PTR(SObject) pObj = SMESH::GetActiveStudyDocument()->FindComponent("SMESH");
1656 existingHyps( theDim, Algo, pObj, tmp, myExistingHyps[ theDim ][ Algo ]);
1658 // look for anexisting algo of such a type
1659 THypList& aHypVarList = myExistingHyps[ theDim ][ Algo ];
1660 THypList::iterator anIter = aHypVarList.begin();
1661 for ( ; anIter != aHypVarList.end(); anIter++)
1663 SMESH::SMESH_Hypothesis_var aHypVar = (*anIter).first;
1664 CORBA::String_var aName = aHypVar->GetName();
1665 if ( !aHypVar->_is_nil() && aHypName == aName )
1667 anAlgoVar = aHypVar;
1672 if (anAlgoVar->_is_nil()) {
1673 HypothesisData* aHypData = SMESH::GetHypothesisData( aHypName );
1675 QString aClientLibName = aHypData->ClientLibName;
1676 if (aClientLibName == "") {
1677 // Call hypothesis creation server method (without GUI)
1678 SMESH::CreateHypothesis(aHypName, aHypData->Label, true);
1680 // Get hypotheses creator client (GUI)
1681 SMESHGUI_GenericHypothesisCreator* aCreator = SMESH::GetHypothesisCreator(aHypName);
1685 aCreator->create(true, aHypName, myDlg);
1687 SMESH::CreateHypothesis(aHypName, aHypData->Label, true);
1689 QStringList tmpList;
1690 _PTR(SComponent) aFather = SMESH::GetActiveStudyDocument()->FindComponent( "SMESH" );
1691 existingHyps( theDim, Algo, aFather, tmpList, myExistingHyps[ theDim ][ Algo ] );
1694 THypList& aNewHypVarList = myExistingHyps[ theDim ][ Algo ];
1695 for ( anIter = aNewHypVarList.begin(); anIter != aNewHypVarList.end(); ++anIter )
1697 SMESH::SMESH_Hypothesis_var aHypVar = (*anIter).first;
1698 CORBA::String_var aName = aHypVar->GetName();
1699 if ( !aHypVar->_is_nil() && aHypName == aName )
1701 anAlgoVar = aHypVar;
1707 return anAlgoVar._retn();
1710 //================================================================================
1712 * \brief Reads parameters of edited mesh and assigns them to the dialog
1714 * Reads parameters of edited mesh and assigns them to the dialog (called when
1715 * mesh is edited only)
1717 //================================================================================
1718 void SMESHGUI_MeshOp::readMesh()
1720 QString anObjEntry = myDlg->selectedObject( SMESHGUI_MeshDlg::Obj );
1721 _PTR(SObject) pObj = studyDS()->FindObjectID( anObjEntry.toLatin1().data() );
1725 if (myIsOnGeometry) {
1726 // Get name of mesh if current object is sub-mesh
1727 SMESH::SMESH_subMesh_var aSubMeshVar =
1728 SMESH::SMESH_subMesh::_narrow( _CAST( SObject,pObj )->GetObject() );
1729 if ( !aSubMeshVar->_is_nil() )
1731 SMESH::SMESH_Mesh_var aMeshVar = aSubMeshVar->GetFather();
1732 if ( !aMeshVar->_is_nil() )
1734 _PTR(SObject) aMeshSO = SMESH::FindSObject( aMeshVar );
1735 QString aMeshName = name( aMeshSO );
1736 myDlg->setObjectText( SMESHGUI_MeshDlg::Mesh, aMeshName );
1740 // Get name of geometry object
1741 GEOM::GEOM_Object_var aGeomVar = SMESH::GetShapeOnMeshOrSubMesh( pObj );
1742 if ( !aGeomVar->_is_nil() )
1744 _PTR(SObject) aGeomSO = studyDS()->FindObjectID( aGeomVar->GetStudyEntry() );
1745 QString aShapeName = name( aGeomSO );
1746 myDlg->setObjectText( SMESHGUI_MeshDlg::Geom, aShapeName );
1750 // Get hypotheses and algorithms assigned to the mesh/sub-mesh
1751 QStringList anExisting;
1752 const int aDim = ( myIsOnGeometry ) ? SMESH::DIM_0D : SMESH::DIM_3D;
1753 for ( int dim = aDim; dim <= SMESH::DIM_3D; dim++ )
1756 existingHyps( dim, Algo, pObj, anExisting, myObjHyps[ dim ][ Algo ] );
1757 // find algo index among available ones
1759 if ( myObjHyps[ dim ][ Algo ].count() > 0 )
1761 SMESH::SMESH_Hypothesis_var aVar = myObjHyps[ dim ][ Algo ].first().first;
1762 HypothesisData* algoData = SMESH::GetHypothesisData( aVar->GetName() );
1763 aHypIndex = myAvailableHypData[ dim ][ Algo ].indexOf ( algoData );
1764 // if ( aHypIndex < 0 && algoData ) {
1765 // // assigned algo is incompatible with other algorithms
1766 // myAvailableHypData[ dim ][ Algo ].push_back( algoData );
1767 // aHypIndex = myAvailableHypData[ dim ][ hypType ].count() - 1;
1770 setCurrentHyp( dim, Algo, aHypIndex );
1771 // set existing and available hypothesis according to the selected algo
1772 onAlgoSelected( aHypIndex, dim );
1776 bool hypWithoutAlgo = false;
1777 for ( int dim = aDim; dim <= SMESH::DIM_3D; dim++ )
1779 for ( int hypType = MainHyp; hypType <= AddHyp; hypType++ )
1782 existingHyps( dim, hypType, pObj, anExisting, myObjHyps[ dim ][ hypType ] );
1783 // find index of requered hypothesis among existing ones for this dimension and type
1785 if ( myObjHyps[ dim ][ hypType ].count() > 0 ) {
1786 aHypIndex = find( myObjHyps[ dim ][ hypType ].first().first,
1787 myExistingHyps[ dim ][ hypType ] );
1788 if ( aHypIndex < 0 ) {
1789 // assigned hypothesis is incompatible with the algorithm
1790 if ( currentHyp( dim, Algo ) < 0 )
1791 { // none algo selected; it is edition for sure, of submesh maybe
1792 hypWithoutAlgo = true;
1793 myExistingHyps[ dim ][ hypType ].push_back( myObjHyps[ dim ][ hypType ].first() );
1794 aHypIndex = myExistingHyps[ dim ][ hypType ].count() - 1;
1795 myDlg->tab( dim )->setExistingHyps( hypType, anExisting );
1799 setCurrentHyp( dim, hypType, aHypIndex );
1802 // make available other hyps of same type as one without algo
1803 if ( hypWithoutAlgo )
1804 onAlgoSelected( currentHyp( 0, Algo ), 0 );
1807 //================================================================================
1809 * \brief Gets name of object
1810 * \param theSO - SObject
1811 * \retval QString - name of object
1813 * Gets name of object
1815 //================================================================================
1816 QString SMESHGUI_MeshOp::name( _PTR(SObject) theSO ) const
1821 _PTR(GenericAttribute) anAttr;
1822 _PTR(AttributeName) aNameAttr;
1823 if ( theSO->FindAttribute( anAttr, "AttributeName" ) )
1826 aResName = aNameAttr->Value().c_str();
1832 //================================================================================
1834 * \brief Finds hypothesis in input list
1835 * \param theHyp - hypothesis to be found
1836 * \param theHypList - input list of hypotheses
1837 * \retval int - index of hypothesis or -1 if it is not found
1839 * Finds position of hypothesis in input list
1841 //================================================================================
1842 int SMESHGUI_MeshOp::find( const SMESH::SMESH_Hypothesis_var& theHyp,
1843 const THypList& theHypList ) const
1846 if ( !theHyp->_is_nil() )
1849 THypList::const_iterator anIter = theHypList.begin();
1850 for ( ; anIter != theHypList.end(); ++ anIter)
1852 if ( theHyp->_is_equivalent( (*anIter).first ) )
1863 //================================================================================
1865 * \brief Edits mesh or sub-mesh
1866 * \param theMess - Output parameter intended for returning error message
1867 * \retval bool - TRUE if mesh is edited succesfully, FALSE otherwise
1869 * Assigns new name hypotheses and algoriths to the mesh or sub-mesh
1871 //================================================================================
1872 bool SMESHGUI_MeshOp::editMeshOrSubMesh( QString& theMess )
1876 SMESH::SMESH_Gen_var aSMESHGen = SMESHGUI::GetSMESHGen();
1877 if ( aSMESHGen->_is_nil() )
1880 QString anObjEntry = myDlg->selectedObject( SMESHGUI_MeshDlg::Obj );
1881 _PTR(SObject) pObj = studyDS()->FindObjectID( anObjEntry.toLatin1().data() );
1885 SUIT_OverrideCursor aWaitCursor;
1888 QString aName = myDlg->objectText( SMESHGUI_MeshDlg::Obj );
1889 SMESH::SetName( pObj, aName );
1890 int aDim = ( myIsOnGeometry ) ? SMESH::DIM_0D : SMESH::DIM_3D;
1892 // First, remove old algos in order to avoid messages on algorithm hiding
1893 for ( int dim = aDim; dim <= SMESH::DIM_3D; dim++ )
1895 if ( isAccessibleDim( dim ) && myObjHyps[ dim ][ Algo ].count() > 0 )
1897 SMESH::SMESH_Hypothesis_var anOldAlgo = myObjHyps[ dim ][ Algo ].first().first;
1898 SMESH::SMESH_Hypothesis_var anAlgoVar = getAlgo( dim );
1899 if ( anAlgoVar->_is_nil() || // no new algo selected or
1900 strcmp(anOldAlgo->GetName(), anAlgoVar->GetName()) ) // algo change
1902 // remove old algorithm
1903 SMESH::RemoveHypothesisOrAlgorithmOnMesh ( pObj, myObjHyps[ dim ][ Algo ].first().first );
1904 myObjHyps[ dim ][ Algo ].clear();
1909 // Assign new algorithms and hypotheses
1910 for ( int dim = aDim; dim <= SMESH::DIM_3D; dim++ )
1912 if ( !isAccessibleDim( dim )) continue;
1914 // find or create algorithm
1915 SMESH::SMESH_Hypothesis_var anAlgoVar = getAlgo( dim );
1917 // assign new algorithm
1918 if ( !anAlgoVar->_is_nil() && // some algo selected and
1919 myObjHyps[ dim ][ Algo ].count() == 0 ) // no algo assigned
1921 SALOMEDS_SObject* aSObject = _CAST(SObject, pObj);
1922 CORBA::Object_var anObject = aSObject->GetObject();
1923 SMESH::SMESH_Mesh_var aMeshVar = SMESH::SMESH_Mesh::_narrow( anObject );
1924 bool isMesh = !aMeshVar->_is_nil();
1926 SMESH::AddHypothesisOnMesh( aMeshVar, anAlgoVar );
1928 SMESH::SMESH_subMesh_var aVar =
1929 SMESH::SMESH_subMesh::_narrow( _CAST(SObject,pObj)->GetObject() );
1930 if ( !aVar->_is_nil() )
1931 SMESH::AddHypothesisOnSubMesh( aVar, anAlgoVar );
1933 myObjHyps[ dim ][ Algo ].append( THypItem( anAlgoVar, aName) );
1936 // assign hypotheses
1937 for ( int hypType = MainHyp; hypType <= AddHyp; hypType++ )
1939 int aNewHypIndex = currentHyp( dim, hypType );
1940 int anOldHypIndex = -1;
1942 // remove old hypotheses
1943 if ( myObjHyps[ dim ][ hypType ].count() > 0 )
1945 anOldHypIndex = find( myObjHyps[ dim ][ hypType ].first().first,
1946 myExistingHyps[ dim ][ hypType ] );
1947 if ( aNewHypIndex != anOldHypIndex || // different hyps
1948 anOldHypIndex == -1 ) // hyps of different algos
1950 SMESH::RemoveHypothesisOrAlgorithmOnMesh
1951 ( pObj, myObjHyps[ dim ][ hypType ].first().first );
1952 myObjHyps[ dim ][ hypType ].clear();
1956 // assign new hypotheses
1957 if ( aNewHypIndex != anOldHypIndex && aNewHypIndex != -1 )
1959 SMESH::SMESH_Mesh_var aMeshVar =
1960 SMESH::SMESH_Mesh::_narrow( _CAST(SObject,pObj)->GetObject() );
1961 bool isMesh = !aMeshVar->_is_nil();
1964 SMESH::AddHypothesisOnMesh
1965 (aMeshVar, myExistingHyps[ dim ][ hypType ][ aNewHypIndex ].first );
1969 SMESH::SMESH_subMesh_var aVar =
1970 SMESH::SMESH_subMesh::_narrow( _CAST(SObject,pObj)->GetObject() );
1971 if ( !aVar->_is_nil() )
1972 SMESH::AddHypothesisOnSubMesh
1973 ( aVar, myExistingHyps[ dim ][ hypType ][ aNewHypIndex ].first );
1976 // reread all hypotheses of mesh if necessary
1977 QStringList anExisting;
1978 existingHyps( dim, hypType, pObj, anExisting, myObjHyps[ dim ][ hypType ] );
1985 //================================================================================
1987 * \brief Verifies whether given operator is valid for this one
1988 * \param theOtherOp - other operation
1989 * \return Returns TRUE if the given operator is valid for this one, FALSE otherwise
1991 * method redefined from base class verifies whether given operator is valid for
1992 * this one (i.e. can be started "above" this operator). In current implementation method
1993 * retuns false if theOtherOp operation is not intended for deleting objects or mesh
1996 //================================================================================
1997 bool SMESHGUI_MeshOp::isValid( SUIT_Operation* theOp ) const
1999 return SMESHGUI_Operation::isValid( theOp ) && !theOp->inherits( "SMESHGUI_MeshOp" );
2002 //================================================================================
2004 * \brief SLOT. Is called when the user selects a way of geometry selection
2005 * \param theByMesh - true if the user wants to find geometry by mesh element
2007 //================================================================================
2009 void SMESHGUI_MeshOp::onGeomSelectionByMesh( bool theByMesh )
2012 if ( !myShapeByMeshOp ) {
2013 myShapeByMeshOp = new SMESHGUI_ShapeByMeshOp();
2014 connect(myShapeByMeshOp, SIGNAL(committed(SUIT_Operation*)),
2015 SLOT(onPublishShapeByMeshDlg(SUIT_Operation*)));
2016 connect(myShapeByMeshOp, SIGNAL(aborted(SUIT_Operation*)),
2017 SLOT(onCloseShapeByMeshDlg(SUIT_Operation*)));
2019 // set mesh object to SMESHGUI_ShapeByMeshOp and start it
2020 QString aMeshEntry = myDlg->selectedObject( SMESHGUI_MeshDlg::Mesh );
2021 if ( _PTR(SObject) pMesh = studyDS()->FindObjectID( aMeshEntry.toLatin1().data() )) {
2022 SMESH::SMESH_Mesh_var aMeshVar =
2023 SMESH::SMESH_Mesh::_narrow( _CAST( SObject,pMesh )->GetObject() );
2024 if ( !aMeshVar->_is_nil() ) {
2025 myDlg->hide(); // stop processing selection
2026 myShapeByMeshOp->setModule( getSMESHGUI() );
2027 myShapeByMeshOp->setStudy( 0 ); // it's really necessary
2028 myShapeByMeshOp->SetMesh( aMeshVar );
2029 myShapeByMeshOp->start();
2035 //================================================================================
2037 * \brief SLOT. Is called when Ok is pressed in SMESHGUI_ShapeByMeshDlg
2039 //================================================================================
2041 void SMESHGUI_MeshOp::onPublishShapeByMeshDlg(SUIT_Operation* op)
2043 if ( myShapeByMeshOp == op ) {
2044 SMESHGUI::GetSMESHGUI()->getApp()->updateObjectBrowser(); //MZN: 24.11.2006 IPAL13980 - Object Browser update added
2046 // Select a found geometry object
2047 GEOM::GEOM_Object_var aGeomVar = myShapeByMeshOp->GetShape();
2048 if ( !aGeomVar->_is_nil() )
2050 QString ID = aGeomVar->GetStudyEntry();
2051 if ( _PTR(SObject) aGeomSO = studyDS()->FindObjectID( ID.toLatin1().data() )) {
2052 selectObject( aGeomSO );
2059 //================================================================================
2061 * \brief SLOT. Is called when Close is pressed in SMESHGUI_ShapeByMeshDlg
2063 //================================================================================
2065 void SMESHGUI_MeshOp::onCloseShapeByMeshDlg(SUIT_Operation* op)
2067 if ( myShapeByMeshOp == op && myDlg ) {
2072 //================================================================================
2074 * \brief Selects a SObject
2075 * \param theSObj - the SObject to select
2077 //================================================================================
2079 void SMESHGUI_MeshOp::selectObject( _PTR(SObject) theSObj ) const
2081 if ( LightApp_SelectionMgr* sm = selectionMgr() ) {
2082 SALOME_ListIO anIOList;
2084 Handle(SALOME_InteractiveObject) anIO = new SALOME_InteractiveObject
2085 ( theSObj->GetID().c_str(), "SMESH", theSObj->GetName().c_str() );
2086 anIOList.Append( anIO );
2088 sm->setSelectedObjects( anIOList, false );