Salome HOME
Issue #1739: Naming on faces not correct
[modules/shaper.git] / src / ModuleBase / ModuleBase_IModule.cpp
1 // Copyright (C) 2014-20xx CEA/DEN, EDF R&D
2
3
4 #include "ModuleBase_IModule.h"
5 #include "ModuleBase_IViewer.h"
6 #include "ModuleBase_ViewerPrs.h"
7 #include "ModuleBase_Operation.h"
8 #include "ModuleBase_ISelection.h"
9 #include "ModuleBase_OperationDescription.h"
10 #include "ModuleBase_OperationFeature.h"
11 #include "ModuleBase_ModelWidget.h"
12 #include "ModuleBase_WidgetFactory.h"
13 #include "ModuleBase_PageWidget.h"
14 #include "ModuleBase_Dialog.h"
15
16 #include <Events_Loop.h>
17
18 #include <ModelAPI_Events.h>
19 #include <ModelAPI_CompositeFeature.h>
20 #include <ModelAPI_Session.h>
21 #include "ModelAPI_Tools.h"
22
23 #include <Config_PointerMessage.h>
24 #include <Config_WidgetReader.h>
25 #include <Config_ModuleReader.h>
26
27 #include <QAction>
28 #include <QMainWindow>
29 #include <QDialog>
30 #include <QLayout>
31 #include <QDialogButtonBox>
32 #include <QPushButton>
33
34 ModuleBase_IModule::ModuleBase_IModule(ModuleBase_IWorkshop* theParent)
35   : QObject(theParent), myWorkshop(theParent) 
36 {
37   connect(myWorkshop, SIGNAL(selectionChanged()), this, SLOT(onSelectionChanged()));
38
39
40   //connect(myWorkshop->viewer(), SIGNAL(mousePress(QMouseEvent*)), this,
41   //        SLOT(onMousePressed(QMouseEvent*)));
42   //connect(myWorkshop->viewer(), SIGNAL(mouseRelease(QMouseEvent*)), this,
43   //        SLOT(onMouseReleased(QMouseEvent*)));
44   //connect(myWorkshop->viewer(), SIGNAL(mouseMove(QMouseEvent*)), this,
45   //        SLOT(onMouseMoved(QMouseEvent*)));
46   //connect(myWorkshop->viewer(), SIGNAL(keyRelease(QKeyEvent*)), this,
47   //        SLOT(onKeyRelease(QKeyEvent*)));
48   //connect(myWorkshop->viewer(), SIGNAL(mouseDoubleClick(QMouseEvent*)), this,
49   //        SLOT(onMouseDoubleClick(QMouseEvent*)));
50 }
51
52 void ModuleBase_IModule::launchModal(const QString& theCmdId)
53 {
54   if (!myWorkshop->canStartOperation(theCmdId))
55     return;
56
57   std::string aXmlCfg, aDescription;
58   getXMLRepresentation(theCmdId.toStdString(), aXmlCfg, aDescription);
59
60   SessionPtr aMgr = ModelAPI_Session::get();
61   aMgr->startOperation(theCmdId.toStdString());
62
63   ModuleBase_Dialog aDlg(myWorkshop, theCmdId, aXmlCfg);
64   if (aDlg.exec() == QDialog::Accepted)
65     aMgr->finishOperation();
66   else
67     aMgr->abortOperation();
68   myWorkshop->updateCommandStatus();
69 }
70
71
72 void ModuleBase_IModule::launchOperation(const QString& theCmdId)
73 {
74   /// selection should be obtained from workshop before ask if the operation can be started as
75   /// the canStartOperation method performs commit/abort of previous operation. Sometimes commit/abort
76   /// may cause selection clear(Sketch operation) as a result it will be lost and is not used for preselection.
77   ModuleBase_ISelection* aSelection = myWorkshop->selection();
78   QList<ModuleBase_ViewerPrsPtr> aPreSelected = aSelection->getSelected(ModuleBase_ISelection::AllControls);
79
80   if (!myWorkshop->canStartOperation(theCmdId))
81     return;
82
83   ModuleBase_OperationFeature* aFOperation = dynamic_cast<ModuleBase_OperationFeature*>
84                                              (createOperation(theCmdId.toStdString()));
85   if (aFOperation) {
86     aFOperation->initSelection(aPreSelected);
87
88     workshop()->processLaunchOperation(aFOperation);
89   }
90 }
91
92 Handle(AIS_InteractiveObject) ModuleBase_IModule::createPresentation(const ResultPtr& theResult)
93 {
94   return Handle(AIS_InteractiveObject)();
95 }
96
97 bool ModuleBase_IModule::canBeShaded(Handle(AIS_InteractiveObject) theAIS) const
98 {
99   return true;
100 }
101
102 QString ModuleBase_IModule::getFeatureError(const FeaturePtr& theFeature)
103 {
104   std::string aMsg = ModelAPI_Tools::getFeatureError(theFeature);
105   ModuleBase_Tools::translate(theFeature->getKind(), aMsg);
106
107   return aMsg.c_str();
108 }
109
110 void ModuleBase_IModule::grantedOperationIds(ModuleBase_Operation* theOperation,
111                                              QStringList& theIds) const
112 {
113 }
114
115 ModuleBase_Operation* ModuleBase_IModule::getNewOperation(const std::string& theFeatureId)
116 {
117   return new ModuleBase_OperationFeature(theFeatureId.c_str(), this);
118 }
119
120 bool ModuleBase_IModule::customizeObject(ObjectPtr theObject,
121                                          const ModuleBase_IModule::ModuleBase_CustomizeFlag& theFlag,
122                                          const bool theUpdateViewer)
123 {
124   return false;
125 }
126
127 ModuleBase_Operation* ModuleBase_IModule::createOperation(const std::string& theFeatureId)
128 {
129   ModuleBase_OperationFeature* aFOperation = dynamic_cast<ModuleBase_OperationFeature*>
130                                                           (getNewOperation(theFeatureId));
131   // If the operation is launched as sub-operation of another then we have to initialize
132   // parent feature
133   ModuleBase_OperationFeature* aCurOperation = dynamic_cast<ModuleBase_OperationFeature*>
134                                                          (myWorkshop->currentOperation());
135   if (aCurOperation) {
136     FeaturePtr aFeature = aCurOperation->feature();
137     CompositeFeaturePtr aCompFeature =
138         std::dynamic_pointer_cast<ModelAPI_CompositeFeature>(aFeature);
139     if (aCompFeature) {
140       aFOperation->setParentFeature(aCompFeature);
141     }
142   }
143
144   std::string aXmlCfg, aDescription;
145   getXMLRepresentation(theFeatureId, aXmlCfg, aDescription);
146   aFOperation->getDescription()->setDescription(QString::fromStdString(aDescription));
147   aFOperation->getDescription()->setXmlRepresentation(QString::fromStdString(aXmlCfg));
148
149   return aFOperation;
150 }
151
152 void ModuleBase_IModule::createFeatures()
153 {
154   registerValidators();
155   registerFilters();
156   registerProperties();
157
158   Config_ModuleReader aXMLReader = Config_ModuleReader();
159   aXMLReader.readAll();
160   myFeaturesInFiles = aXMLReader.featuresInFiles();
161 }
162
163
164 void ModuleBase_IModule::actionCreated(QAction* theFeature)
165 {
166   connect(theFeature, SIGNAL(triggered(bool)), this, SLOT(onFeatureTriggered()));
167 }
168
169 bool ModuleBase_IModule::canEraseObject(const ObjectPtr& theObject) const
170 {
171   return true;
172 }
173
174 bool ModuleBase_IModule::canDisplayObject(const ObjectPtr& theObject) const
175 {
176   return true;
177 }
178
179 bool ModuleBase_IModule::canUndo() const
180 {
181   SessionPtr aMgr = ModelAPI_Session::get();
182   return aMgr->hasModuleDocument() && aMgr->canUndo() && !aMgr->isOperation();
183 }
184
185 bool ModuleBase_IModule::canRedo() const
186 {
187   SessionPtr aMgr = ModelAPI_Session::get();
188   return aMgr->hasModuleDocument() && aMgr->canRedo() && !aMgr->isOperation();
189 }
190
191 void ModuleBase_IModule::onFeatureTriggered()
192 {
193   QAction* aCmd = dynamic_cast<QAction*>(sender());
194   //Do nothing on uncheck
195   if (aCmd->isCheckable() && !aCmd->isChecked()) {
196     ModuleBase_Operation* anOperation = myWorkshop->findStartedOperation(aCmd->data().toString());
197     if (myWorkshop->canStopOperation(anOperation))
198       myWorkshop->stopOperation(anOperation);
199     else {
200       aCmd->setChecked(true);
201     }
202   }
203   else {
204     QString aCmdId = aCmd->data().toString();
205     std::shared_ptr<Config_FeatureMessage> aInfo = myWorkshop->featureInfo(aCmdId);
206     if (aInfo.get() && aInfo->isModal()) {
207       launchModal(aCmdId);
208     } else {
209       launchOperation(aCmdId);
210       emit operationLaunched();
211     }
212   }
213 }
214
215 void ModuleBase_IModule::editFeature(FeaturePtr theFeature)
216 {
217   std::string aFeatureId = theFeature->getKind();
218   if (!myWorkshop->canStartOperation(aFeatureId.c_str()))
219     return;
220
221   ModuleBase_OperationFeature* aFOperation = dynamic_cast<ModuleBase_OperationFeature*>
222                                                          (createOperation(aFeatureId));
223   if (aFOperation) {
224     aFOperation->setFeature(theFeature);
225     workshop()->processLaunchOperation(aFOperation);
226   }
227 }
228
229 bool ModuleBase_IModule::canActivateSelection(const ObjectPtr& theObject) const
230 {
231   ModuleBase_OperationFeature* aFOperation = dynamic_cast<ModuleBase_OperationFeature*>
232                                                      (myWorkshop->currentOperation());
233   return !aFOperation || !aFOperation->hasObject(theObject);
234 }
235
236 void ModuleBase_IModule::operationResumed(ModuleBase_Operation* theOperation) 
237 {
238   emit resumed(theOperation);
239 }
240
241 void ModuleBase_IModule::getXMLRepresentation(const std::string& theFeatureId,
242                                               std::string& theXmlCfg, std::string& theDescription)
243 {
244   std::string aPluginFileName = myFeaturesInFiles[theFeatureId];
245   Config_WidgetReader aWdgReader = Config_WidgetReader(aPluginFileName);
246   aWdgReader.readAll();
247
248   theXmlCfg = aWdgReader.featureWidgetCfg(theFeatureId);
249   theDescription = aWdgReader.featureDescription(theFeatureId);
250 }