Salome HOME
Bug #846 Color modification in preferences is applyed to the visualized objects after...
[modules/shaper.git] / src / ModuleBase / ModuleBase_Operation.cpp
1 // Copyright (C) 2014-20xx CEA/DEN, EDF R&D
2
3 /*
4  * ModuleBase_Operation.cpp
5  *
6  *  Created on: Apr 2, 2014
7  *      Author: sbh
8  */
9
10 #include "ModuleBase_Operation.h"
11
12 #include "ModuleBase_OperationDescription.h"
13 #include "ModuleBase_ModelWidget.h"
14 #include "ModuleBase_ViewerPrs.h"
15 #include "ModuleBase_IPropertyPanel.h"
16 #include "ModuleBase_ISelection.h"
17 #include "ModuleBase_IViewer.h"
18
19 #include <ModelAPI_AttributeDouble.h>
20 #include <ModelAPI_Document.h>
21 #include <ModelAPI_Feature.h>
22 #include <ModelAPI_Data.h>
23 #include <ModelAPI_Document.h>
24 #include <ModelAPI_Events.h>
25 #include <ModelAPI_Result.h>
26 #include <ModelAPI_Object.h>
27 #include <ModelAPI_Validator.h>
28 #include <ModelAPI_Session.h>
29
30 #include <GeomAPI_Pnt2d.h>
31
32 #include <Events_Loop.h>
33
34 #include <QTimer>
35
36 #ifdef _DEBUG
37 #include <QDebug>
38 #endif
39
40 ModuleBase_Operation::ModuleBase_Operation(const QString& theId, QObject* theParent)
41     : QObject(theParent),
42       myIsModified(false),
43       myPropertyPanel(NULL)
44 {
45   myDescription = new ModuleBase_OperationDescription(theId);
46 }
47
48 ModuleBase_Operation::~ModuleBase_Operation()
49 {
50   delete myDescription;
51 }
52
53 const QStringList& ModuleBase_Operation::grantedOperationIds() const
54 {
55   return myGrantedIds;
56 }
57
58 void ModuleBase_Operation::setGrantedOperationIds(const QStringList& theList)
59 {
60   myGrantedIds = theList;
61 }
62
63 QString ModuleBase_Operation::id() const
64 {
65   return getDescription()->operationId();
66 }
67
68 bool ModuleBase_Operation::isValid() const
69 {
70   return true;
71 }
72
73 bool ModuleBase_Operation::canBeCommitted() const
74 {
75   return isValid();
76 }
77
78 void ModuleBase_Operation::start()
79 {
80   myIsModified = false;
81
82   ModelAPI_Session::get()->startOperation(id().toStdString());
83
84   startOperation();
85   emit started();
86 }
87
88 void ModuleBase_Operation::postpone()
89 {
90   postponeOperation();
91   emit postponed();
92 }
93
94 void ModuleBase_Operation::resume()
95 {
96   resumeOperation();
97   emit resumed();
98 }
99
100 void ModuleBase_Operation::abort()
101 {
102   // the viewer update should be blocked in order to avoid the features blinking before they are
103   // hidden
104   //std::shared_ptr<Events_Message> aMsg = std::shared_ptr<Events_Message>(
105   //    new Events_Message(Events_Loop::eventByName(EVENT_UPDATE_VIEWER_BLOCKED)));
106   //Events_Loop::loop()->send(aMsg);
107
108   ModelAPI_Session::get()->abortOperation();
109
110   emit stopped();
111   // the viewer update should be unblocked in order to avoid the features blinking before they are
112   // hidden
113   //aMsg = std::shared_ptr<Events_Message>(
114   //              new Events_Message(Events_Loop::eventByName(EVENT_UPDATE_VIEWER_UNBLOCKED)));
115   //Events_Loop::loop()->send(aMsg);
116
117   emit aborted();
118 }
119
120 bool ModuleBase_Operation::commit()
121 {
122   if (canBeCommitted()) {
123     SessionPtr aMgr = ModelAPI_Session::get();
124
125     commitOperation();
126     aMgr->finishOperation();
127
128     stopOperation();
129     emit stopped();
130     emit committed();
131
132     afterCommitOperation();
133     return true;
134   }
135   return false;
136 }
137
138 void ModuleBase_Operation::onValuesChanged()
139 {
140   myIsModified = true;
141 }
142
143 void ModuleBase_Operation::setPropertyPanel(ModuleBase_IPropertyPanel* theProp) 
144
145   myPropertyPanel = theProp; 
146 }
147
148 bool ModuleBase_Operation::isGranted(QString theId) const
149 {
150   return myGrantedIds.contains(theId);
151 }