Salome HOME
Merge branch 'Dev_GroupsRevision'
[modules/shaper.git] / src / XGUI / XGUI_ModuleConnector.cpp
1 // Copyright (C) 2014-2017  CEA/DEN, EDF R&D
2 //
3 // This library is free software; you can redistribute it and/or
4 // modify it under the terms of the GNU Lesser General Public
5 // License as published by the Free Software Foundation; either
6 // version 2.1 of the License, or (at your option) any later version.
7 //
8 // This library is distributed in the hope that it will be useful,
9 // but WITHOUT ANY WARRANTY; without even the implied warranty of
10 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11 // Lesser General Public License for more details.
12 //
13 // You should have received a copy of the GNU Lesser General Public
14 // License along with this library; if not, write to the Free Software
15 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
16 //
17 // See http://www.salome-platform.org/ or
18 // email : webmaster.salome@opencascade.com<mailto:webmaster.salome@opencascade.com>
19 //
20
21 #include "XGUI_ModuleConnector.h"
22 #include "XGUI_Workshop.h"
23 #include "XGUI_ViewerProxy.h"
24 #include "XGUI_Selection.h"
25 #include "XGUI_SelectionActivate.h"
26 #include "XGUI_SelectionMgr.h"
27 #include "XGUI_OperationMgr.h"
28 #include "XGUI_Displayer.h"
29 #include "XGUI_PropertyPanel.h"
30 #include "XGUI_ActionsMgr.h"
31 #include "XGUI_ErrorMgr.h"
32
33 #include <ModuleBase_IModule.h>
34 #include <ModuleBase_ViewerPrs.h>
35 #include <ModuleBase_OperationDescription.h>
36
37 #include <AIS_Shape.hxx>
38
39 #ifndef HAVE_SALOME
40 #include "AppElements_Command.h"
41 #else
42 #include "XGUI_SalomeConnector.h"
43 #endif
44
45 XGUI_ModuleConnector::XGUI_ModuleConnector(XGUI_Workshop* theWorkshop)
46     : ModuleBase_IWorkshop(theWorkshop),
47       myWorkshop(theWorkshop)
48 {
49   XGUI_SelectionMgr* aSelector = myWorkshop->selector();
50   connect(aSelector, SIGNAL(selectionChanged()), this, SIGNAL(selectionChanged()));
51 }
52
53 XGUI_ModuleConnector::~XGUI_ModuleConnector()
54 {
55 }
56
57 ModuleBase_ISelection* XGUI_ModuleConnector::selection() const
58 {
59   return myWorkshop->selector()->selection();
60 }
61
62 ModuleBase_IModule* XGUI_ModuleConnector::module() const
63 {
64   return myWorkshop->module();
65 }
66
67 ModuleBase_IViewer* XGUI_ModuleConnector::viewer() const
68 {
69   return myWorkshop->viewer();
70 }
71
72 ModuleBase_IPropertyPanel* XGUI_ModuleConnector::propertyPanel() const
73 {
74   return myWorkshop->propertyPanel();
75 }
76
77 ModuleBase_IErrorMgr* XGUI_ModuleConnector::errorMgr() const
78 {
79   return myWorkshop->errorMgr();
80 }
81
82 ModuleBase_ISelectionActivate* XGUI_ModuleConnector::selectionActivate() const
83 {
84   return myWorkshop->selectionActivate();
85 }
86
87 ModuleBase_Operation* XGUI_ModuleConnector::currentOperation() const
88 {
89   return myWorkshop->operationMgr()->currentOperation();
90 }
91
92
93 QObjectPtrList XGUI_ModuleConnector::activeObjects(const QObjectPtrList& theObjList) const
94 {
95   QObjectPtrList aActiveOPbjects;
96   ModuleBase_IModule* aModule = myWorkshop->module();
97   // Activate objects only which can be activated
98   foreach (ObjectPtr aObj, theObjList) {
99     if (aModule->canActivateSelection(aObj))
100       aActiveOPbjects.append(aObj);
101   }
102   return aActiveOPbjects;
103 }
104
105 AISObjectPtr XGUI_ModuleConnector::findPresentation(const ObjectPtr& theObject) const
106 {
107   XGUI_Displayer* aDisp = myWorkshop->displayer();
108   return aDisp->getAISObject(theObject);
109 }
110
111 ObjectPtr XGUI_ModuleConnector::findPresentedObject(const AISObjectPtr& theAIS) const
112 {
113   XGUI_Displayer* aDisp = myWorkshop->displayer();
114   ObjectPtr anObject = aDisp->getObject(theAIS);
115   return anObject;
116 }
117
118 void XGUI_ModuleConnector::setSelected(const QList<ModuleBase_ViewerPrsPtr>& theValues)
119 {
120   XGUI_Displayer* aDisp = myWorkshop->displayer();
121   if (theValues.isEmpty()) {
122     myWorkshop->selector()->clearSelection();
123   } else
124     aDisp->setSelected(theValues);
125 }
126
127 void XGUI_ModuleConnector::setStatusBarMessage(const QString& theMessage)
128 {
129   myWorkshop->setStatusBarMessage(theMessage);
130 }
131
132 bool XGUI_ModuleConnector::canStartOperation(QString theId, bool& isCommitted)
133 {
134   return myWorkshop->operationMgr()->canStartOperation(theId, isCommitted);
135 }
136
137 void XGUI_ModuleConnector::processLaunchOperation(ModuleBase_Operation* theOperation)
138 {
139   XGUI_OperationMgr* anOperationMgr = workshop()->operationMgr();
140
141   if (anOperationMgr->startOperation(theOperation)) {
142     ModuleBase_OperationFeature* aFOperation =
143       dynamic_cast<ModuleBase_OperationFeature*>(theOperation);
144     if (aFOperation) {
145       workshop()->propertyPanel()->updateContentWidget(aFOperation->feature());
146       workshop()->propertyPanel()->createContentPanel(aFOperation->feature());
147     }
148     if (!theOperation->getDescription()->hasXmlRepresentation()) {
149       if (theOperation->commit())
150         workshop()->updateCommandStatus();
151     }
152   }
153 }
154
155 ModuleBase_Operation* XGUI_ModuleConnector::findStartedOperation(const QString& theId)
156 {
157   return myWorkshop->operationMgr()->findOperation(theId);
158 }
159
160 bool XGUI_ModuleConnector::canStopOperation(ModuleBase_Operation* theOperation)
161 {
162   return myWorkshop->operationMgr()->canStopOperation(theOperation);
163 }
164
165 void XGUI_ModuleConnector::stopOperation(ModuleBase_Operation* theOperation,
166                                          bool& isCommitted)
167 {
168   myWorkshop->operationMgr()->stopOperation(theOperation, isCommitted);
169 }
170
171 void XGUI_ModuleConnector::updateCommandStatus()
172 {
173   myWorkshop->updateCommandStatus();
174 }
175
176 QMainWindow* XGUI_ModuleConnector::desktop() const
177 {
178   return myWorkshop->desktop();
179 }
180
181 bool XGUI_ModuleConnector::hasSHIFTPressed() const
182 {
183   return myWorkshop->operationMgr()->hasSHIFTPressed();
184 }
185
186 std::shared_ptr<Config_FeatureMessage> XGUI_ModuleConnector::featureInfo(const QString& theId) const
187 {
188 #ifdef HAVE_SALOME
189   return myWorkshop->salomeConnector()->featureInfo(theId);
190 #else
191   AppElements_Command* aAction =
192     dynamic_cast<AppElements_Command*>(myWorkshop->actionsMgr()->action(theId));
193   if (aAction)
194     return aAction->featureMessage();
195   return std::shared_ptr<Config_FeatureMessage>();
196 #endif
197 }