Salome HOME
Simplified calculation of fly out distance and creation of constraints limited only...
[modules/shaper.git] / src / XGUI / XGUI_Workshop.h
1 // Copyright (C) 2014-20xx CEA/DEN, EDF R&D -->
2
3 #ifndef XGUI_WORKSHOP_H
4 #define XGUI_WORKSHOP_H
5
6 #include "XGUI.h"
7 //#include "XGUI_Constants.h"
8 #include <ModuleBase_Definitions.h>
9 #include <ModelAPI_Document.h>
10 #include <ModelAPI_Feature.h>
11
12 #include <ModuleBase_ActionInfo.h>
13
14 #include <QObject>
15 #include <QMap>
16 #include <QKeySequence>
17 #include <QIcon>
18
19 class AppElements_MainWindow;
20 class AppElements_Command;
21 class AppElements_Workbench;
22
23 class XGUI_ActionsMgr;
24 class XGUI_ContextMenuMgr;
25 class XGUI_Displayer;
26 class XGUI_ErrorDialog;
27 class XGUI_ErrorMgr;
28 class XGUI_ModuleConnector;
29 class XGUI_ObjectsBrowser;
30 class XGUI_OperationMgr;
31 class XGUI_PropertyPanel;
32 class XGUI_SalomeConnector;
33 class XGUI_SalomeViewer;
34 class XGUI_SelectionMgr;
35 class XGUI_ViewerProxy;
36 class XGUI_WorkshopListener;
37
38 class ModuleBase_IModule;
39 class ModuleBase_IViewer;
40 class ModuleBase_Operation;
41
42 class QWidget;
43 class QDockWidget;
44 class QMainWindow;
45
46 class QAction;
47
48 /**\class XGUI_Workshop
49  * \ingroup GUI
50  * \brief Class which defines a configuration of the application (Workshop) and launches it.
51  */
52 class XGUI_EXPORT XGUI_Workshop : public QObject
53 {
54 Q_OBJECT
55  public:
56   /// Constructor
57   /// \param theConnector a Salome connector object. 
58   /// Used only if the workshop is launched in Salome environment
59   XGUI_Workshop(XGUI_SalomeConnector* theConnector = 0);
60   virtual ~XGUI_Workshop();
61
62   //! Starting of the application
63   void startApplication();
64
65   // Activates the module controls. Should be called after module creation
66   void activateModule();
67
68   // Deactivates the module controls. Should be called after module creation
69   void deactivateModule();
70
71   //! Returns main window (Desktop) of the application
72   AppElements_MainWindow* mainWindow() const
73   {
74     return myMainWindow;
75   }
76
77   //! Returns selection manager object
78   XGUI_SelectionMgr* selector() const
79   {
80     return mySelector;
81   }
82
83   //! Returns displayer
84   XGUI_Displayer* displayer() const
85   {
86     return myDisplayer;
87   }
88
89   //! ! Returns operation manager.
90   XGUI_OperationMgr* operationMgr() const
91   {
92     return myOperationMgr;
93   }
94
95   //! ! Returns error manager.
96   XGUI_ErrorMgr* errorMgr() const
97   {
98     return myErrorMgr;
99   }
100
101   //! ! Returns an actions manager
102   XGUI_ActionsMgr* actionsMgr() const
103   {
104     return myActionsMgr;
105   }
106
107   //! Returns property panel widget
108   XGUI_PropertyPanel* propertyPanel() const
109   {
110     return myPropertyPanel;
111   }
112
113   //! Returns context menu manager object
114   XGUI_ContextMenuMgr* contextMenuMgr() const
115   {
116     return myContextMenuMgr;
117   }
118
119   //! Creates and adds a new workbench (menu group) with the given name and returns it
120   AppElements_Workbench* addWorkbench(const QString& theName);
121
122   //! Returns an object which provides interface to Salome Module (LightApp_Module)
123   XGUI_SalomeConnector* salomeConnector() const
124   {
125     return mySalomeConnector;
126   }
127
128   //! Provides an object which provides interface to Salome Viewer
129   ModuleBase_IViewer* salomeViewer() const;
130
131   //! Returns true if the application works as SALOME module
132   bool isSalomeMode() const
133   {
134     return mySalomeConnector != 0;
135   }
136
137   //! Returns Object browser
138   XGUI_ObjectsBrowser* objectBrowser() const
139   {
140     return myObjectBrowser;
141   }
142
143   /// This method is called by Salome module when selection is changed
144   void salomeViewerSelectionChanged();
145
146   /// Returns viewer which unifies access as to Salome viewer as to standalone viewer
147   XGUI_ViewerProxy* viewer() const
148   {
149     return myViewerProxy;
150   }
151
152   /// Returns the module connectory
153   /// \returns the instance of connector
154   XGUI_ModuleConnector* moduleConnector() const
155   {
156     return myModuleConnector;
157   }
158
159   /// Returns a desktop
160   /// \return a desktop instance
161   QMainWindow* desktop() const;
162
163   //! Delete features
164   void deleteObjects();
165
166   //! Returns true if the selected feature can be moved to the position after the current feature
167   //! \return boolean value
168   bool canMoveFeature();
169
170   //! Move selected features to be after the current feature
171   void moveObjects();
172
173   //! Returns true if the object can be shaded. If the object is a compsolid result, the method
174   //! checks subobjects of the result
175   //! \return boolean value
176   bool canBeShaded(const ObjectPtr& theObject) const;
177
178   //! Returns true if there is at least one selected body/construction/group result
179   //! \return boolean value
180   bool canChangeColor() const;
181
182   //! Change color of the features if it is possible
183   //! The operation is available for construction, body and group results
184   //! theObjects a list of selected objects
185   void changeColor(const QObjectPtrList& theObjects);
186
187   //! Show the given features in 3d Viewer
188   void showObjects(const QObjectPtrList& theList, bool isVisible);
189
190   //! Show the given features in 3d Viewer
191   void showOnlyObjects(const QObjectPtrList& theList);
192
193   /// Set display mode for the given onjects
194   /// \param theList a list of displayed objects
195   /// \param theMode a mode to set (see \ref XGUI_Displayer)
196   void setDisplayMode(const QObjectPtrList& theList, int theMode);
197
198   /// Returns current module
199   ModuleBase_IModule* module() const
200   {
201     return myModule;
202   }
203
204   /// Returns current directory whic contains data files
205   QString currentDataDir() const { return myCurrentDir; }
206
207   /// Returns current directory whic contains data files
208   void setCurrentDataDir(const QString& theDir) { myCurrentDir = theDir; }
209
210   /**
211   * Save the current document into a directory
212   * \param theName - path to the directory
213   * \param theFileNames - returned file names created in this directory
214   */
215   void saveDocument(const QString& theName, std::list<std::string>& theFileNames);
216
217   /**
218    * If there is an active (uncommited) operation shows a prompt to abort it
219    * and performs abortion if user agreed. Returns true if
220    * - operation aborted successfully
221    * - there is no active operation
222    */
223   bool abortAllOperations();
224
225   //! Delete features. Delete the referenced features. There can be a question with a list of referenced
226   //! objects.
227   //! \param theList an objects to be deleted
228   //! \param theIgnoredFeatures a list of features to be ignored during delete
229   //! \param theParent a parent widget for the question message box
230   //! \param theAskAboutDeleteReferences if true, the message box with a list of references to the
231   //! objects features appear. If the user chose do not continue, the deletion is not performed
232   //! \return the success of the delete 
233   bool deleteFeatures(const QObjectPtrList& theList,
234                       const std::set<FeaturePtr>& theIgnoredFeatures = std::set<FeaturePtr>(),
235                       QWidget* theParent = 0,
236                       const bool theAskAboutDeleteReferences = false);
237
238   /// Deactivates the object, if it is active and the module returns that the activation
239   /// of selection for the object is not possible currently(the current operation uses it)
240   /// \param theObject an object
241   /// \param theUpdateViewer a boolean flag to update viewer immediately
242   void deactivateActiveObject(const ObjectPtr& theObject, const bool theUpdateViewer);
243
244   /// Returns true if the action of the feature is created to contain Accept/Cancel button
245   /// \param theFeature a feature
246   bool isFeatureOfNested(const FeaturePtr& theFeature);
247
248 signals:
249   /// Emitted when selection happens in Salome viewer
250   void salomeViewerSelection();
251
252   /// Emitted when error in applivation happens
253   void errorOccurred(const QString&);
254
255   //! the signal about the workshop actions states are updated.
256   void commandStatusUpdated();
257
258   //! the application is started
259   void applicationStarted();
260
261   //! Signal to update Undo history list
262   void updateUndoHistory(const QList<ActionInfo>&);
263
264   //! Signal to update Redo history list
265   void updateRedoHistory(const QList<ActionInfo>&);
266
267  public slots:
268    /// Update of commands status
269   void updateCommandStatus();
270
271   /// update history list (undo/redo commands)
272   void updateHistory();
273
274   /// Create a new dokument
275   void onNew();
276
277   /// Open document from file
278   void onOpen();
279
280   /// Save current document
281   bool onSave();
282
283   /// Save current document to a file selected by user
284   bool onSaveAs();
285
286   /// Exit application
287   void onExit();
288
289   /// Undo last command
290   void onUndo(int times = 1);
291
292   /// Redo previous command
293   void onRedo(int times = 1);
294
295   /// Rebuild data tree
296   void onRebuild();
297
298   /// Open preferences dialog box
299   void onPreferences();
300
301   /// Show property panel
302   void showPropertyPanel();
303
304   /// Hide property panel
305   void hidePropertyPanel();
306
307   /// Show object Browser
308   void showObjectBrowser();
309
310   /// Hide object Browser
311   void hideObjectBrowser();
312
313   /// Close document
314   void closeDocument();
315
316  protected:
317   /// Sets the granted operations for the parameter operation. Firtsly, it finds the nested features
318   /// and set them into the operation. Secondly, it asks the module about ids of granted operations.
319   /// \param theOperation an operation
320    void setGrantedFeatures(ModuleBase_Operation* theOperation);
321
322   /// Update the property panel content by the XML description of the operation and set the panel
323   /// into the operation
324   /// \param theOperation an operation
325   void setPropertyPanel(ModuleBase_Operation* theOperation);
326
327 private:
328   /// Display all results
329   //void displayAllResults();
330
331   /// Displau results from document
332   /// \param theDoc a document
333   void displayDocumentResults(DocumentPtr theDoc);
334
335   /// Display results from a group
336   void displayGroupResults(DocumentPtr theDoc, std::string theGroup);
337
338  private slots:
339   /// SLOT, that is called after the operation is started. Update workshop state according to
340   /// the started operation, e.g. visualizes the property panel and connect to it.
341   /// \param theOpertion a started operation
342   void onOperationStarted(ModuleBase_Operation* theOperation);
343
344   /// SLOT, that is called after the operation is resumed. Update workshop state according to
345   /// the started operation, e.g. visualizes the property panel and connect to it.
346   /// \param theOpertion a resumed operation
347   virtual void onOperationResumed(ModuleBase_Operation* theOperation);
348
349   /// SLOT, that is called after the operation is stopped. Update workshop state, e.g.
350   /// hides the property panel and udpate the command status.
351   /// \param theOpertion a stopped operation
352   virtual void onOperationStopped(ModuleBase_Operation* theOperation);
353
354   /// SLOT, that is called after the operation is committed.
355   /// \param theOpertion a commmitted operation
356   virtual void onOperationCommitted(ModuleBase_Operation* theOperation);
357
358   /// SLOT, that is called after the operation is aborted.
359   /// \param theOpertion an aborted operation
360   void onOperationAborted(ModuleBase_Operation* theOperation);
361
362   /// Slot, which reacts to the context popup menu call
363   /// \param theId the data value of the clicked action
364   /// \param isChecked a state of toggle if the action is checkable
365   void onContextMenuCommand(const QString& theId, bool isChecked);
366
367   /// Set waiting cursor
368   void onStartWaiting();
369
370   /// Called by Ok button clicked in the property panel. Asks the error manager whether
371   /// the operation can be commited and do it if it returns true.
372   void onAcceptActionClicked();
373
374   /// Listens the corresponded signal from operation manager and send it with the Ok
375   /// action to operation manager.
376   /// \param theEnabled an enabled state for the action
377   //void onValidationStateChanged(bool theEnabled);
378
379   //connect(myOperationMgr,  SIGNAL(validationStateChanged(bool)),
380   //        aOkAct,          SLOT(setEnabled(bool)));
381
382
383  private:
384    /// Init menu
385   void initMenu();
386
387   /// Register validators
388   void registerValidators() const;
389
390   /// Load module from external library
391   /// \param theModule name of the module
392   ModuleBase_IModule* loadModule(const QString& theModule);
393
394   /// Create module
395   bool createModule();
396
397   /// Create object browser widget
398   /// \param theParent a parent of widget
399   QDockWidget* createObjectBrowser(QWidget* theParent);
400
401   /// Create property panel widget
402   /// \param theParent a parent of widget
403   QDockWidget* createPropertyPanel(QWidget* theParent);
404
405   // Creates Dock widgets: Object browser and Property panel
406   void createDockWidgets();
407
408   //! Extends undo/redo toolbutton's with history menu
409   //! \param theObject - in the OpenParts it is a QToolButton by itself,
410   //! in salome mode - QAction that creates a button.
411   //! \param theSignal - void "updateUndoHistory" or "updateRedoHistory" SIGNAL;
412   //! \param theSlot - onUndo(int) or onRedo(int) SLOT
413   void addHistoryMenu(QObject* theObject, const char* theSignal, const char* theSlot);
414
415   //! Creates list of actions (commands) by given history list from session
416   QList<ActionInfo> processHistoryList(const std::list<std::string>&) const;
417
418 private:
419   AppElements_MainWindow* myMainWindow;
420   ModuleBase_IModule* myModule;
421   XGUI_ErrorMgr* myErrorMgr;
422   XGUI_ObjectsBrowser* myObjectBrowser;
423   XGUI_PropertyPanel* myPropertyPanel;
424   XGUI_SelectionMgr* mySelector;
425   XGUI_Displayer* myDisplayer;
426   XGUI_OperationMgr* myOperationMgr;  ///< manager to manipulate through the operations
427   XGUI_ActionsMgr* myActionsMgr;
428   XGUI_SalomeConnector* mySalomeConnector;
429   XGUI_ErrorDialog* myErrorDlg;
430   XGUI_ViewerProxy* myViewerProxy;
431   XGUI_ContextMenuMgr* myContextMenuMgr;
432   XGUI_ModuleConnector* myModuleConnector;
433   XGUI_WorkshopListener* myEventsListener;
434
435   QString myCurrentDir;
436 };
437
438 #endif