Salome HOME
Commit of the current operation if the preselection is activated.
[modules/shaper.git] / src / XGUI / XGUI_ModuleConnector.cpp
1 // File:        XGUI_ModuleConnector.cpp
2 // Created:     3 June 2014
3 // Author:      Vitaly Smetannikov
4
5 #include "XGUI_ModuleConnector.h"
6 #include "XGUI_Workshop.h"
7 #include "XGUI_ViewerProxy.h"
8 #include "XGUI_SelectionMgr.h"
9 #include "XGUI_Selection.h"
10 #include "XGUI_OperationMgr.h"
11 #include "XGUI_Displayer.h"
12
13 #include <AIS_Shape.hxx>
14
15
16 XGUI_ModuleConnector::XGUI_ModuleConnector(XGUI_Workshop* theWorkshop)
17     : ModuleBase_IWorkshop(theWorkshop),
18       myWorkshop(theWorkshop)
19 {
20   XGUI_SelectionMgr* aSelector = myWorkshop->selector();
21   connect(aSelector, SIGNAL(selectionChanged()), this, SIGNAL(selectionChanged()));
22   
23   XGUI_OperationMgr* anOperationMgr = myWorkshop->operationMgr();
24
25   //myDocumentShapeFilter = new ModuleBase_ShapeDocumentFilter(this);
26 }
27
28 XGUI_ModuleConnector::~XGUI_ModuleConnector()
29 {
30   //myDocumentShapeFilter.Nullify();
31 }
32
33 ModuleBase_ISelection* XGUI_ModuleConnector::selection() const
34 {
35   return myWorkshop->selector()->selection();
36 }
37
38 ModuleBase_IModule* XGUI_ModuleConnector::module() const
39 {
40   return myWorkshop->module();
41 }
42
43 ModuleBase_IViewer* XGUI_ModuleConnector::viewer() const
44 {
45   return myWorkshop->viewer();
46 }
47
48 ModuleBase_Operation* XGUI_ModuleConnector::currentOperation() const
49 {
50   return myWorkshop->operationMgr()->currentOperation();
51 }
52
53
54 void XGUI_ModuleConnector::activateSubShapesSelection(const QIntList& theTypes)
55 {
56   XGUI_Displayer* aDisp = myWorkshop->displayer();
57   // Close context if it was opened in order to clear stsndard selection modes
58   aDisp->closeLocalContexts(false);
59   aDisp->openLocalContext();
60   // Convert shape types to selection types
61   QIntList aModes;
62   foreach(int aType, theTypes) {
63     aModes.append(AIS_Shape::SelectionMode((TopAbs_ShapeEnum)aType));
64   }
65   aDisp->activateObjects(aModes);
66   //TODO: We have to open Local context because at neutral point filters don't work (bug 25340)
67   //aDisp->addSelectionFilter(myDocumentShapeFilter);
68 }
69
70 void XGUI_ModuleConnector::deactivateSubShapesSelection()
71 {
72   XGUI_Displayer* aDisp = myWorkshop->displayer();
73   // The document limitation selection has to be only during operation
74   //aDisp->removeSelectionFilter(myDocumentShapeFilter);
75   aDisp->closeLocalContexts(false);
76 }
77
78 AISObjectPtr XGUI_ModuleConnector::findPresentation(const ObjectPtr& theObject) const
79 {
80   XGUI_Displayer* aDisp = myWorkshop->displayer();
81   return aDisp->getAISObject(theObject);
82 }
83
84 ObjectPtr XGUI_ModuleConnector::findPresentedObject(const AISObjectPtr& theAIS) const
85 {
86   XGUI_Displayer* aDisp = myWorkshop->displayer();
87   return aDisp->getObject(theAIS);
88 }
89
90 void XGUI_ModuleConnector::setSelected(const QObjectPtrList& theFeatures)
91 {
92   XGUI_Displayer* aDisp = myWorkshop->displayer();
93   aDisp->setSelected(theFeatures);
94 }
95
96 bool XGUI_ModuleConnector::canStartOperation(QString theId)
97 {
98   return myWorkshop->operationMgr()->canStartOperation(theId);
99 }