Salome HOME
871e2df122e9c1792de47a06f0aaf3b9beaa24f7
[modules/shaper.git] / src / XGUI / XGUI_Workshop.h
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 #ifndef XGUI_WORKSHOP_H
22 #define XGUI_WORKSHOP_H
23
24 #include "XGUI.h"
25 //#include "XGUI_Constants.h"
26 #include <ModuleBase_Definitions.h>
27 #include <ModelAPI_Document.h>
28 #include <ModelAPI_Feature.h>
29
30 #include <ModuleBase_ActionInfo.h>
31
32 #include <QObject>
33 #include <QMap>
34 #include <QKeySequence>
35 #include <QIcon>
36
37 #ifndef HAVE_SALOME
38 class AppElements_MainWindow;
39 class AppElements_Command;
40 class AppElements_Workbench;
41 #endif
42
43 class XGUI_ActionsMgr;
44 class XGUI_ContextMenuMgr;
45 class XGUI_Displayer;
46 class XGUI_ErrorDialog;
47 class XGUI_ErrorMgr;
48 class XGUI_MenuMgr;
49 class XGUI_ModuleConnector;
50 class XGUI_ObjectsBrowser;
51 class XGUI_OperationMgr;
52 class XGUI_PropertyPanel;
53 class XGUI_SalomeConnector;
54 class XGUI_SalomeViewer;
55 class XGUI_SelectionMgr;
56 class XGUI_ViewerProxy;
57 class XGUI_WorkshopListener;
58
59 class ModuleBase_IModule;
60 class ModuleBase_IViewer;
61 class ModuleBase_Operation;
62
63 class QWidget;
64 class QDockWidget;
65 class QMainWindow;
66
67 class QAction;
68 class Config_DataModelReader;
69
70 /**\class XGUI_Workshop
71  * \ingroup GUI
72  * \brief Class which defines a configuration of the application (Workshop) and launches it.
73  */
74 class XGUI_EXPORT XGUI_Workshop : public QObject
75 {
76 Q_OBJECT
77  public:
78   /// Constructor
79   /// \param theConnector a Salome connector object.
80   /// Used only if the workshop is launched in Salome environment
81   XGUI_Workshop(XGUI_SalomeConnector* theConnector = 0);
82   virtual ~XGUI_Workshop();
83
84   //! Starting of the application
85   void startApplication();
86
87   /// Activates the module controls. Should be called after module creation
88   void activateModule();
89
90   /// Deactivates the module controls. Should be called after module creation
91   void deactivateModule();
92
93 #ifndef HAVE_SALOME
94   //! Returns main window (Desktop) of the application
95   AppElements_MainWindow* mainWindow() const
96   {
97     return myMainWindow;
98   }
99
100   //! Creates and adds a new workbench (menu group) with the given name and returns it
101   AppElements_Workbench* addWorkbench(const QString& theName);
102 #endif
103
104   //! Returns selection manager object
105   XGUI_SelectionMgr* selector() const
106   {
107     return mySelector;
108   }
109
110   //! Returns displayer
111   XGUI_Displayer* displayer() const
112   {
113     return myDisplayer;
114   }
115
116   //! ! Returns operation manager.
117   XGUI_OperationMgr* operationMgr() const
118   {
119     return myOperationMgr;
120   }
121
122   //! ! Returns error manager.
123   XGUI_ErrorMgr* errorMgr() const
124   {
125     return myErrorMgr;
126   }
127
128   //! ! Returns an actions manager
129   XGUI_ActionsMgr* actionsMgr() const
130   {
131     return myActionsMgr;
132   }
133
134   //! ! Returns an actions manager
135   XGUI_MenuMgr* menuMgr() const
136   {
137     return myMenuMgr;
138   }
139
140   //! Returns property panel widget
141   XGUI_PropertyPanel* propertyPanel() const
142   {
143     return myPropertyPanel;
144   }
145
146   //! Returns context menu manager object
147   XGUI_ContextMenuMgr* contextMenuMgr() const
148   {
149     return myContextMenuMgr;
150   }
151
152   //! Returns an object which provides interface to Salome Module (LightApp_Module)
153   XGUI_SalomeConnector* salomeConnector() const
154   {
155     return mySalomeConnector;
156   }
157
158   //! Provides an object which provides interface to Salome Viewer
159   ModuleBase_IViewer* salomeViewer() const;
160
161   //! Returns true if the application works as SALOME module
162   bool isSalomeMode() const
163   {
164     return mySalomeConnector != 0;
165   }
166
167   //! Returns Object browser
168   XGUI_ObjectsBrowser* objectBrowser() const
169   {
170     return myObjectBrowser;
171   }
172
173   /// This method is called by Salome module when selection is changed
174   void salomeViewerSelectionChanged();
175
176   /// Returns viewer which unifies access as to Salome viewer as to standalone viewer
177   XGUI_ViewerProxy* viewer() const
178   {
179     return myViewerProxy;
180   }
181
182   /// Returns the module connector
183   /// \returns the instance of connector
184   XGUI_ModuleConnector* moduleConnector() const
185   {
186     return myModuleConnector;
187   }
188
189   /// Returns a desktop
190   /// \return a desktop instance
191   QMainWindow* desktop() const;
192
193   //! Delete features
194   void deleteObjects();
195
196   //! Searches for selected features unused in other (not selected) features. If one or several
197   //! selected features are found, a warning message proposes to delete them. It contains
198   //! the list of features to be deleted.
199   void cleanHistory();
200
201   //! Returns true if the selected feature can be moved to the position after the current feature
202   //! \return boolean value
203   bool canMoveFeature();
204
205   //! Move selected features to be after the current feature
206   void moveObjects();
207
208   //! Returns true if the object can be shaded. If the object is a compsolid result, the method
209   //! checks subobjects of the result
210   //! \return boolean value
211   bool canBeShaded(const ObjectPtr& theObject) const;
212
213   //! Returns true if there is at least one selected body/construction/group result
214   //! \param theActionName text of the checked action
215   //! \return boolean value
216   bool canChangeProperty(const QString& theActionName) const;
217
218   //! Change color of the results if it is possible
219   //! The operation is available for construction, body and group results
220   //! theObjects a list of selected objects
221   void changeColor(const QObjectPtrList& theObjects);
222
223   //! Change deflection of the results if it is possible
224   //! The operation is available for construction, body and group results
225   //! theObjects a list of selected objects
226   void changeDeflection(const QObjectPtrList& theObjects);
227
228   //! Change transparency of the results if it is possible
229   //! The operation is available for construction, body and group results
230   //! theObjects a list of selected objects
231   void changeTransparency(const QObjectPtrList& theObjects);
232
233   //! Show the given features in 3d Viewer
234   void showObjects(const QObjectPtrList& theList, bool isVisible);
235
236   //! Show the given features in 3d Viewer
237   void showOnlyObjects(const QObjectPtrList& theList);
238
239   /// Set display mode for the given objects
240   /// \param theList a list of displayed objects
241   /// \param theMode a mode to set (see \ref XGUI_Displayer)
242   void setDisplayMode(const QObjectPtrList& theList, int theMode);
243
244   /// Set selection mode in viewer. If theMode=-1 then activate default mode
245   /// \param theMode the selection mode (according to TopAbs_ShapeEnum)
246   void setViewerSelectionMode(int theMode);
247
248   /// Activates current selection mode for the given list of objects
249   void activateObjectsSelection(const QObjectPtrList& theList);
250
251   /// Returns current module
252   ModuleBase_IModule* module() const
253   {
254     return myModule;
255   }
256
257   /// Returns current directory which contains data files
258   QString currentDataDir() const { return myCurrentDir; }
259
260   /// Returns current directory which contains data files
261   void setCurrentDataDir(const QString& theDir) { myCurrentDir = theDir; }
262
263   /**
264   * Save the current document into a directory
265   * \param theName - path to the directory
266   * \param theFileNames - returned file names created in this directory
267   */
268   void saveDocument(const QString& theName, std::list<std::string>& theFileNames);
269
270   /**
271    * If there is an active (uncommitted) operation shows a prompt to abort it
272    * and performs abortion if user agreed. Returns true if
273    * - operation aborted successfully
274    * - there is no active operation
275    */
276   bool abortAllOperations();
277
278   /// Updates workshop state according to the started operation, e.g. visualizes the property panel
279   /// and connect to it.
280   /// \param theOpertion a started operation
281   void operationStarted(ModuleBase_Operation* theOperation);
282
283
284   //! Delete features. Delete the referenced features. There can be a question with a list of
285   //! referenced objects.
286   //! \param theFeatures a list of objects to be deleted
287   bool deleteFeatures(const QObjectPtrList& theFeatures);
288
289   /// Deactivates the object, if it is active and the module returns that the activation
290   /// of selection for the object is not possible currently(the current operation uses it)
291   /// \param theObject an object
292   /// \param theUpdateViewer a boolean flag to update viewer immediately
293   void deactivateActiveObject(const ObjectPtr& theObject, const bool theUpdateViewer);
294
295   /// Returns true if the action of the feature is created to contain Accept/Cancel button
296   /// \param theFeature a feature
297   bool isFeatureOfNested(const FeaturePtr& theFeature);
298
299   //! Shows the message in the status bar
300   //! \param theMessage a message
301   void setStatusBarMessage(const QString& theMessage);
302
303   /// Has to be called in order to display objects with visibility status = true
304   void synchronizeViewer();
305
306   /// Has to be called in order to display objects from a specifed group
307   /// with visibility status = true
308   /// \param theDoc the document for objects synchronisation
309   /// \param theGroup the group name
310   /// \param theUpdateViewer update viewer flag
311   void synchronizeGroupInViewer(const DocumentPtr& theDoc,
312                                 const std::string& theGroup,
313                                 bool theUpdateViewer);
314
315   /// Update the property panel content by the XML description of the operation and set the panel
316   /// into the operation
317   /// \param theOperation an operation
318   void fillPropertyPanel(ModuleBase_Operation* theOperation);
319
320   /// Connects or disconnects to the value changed signal of the property panel widgets
321   /// \param isToConnect a boolean value whether connect or disconnect
322   void connectToPropertyPanel(const bool isToConnect);
323
324   /// Returns defailt selection mode in 3d viewer
325   QIntList viewerSelectionModes() const { return myViewerSelMode; }
326
327   /// Highlights result objects in Object Browser according to
328   /// features found in the given list
329   void highlightResults(const QObjectPtrList& theObjects);
330
331   /// Highlights feature objects in Object Browser according to
332   /// features found in the given list
333   void highlightFeature(const QObjectPtrList& theObjects);
334
335   /// Returns Data Model XML reader which contains information about
336   /// Data structure configuration
337   const Config_DataModelReader* dataModelXMLReader() const { return myDataModelXMLReader; }
338
339   /// A constant string used for "Move to end" command definition
340   /// It is used for specific processing of Undo/Redo for this command.
341   static QString MOVE_TO_END_COMMAND;
342
343   //! Closes all in the current session and load the directory
344   //! \param theDirectory a path to directory
345   void openDirectory(const QString& theDirectory);
346
347 signals:
348   /// Emitted when selection happens in Salome viewer
349   void salomeViewerSelection();
350
351   //! the signal about the workshop actions states are updated.
352   void commandStatusUpdated();
353
354   //! the application is started
355   void applicationStarted();
356
357   //! Signal to update Undo history list
358   void updateUndoHistory(const QList<ActionInfo>&);
359
360   //! Signal to update Redo history list
361   void updateRedoHistory(const QList<ActionInfo>&);
362
363  public slots:
364    /// Update of commands status
365   void updateCommandStatus();
366
367   /// update history list (undo/redo commands)
368   void updateHistory();
369
370   /// Save current document
371   bool onSave();
372
373   /// Save current document to a file selected by user
374   bool onSaveAs();
375
376   /// Undo last command
377   void onUndo(int times = 1);
378
379   /// Redo previous command
380   void onRedo(int times = 1);
381
382   // Rebuild data tree
383   //void onRebuild();
384
385   /// Validates the operation to change the "Apply" button state.
386   /// \param thePreviousState the previous state of the widget
387   void onWidgetStateChanged(int thePreviousState);
388
389   /// Calls activate of the current widget again. It is possible that selection filters are
390   /// differs in the new state of paged container
391   void onValuesChanged();
392
393   /// Listens the corresponded signal of model widget and updates Apply button state by feature
394   void onWidgetObjectUpdated();
395
396   /// Show property panel
397   void showPropertyPanel();
398
399   /// Hide property panel
400   void hidePropertyPanel();
401
402   /// Show object Browser
403   void showObjectBrowser();
404
405   /// Hide object Browser
406   void hideObjectBrowser();
407
408   /// Close document
409   void closeDocument();
410
411   /// Open document from file
412   void onOpen();
413
414   /// Create a new document
415   void onNew();
416
417 #ifndef HAVE_SALOME
418   /// Exit application
419   void onExit();
420
421   /// Open preferences dialog box
422   void onPreferences();
423 #endif
424
425   /// Activates/deactivates the trihedron in the viewer AIS context
426   void onTrihedronVisibilityChanged(bool theState);
427
428   /// Apply the current transparency value if preview in transparency dialog is switched on
429   void onTransparencyValueChanged();
430
431   /// Switch on/off preview of transparency change
432   void onPreviewStateChanged();
433
434  protected:
435   /// Sets the granted operations for the parameter operation. Firstly, it finds the nested features
436   /// and set them into the operation. Secondly, it asks the module about ids of granted operations.
437   /// \param theOperation an operation
438    void setGrantedFeatures(ModuleBase_Operation* theOperation);
439
440 private:
441   /// Display all results
442   //void displayAllResults();
443
444   /// Display results from document
445   /// \param theDoc a document
446   void displayDocumentResults(DocumentPtr theDoc);
447
448   /// Display results from a group
449   void displayGroupResults(DocumentPtr theDoc, std::string theGroup);
450
451  private slots:
452   /// SLOT, that is called after the operation is started. Update workshop state according to
453   /// the started operation, e.g. visualizes the property panel and connect to it.
454   /// \param theOpertion a started operation
455   // void onOperationStarted(ModuleBase_Operation* theOperation);
456
457   /// SLOT, that is called after the operation is resumed. Update workshop state according to
458   /// the started operation, e.g. visualizes the property panel and connect to it.
459   /// \param theOpertion a resumed operation
460   virtual void onOperationResumed(ModuleBase_Operation* theOperation);
461
462   /// SLOT, that is called after the operation is stopped. Update workshop state, e.g.
463   /// hides the property panel and update the command status.
464   /// \param theOpertion a stopped operation
465   virtual void onOperationStopped(ModuleBase_Operation* theOperation);
466
467   /// SLOT, that is called after the operation is committed.
468   /// \param theOpertion a committed operation
469   virtual void onOperationCommitted(ModuleBase_Operation* theOperation);
470
471   /// SLOT, that is called after the operation is aborted.
472   /// \param theOpertion an aborted operation
473   void onOperationAborted(ModuleBase_Operation* theOperation);
474
475   /// Slot, which reacts to the context popup menu call
476   /// \param theId the data value of the clicked action
477   /// \param isChecked a state of toggle if the action is checkable
478   void onContextMenuCommand(const QString& theId, bool isChecked);
479
480   /// Set waiting cursor
481   void onStartWaiting();
482
483   /// Called by Ok button clicked in the property panel. Asks the error manager whether
484   /// the operation can be committed and do it if it returns true.
485   void onAcceptActionClicked();
486
487   /// Called by Preview button clicked in the property panel. Sends signal to model to
488   /// compute preview.
489   void onPreviewActionClicked();
490
491  private:
492    /// Init menu
493   void initMenu();
494
495   /// Register validators
496   void registerValidators() const;
497
498   /// Load module from external library
499   /// \param theModule name of the module
500   ModuleBase_IModule* loadModule(const QString& theModule);
501
502   /// Create module
503   bool createModule();
504
505   /// Create object browser widget
506   /// \param theParent a parent of widget
507   QDockWidget* createObjectBrowser(QWidget* theParent);
508
509   /// Create property panel widget
510   /// \param theParent a parent of widget
511   QDockWidget* createPropertyPanel(QWidget* theParent);
512
513   // Creates Dock widgets: Object browser and Property panel
514   void createDockWidgets();
515
516   //! Extends undo/redo toolbutton's with history menu
517   //! \param theObject - in the OpenParts it is a QToolButton by itself,
518   //! in salome mode - QAction that creates a button.
519   //! \param theSignal - void "updateUndoHistory" or "updateRedoHistory" SIGNAL;
520   //! \param theSlot - onUndo(int) or onRedo(int) SLOT
521   void addHistoryMenu(QObject* theObject, const char* theSignal, const char* theSlot);
522
523   //! Creates list of actions (commands) by given history list from session
524   QList<ActionInfo> processHistoryList(const std::list<std::string>&) const;
525
526 private:
527 #ifndef HAVE_SALOME
528   AppElements_MainWindow* myMainWindow;
529 #endif
530
531   ModuleBase_IModule* myModule;
532   XGUI_ErrorMgr* myErrorMgr;
533   XGUI_ObjectsBrowser* myObjectBrowser;
534   XGUI_PropertyPanel* myPropertyPanel;
535   XGUI_SelectionMgr* mySelector;
536   XGUI_Displayer* myDisplayer;
537   XGUI_OperationMgr* myOperationMgr;  ///< manager to manipulate through the operations
538   XGUI_ActionsMgr* myActionsMgr;
539   XGUI_MenuMgr* myMenuMgr; ///< manager to build menu/tool bar using order defined in XML
540   XGUI_SalomeConnector* mySalomeConnector;
541   XGUI_ErrorDialog* myErrorDlg;
542   XGUI_ViewerProxy* myViewerProxy;
543   XGUI_ContextMenuMgr* myContextMenuMgr;
544   XGUI_ModuleConnector* myModuleConnector;
545   XGUI_WorkshopListener* myEventsListener;
546
547   QString myCurrentDir;
548
549   QIntList myViewerSelMode;
550
551   Config_DataModelReader* myDataModelXMLReader;
552 };
553
554 #endif