Salome HOME
Merge branch 'Dev_0.6.1' of newgeom:newgeom into Dev_0.6.1
[modules/shaper.git] / src / XGUI / XGUI_ModuleConnector.cpp
index 23ba4ead7a63aba7965164f64892be0867a57719..970cb045c6aad989e23ec9d9b9dbe54ace120437 100644 (file)
@@ -24,17 +24,6 @@ XGUI_ModuleConnector::XGUI_ModuleConnector(XGUI_Workshop* theWorkshop)
   
   XGUI_OperationMgr* anOperationMgr = myWorkshop->operationMgr();
 
-  connect(anOperationMgr, SIGNAL(operationStarted(ModuleBase_Operation*)), 
-          SIGNAL(operationStarted(ModuleBase_Operation*)));
-  connect(anOperationMgr, SIGNAL(operationStopped(ModuleBase_Operation*)), 
-          SIGNAL(operationStopped(ModuleBase_Operation*)));
-  connect(anOperationMgr, SIGNAL(operationResumed(ModuleBase_Operation*)), 
-          SIGNAL(operationResumed(ModuleBase_Operation*)));
-  connect(anOperationMgr, SIGNAL(operationComitted(ModuleBase_Operation*)), 
-          SIGNAL(operationComitted(ModuleBase_Operation*)));
-  connect(anOperationMgr, SIGNAL(operationAborted(ModuleBase_Operation*)), 
-          SIGNAL(operationAborted(ModuleBase_Operation*)));
-
   //myDocumentShapeFilter = new ModuleBase_ShapeDocumentFilter(this);
 }
 
@@ -68,8 +57,8 @@ void XGUI_ModuleConnector::activateSubShapesSelection(const QIntList& theTypes)
 {
   XGUI_Displayer* aDisp = myWorkshop->displayer();
   // Close context if it was opened in order to clear stsndard selection modes
-  aDisp->closeLocalContexts(false);
-  aDisp->openLocalContext();
+  //aDisp->closeLocalContexts(false);
+  //aDisp->openLocalContext();
   // Convert shape types to selection types
   QIntList aModes;
   foreach(int aType, theTypes) {
@@ -85,7 +74,7 @@ void XGUI_ModuleConnector::deactivateSubShapesSelection()
   XGUI_Displayer* aDisp = myWorkshop->displayer();
   // The document limitation selection has to be only during operation
   //aDisp->removeSelectionFilter(myDocumentShapeFilter);
-  aDisp->closeLocalContexts(false);
+  //aDisp->closeLocalContexts(false);
 }
 
 AISObjectPtr XGUI_ModuleConnector::findPresentation(const ObjectPtr& theObject) const