X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=lib%2FInterface_ManagerContour_NDimensions%2FwxContourEventHandler.cxx;fp=lib%2FInterface_ManagerContour_NDimensions%2FwxContourEventHandler.cxx;h=36ff6c8d937276ac184139905641c80302a58f6f;hb=23633c5496dd702cc9b332468f5daba67d608aca;hp=2f1083117b6e2236fda37977a617ce18c1343133;hpb=c91ed4d5197ebbd405f169fbf5e4ca62cc1a30b4;p=creaContours.git diff --git a/lib/Interface_ManagerContour_NDimensions/wxContourEventHandler.cxx b/lib/Interface_ManagerContour_NDimensions/wxContourEventHandler.cxx index 2f10831..36ff6c8 100644 --- a/lib/Interface_ManagerContour_NDimensions/wxContourEventHandler.cxx +++ b/lib/Interface_ManagerContour_NDimensions/wxContourEventHandler.cxx @@ -84,7 +84,7 @@ digraph example_0 { // Includes //------------------------------------------------------------------------------------------------------------ -#include "wxContour_ActionCommnadsID.h" +#include "wxContour_ActionCommandsID.h" #include "NameWrapper.h" #include "ConceptDataWrap.h" #include "OutlineGroup.h" @@ -2068,7 +2068,7 @@ myfile.close(); std::vector tempVector; _instantPanel->getInstant( tempVector ); _performingOperation->reset(); - _performingOperation->setStartCommand( (char)wxContour_ActionCommnadsID::COPY_TOOL ); + _performingOperation->setStartCommand( (char)wxContour_ActionCommandsID::COPY_TOOL ); _performingOperation->setStartOperationInstantVector( tempVector ); _performingOperation->setKeyNamesOperationElems( keyNamesVector ); @@ -2077,7 +2077,7 @@ myfile.close(); void wxContourEventHandler :: onPasteOutlines( ) { char theStartCommand = _performingOperation->getStartCommand(); - if ( theStartCommand == wxContour_ActionCommnadsID::COPY_TOOL ) + if ( theStartCommand == wxContour_ActionCommandsID::COPY_TOOL ) { //JCP 20-10-08 Undo redo implementation saveState(); @@ -3101,35 +3101,35 @@ void wxContourEventHandler::OnInterpolation(wxCommandEvent& event) { std::vector currentSelection = _sceneManager->getSelectedObjects(); int elementsSelected = currentSelection.size(); - if( toolCommand == (wxContour_ActionCommnadsID::CREATE_TOOL) ) + if( toolCommand == (wxContour_ActionCommandsID::CREATE_TOOL) ) { onCreateContourFrame(); } - if( toolCommand == (wxContour_ActionCommnadsID::CREATE_CONTOUR_KEY) ) + if( toolCommand == (wxContour_ActionCommandsID::CREATE_CONTOUR_KEY) ) { createContour(); } - else if( toolCommand == wxContour_ActionCommnadsID::DELETE_TOOL ) + else if( toolCommand == wxContour_ActionCommandsID::DELETE_TOOL ) { onDeleteFrame( ); } - else if( toolCommand == wxContour_ActionCommnadsID::DELETE_KEY ) + else if( toolCommand == wxContour_ActionCommandsID::DELETE_KEY ) { deleteContours( currentSelection ); } - else if( toolCommand == wxContour_ActionCommnadsID::SAVE_TOOL ) + else if( toolCommand == wxContour_ActionCommandsID::SAVE_TOOL ) { saveFileWithContours( ); } - else if( toolCommand == wxContour_ActionCommnadsID::SAVE_KEY ) + else if( toolCommand == wxContour_ActionCommandsID::SAVE_KEY ) { saveFileWithContoursAutomatique( ); } - else if( toolCommand == wxContour_ActionCommnadsID::OPEN_TOOL ) + else if( toolCommand == wxContour_ActionCommandsID::OPEN_TOOL ) { openFileWithContours( ); } - else if( toolCommand == wxContour_ActionCommnadsID::CHANGE_TOOL ) + else if( toolCommand == wxContour_ActionCommandsID::CHANGE_TOOL ) { if ( elementsSelected >= 1 ) { @@ -3137,69 +3137,69 @@ void wxContourEventHandler::OnInterpolation(wxCommandEvent& event) } } - else if( toolCommand == wxContour_ActionCommnadsID::HIDE_TOOL ) + else if( toolCommand == wxContour_ActionCommandsID::HIDE_TOOL ) { if ( elementsSelected >= 1 ) { onHideOutlines( currentSelection ); } } - else if( toolCommand == wxContour_ActionCommnadsID::SHOW_TOOL ) + else if( toolCommand == wxContour_ActionCommandsID::SHOW_TOOL ) { if ( elementsSelected >= 1 ) { onShowOutlines( currentSelection ); } } - else if( toolCommand == wxContour_ActionCommnadsID::COPY_TOOL ) + else if( toolCommand == wxContour_ActionCommandsID::COPY_TOOL ) { if ( elementsSelected >= 1 ) { onCopyOutlines( currentSelection ); } } - else if( toolCommand == wxContour_ActionCommnadsID::PASTE_TOOL ) + else if( toolCommand == wxContour_ActionCommandsID::PASTE_TOOL ) { onPasteOutlines( ); } - else if( toolCommand == wxContour_ActionCommnadsID::SPREAD_TOOL ) + else if( toolCommand == wxContour_ActionCommandsID::SPREAD_TOOL ) { onSpread(); } - else if( toolCommand == wxContour_ActionCommnadsID::AUTOMATIQUESEGMENTATION_TOOL ) + else if( toolCommand == wxContour_ActionCommandsID::AUTOMATIQUESEGMENTATION_TOOL ) { onAutomatiqueSegmentation( ); } - else if( toolCommand == wxContour_ActionCommnadsID::SELECT_TOOL ) + else if( toolCommand == wxContour_ActionCommandsID::SELECT_TOOL ) { onSelectOutlines( currentSelection ); } - else if( toolCommand == wxContour_ActionCommnadsID::EDIT_TOOL ) + else if( toolCommand == wxContour_ActionCommandsID::EDIT_TOOL ) { if ( elementsSelected >= 1 ) { onEditOutlines( currentSelection ); } } - else if( toolCommand == wxContour_ActionCommnadsID::UNDO_TOOL ) + else if( toolCommand == wxContour_ActionCommandsID::UNDO_TOOL ) { onUNDO(); } - else if( toolCommand == wxContour_ActionCommnadsID::REDO_TOOL ) + else if( toolCommand == wxContour_ActionCommandsID::REDO_TOOL ) { onREDO(); } - else if( toolCommand == wxContour_ActionCommnadsID::INFORMATIONCONTOUR_TOOL ) + else if( toolCommand == wxContour_ActionCommandsID::INFORMATIONCONTOUR_TOOL ) { onInformationContourFrame(); } - else if( toolCommand == wxContour_ActionCommnadsID::INTERFACECONFIGURATION_TOOL ) + else if( toolCommand == wxContour_ActionCommandsID::INTERFACECONFIGURATION_TOOL ) { onInterfaceConfigurationFrame(); } - else if( toolCommand == wxContour_ActionCommnadsID::TEST_TOOL ) + else if( toolCommand == wxContour_ActionCommandsID::TEST_TOOL ) { onInterfaceTestFrame(); } @@ -3678,4 +3678,4 @@ void wxContourEventHandler :: onREDO() _InformationContourFrame->Show(false); } } -//JCP 21 - 10 - 09 \ No newline at end of file +//JCP 21 - 10 - 09