mirror of
https://git.salome-platform.org/gitpub/modules/smesh.git
synced 2025-04-08 10:57:26 +05:00
PAL13473 (Build repetitive mesh):
notify dependent submesh on successful COMPUTE event
This commit is contained in:
parent
df6acfab2c
commit
f4093a327f
@ -1913,7 +1913,8 @@ void SMESH_subMesh::DeleteOwnListeners()
|
|||||||
* \param hyp - hypothesis, if eventType is algo_event
|
* \param hyp - hypothesis, if eventType is algo_event
|
||||||
*
|
*
|
||||||
* The base implementation translates CLEAN event to the subMesh
|
* The base implementation translates CLEAN event to the subMesh
|
||||||
* stored in listener data
|
* stored in listener data. Also it sends SUBMESH_COMPUTED event in case of
|
||||||
|
* successful COMPUTE event.
|
||||||
*/
|
*/
|
||||||
//================================================================================
|
//================================================================================
|
||||||
|
|
||||||
@ -1923,9 +1924,19 @@ void SMESH_subMeshEventListener::ProcessEvent(const int event,
|
|||||||
EventListenerData* data,
|
EventListenerData* data,
|
||||||
SMESH_Hypothesis* /*hyp*/)
|
SMESH_Hypothesis* /*hyp*/)
|
||||||
{
|
{
|
||||||
if ( event == SMESH_subMesh::CLEAN && eventType == SMESH_subMesh::COMPUTE_EVENT )
|
if ( data && !data->mySubMeshes.empty() &&
|
||||||
if ( data && !data->mySubMeshes.empty() ) {
|
eventType == SMESH_subMesh::COMPUTE_EVENT)
|
||||||
ASSERT( data->mySubMeshes.front() != subMesh );
|
{
|
||||||
|
ASSERT( data->mySubMeshes.front() != subMesh );
|
||||||
|
switch ( event ) {
|
||||||
|
case SMESH_subMesh::CLEAN:
|
||||||
data->mySubMeshes.front()->ComputeStateEngine( event );
|
data->mySubMeshes.front()->ComputeStateEngine( event );
|
||||||
|
break;
|
||||||
|
case SMESH_subMesh::COMPUTE:
|
||||||
|
if ( subMesh->GetComputeState() == SMESH_subMesh::COMPUTE_OK )
|
||||||
|
data->mySubMeshes.front()->ComputeStateEngine( SMESH_subMesh::SUBMESH_COMPUTED );
|
||||||
|
break;
|
||||||
|
default:;
|
||||||
}
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
@ -55,7 +55,8 @@ public:
|
|||||||
* \param hyp - hypothesis, if eventType is algo_event
|
* \param hyp - hypothesis, if eventType is algo_event
|
||||||
*
|
*
|
||||||
* The base implementation translates CLEAN event to the subMesh stored
|
* The base implementation translates CLEAN event to the subMesh stored
|
||||||
* in the listener data
|
* in the listener data. Also it sends SUBMESH_COMPUTED event in case of
|
||||||
|
* successful COMPUTE event.
|
||||||
*/
|
*/
|
||||||
virtual void ProcessEvent(const int event,
|
virtual void ProcessEvent(const int event,
|
||||||
const int eventType,
|
const int eventType,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user