X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=bbtk_creaVtk_PKG%2Fsrc%2FbbcreaVtkMeshManager_tool.cxx;h=cf99baf507ec3ec1682307e9b77f521f25c262c8;hb=500bc2ff1c3fe51a9ce94324dee722fb2f7bfd36;hp=cb12791578fb80198f7e91ada973999e0e5f57e8;hpb=ccd9515764b83d719668120ccf8496a8fc6e804b;p=creaVtk.git diff --git a/bbtk_creaVtk_PKG/src/bbcreaVtkMeshManager_tool.cxx b/bbtk_creaVtk_PKG/src/bbcreaVtkMeshManager_tool.cxx index cb12791..cf99baf 100644 --- a/bbtk_creaVtk_PKG/src/bbcreaVtkMeshManager_tool.cxx +++ b/bbtk_creaVtk_PKG/src/bbcreaVtkMeshManager_tool.cxx @@ -26,26 +26,69 @@ void MeshManager_tool::Process() // (the one provided in the attribute 'type' of the tag 'input') // bbSetOutputOut( bbGetInputIn() ); // std::cout << "Output value = " <SetMeshBase( bbGetInputMesh() ); - } + if (bbGetInputTool()==10) // Undo + { + bbGetInputMeshManagerModel()->Undo(); + //printf("EED Warning! MeshManager_tool Undo Not implemented.\n"); + } // if Tool 10 Undo + + if (bbGetInputTool()==20) // Redo + { + bbGetInputMeshManagerModel()->Redo(); + //printf("EED Warning! MeshManager_tool Redo Not implemented.\n"); + } // if Tool 20 Redo - if (bbGetInputTool()==4) // Reset - { - printf("EED Warning! MeshManager_tool Reset Not implemented.\n"); - } + if (bbGetInputTool()==30) // Set + { + if (bbGetInputMesh()!=NULL){ + vtkPoints *points = bbGetInputMesh()->GetPoints(); + if (points!=NULL) + { + bbGetInputMeshManagerModel()->SetMeshBase( bbGetInputMesh() ); + } // if points!=NULL + } // Mesh!=NULL + } // if Tool 30 Set + + if (bbGetInputTool()==35) // Set memory mode + { + bbGetInputMeshManagerModel()->SetMeshMemoryMode( bbGetInputMesh() ); + } // if Tool 35 Set memory mode + + if (bbGetInputTool()==32) // Copy and Set + { + bbGetInputMeshManagerModel()->CopySetMeshBase( bbGetInputMesh() ); + } // if Tool 35 Set memory mode + + + if (bbGetInputTool()==40) // ResetMeshTemp + { + bbGetInputMeshManagerModel()->ResetMeshTemp(); + } // if Tool 40 Reset + + if(bbGetInputTool() == 50) // Set Array of Meshes + { + if(bbGetInputMeshes().size() > 1) + { + bbGetInputMeshManagerModel()->ReplaceMesh(bbGetInputMeshes()); + } + } + if(bbGetInputTool() == 60) // Select Mesh by Name + { + if(!bbGetInputStringParam().empty()) + { + bbGetInputMeshManagerModel()->SelectMeshByName(bbGetInputStringParam()); + } + } + if(bbGetInputTool() == 70) // Delete Current Mesh + { + bbGetInputMeshManagerModel()->DeleteCurrentMesh(); + } + } else { + printf("EED Warning! MeshManager_tool : MeshManagerModel not defined. \n"); + }// if MeshManagerModel != NULL } //===== @@ -59,32 +102,28 @@ void MeshManager_tool::bbUserSetDefaultValues() bbSetInputMesh(NULL); bbSetInputMeshManagerModel(NULL); } + //===== // Before editing this file, make sure it's a file of your own (i.e.: it wasn't generated from xml description; if so : your modifications will be lost) //===== void MeshManager_tool::bbUserInitializeProcessing() { - // THE INITIALIZATION METHOD BODY : // Here does nothing // but this is where you should allocate the internal/output pointers -// if any - - +// if any } //===== // Before editing this file, make sure it's a file of your own (i.e.: it wasn't generated from xml description; if so : your modifications will be lost) //===== void MeshManager_tool::bbUserFinalizeProcessing() { - // THE FINALIZATION METHOD BODY : // Here does nothing // but this is where you should desallocate the internal/output pointers // if any - -} } -// EO namespace bbcreaVtk + +} // EO namespace bbcreaVtk