myHypothesisFilter( 0 ),
myAlgorithmFilter( 0 )
{
+ setAutoResumed( true );
}
//=================================================================================
return aSubMesh._retn();
}
+
+//=================================================================================
+// function : isValid
+// purpose :
+//=================================================================================
+bool SMESHGUI_AddSubMeshOp::isValid( SUIT_Operation* theOtherOp ) const
+{
+ if ( theOtherOp && theOtherOp->inherits( "SMESHGUI_InitMeshOp" ) )
+ return true;
+ else
+ return false;
+
+}
virtual SalomeApp_Dialog* dlg() const;
void init();
+ virtual bool isValid( SUIT_Operation* theOtherOp ) const;
protected:
virtual void startOperation();
myHypothesisFilter( 0 ),
myAlgorithmFilter( 0 )
{
+ setAutoResumed( true );
}
//=================================================================================
myDlg->clearSelection( id );
}
}
+
+//=================================================================================
+// function : isValid
+// purpose :
+//=================================================================================
+bool SMESHGUI_InitMeshOp::isValid( SUIT_Operation* theOtherOp ) const
+{
+ if ( theOtherOp && theOtherOp->inherits( "SMESHGUI_AddSubMeshOp" ) )
+ return true;
+ else
+ return false;
+
+}
+
+
+
+
+
+
+
+
+
+
+
+
+
virtual SalomeApp_Dialog* dlg() const;
void init();
QString defaultMeshName() const;
+
+ virtual bool isValid( SUIT_Operation* theOtherOp ) const;
protected:
virtual void startOperation();