]> SALOME platform Git repositories - modules/shaper.git/blob - src/XGUI/XGUI_Workshop.h
Salome HOME
Issue #905 Update of invalid feature representation in property panel
[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 signals:
245   /// Emitted when selection happens in Salome viewer
246   void salomeViewerSelection();
247
248   /// Emitted when error in applivation happens
249   void errorOccurred(const QString&);
250
251   //! the signal about the workshop actions states are updated.
252   void commandStatusUpdated();
253
254   //! the application is started
255   void applicationStarted();
256
257   //! Signal to update Undo history list
258   void updateUndoHistory(const QList<ActionInfo>&);
259
260   //! Signal to update Redo history list
261   void updateRedoHistory(const QList<ActionInfo>&);
262
263  public slots:
264    /// Update of commands status
265   void updateCommandStatus();
266
267   /// update history list (undo/redo commands)
268   void updateHistory();
269
270   /// Create a new dokument
271   void onNew();
272
273   /// Open document from file
274   void onOpen();
275
276   /// Save current document
277   bool onSave();
278
279   /// Save current document to a file selected by user
280   bool onSaveAs();
281
282   /// Exit application
283   void onExit();
284
285   /// Undo last command
286   void onUndo(int times = 1);
287
288   /// Redo previous command
289   void onRedo(int times = 1);
290
291   /// Rebuild data tree
292   void onRebuild();
293
294   /// Open preferences dialog box
295   void onPreferences();
296
297   /// Show property panel
298   void showPropertyPanel();
299
300   /// Hide property panel
301   void hidePropertyPanel();
302
303   /// Show object Browser
304   void showObjectBrowser();
305
306   /// Hide object Browser
307   void hideObjectBrowser();
308
309   /// Close document
310   void closeDocument();
311
312  protected:
313   /// Sets the granted operations for the parameter operation. Firtsly, it finds the nested features
314   /// and set them into the operation. Secondly, it asks the module about ids of granted operations.
315   /// \param theOperation an operation
316    void setGrantedFeatures(ModuleBase_Operation* theOperation);
317
318   /// Update the property panel content by the XML description of the operation and set the panel
319   /// into the operation
320   /// \param theOperation an operation
321   void setPropertyPanel(ModuleBase_Operation* theOperation);
322
323 private:
324   /// Display all results
325   //void displayAllResults();
326
327   /// Displau results from document
328   /// \param theDoc a document
329   void displayDocumentResults(DocumentPtr theDoc);
330
331   /// Display results from a group
332   void displayGroupResults(DocumentPtr theDoc, std::string theGroup);
333
334  private slots:
335   /// SLOT, that is called after the operation is started. Update workshop state according to
336   /// the started operation, e.g. visualizes the property panel and connect to it.
337   /// \param theOpertion a started operation
338   void onOperationStarted(ModuleBase_Operation* theOperation);
339
340   /// SLOT, that is called after the operation is resumed. Update workshop state according to
341   /// the started operation, e.g. visualizes the property panel and connect to it.
342   /// \param theOpertion a resumed operation
343   virtual void onOperationResumed(ModuleBase_Operation* theOperation);
344
345   /// SLOT, that is called after the operation is stopped. Update workshop state, e.g.
346   /// hides the property panel and udpate the command status.
347   /// \param theOpertion a stopped operation
348   virtual void onOperationStopped(ModuleBase_Operation* theOperation);
349
350   /// SLOT, that is called after the operation is committed.
351   /// \param theOpertion a commmitted operation
352   virtual void onOperationCommitted(ModuleBase_Operation* theOperation);
353
354   /// SLOT, that is called after the operation is aborted.
355   /// \param theOpertion an aborted operation
356   void onOperationAborted(ModuleBase_Operation* theOperation);
357
358   /// Slot, which reacts to the context popup menu call
359   /// \param theId the data value of the clicked action
360   /// \param isChecked a state of toggle if the action is checkable
361   void onContextMenuCommand(const QString& theId, bool isChecked);
362
363   /// Set waiting cursor
364   void onStartWaiting();
365
366   /// Called by Ok button clicked in the property panel. Asks the error manager whether
367   /// the operation can be commited and do it if it returns true.
368   void onAcceptActionClicked();
369
370   /// Listens the corresponded signal from operation manager and send it with the Ok
371   /// action to operation manager.
372   /// \param theEnabled an enabled state for the action
373   void onValidationStateChanged(bool theEnabled);
374
375   //connect(myOperationMgr,  SIGNAL(validationStateChanged(bool)),
376   //        aOkAct,          SLOT(setEnabled(bool)));
377
378
379  private:
380    /// Init menu
381   void initMenu();
382
383   /// Register validators
384   void registerValidators() const;
385
386   /// Load module from external library
387   /// \param theModule name of the module
388   ModuleBase_IModule* loadModule(const QString& theModule);
389
390   /// Create module
391   bool createModule();
392
393   /// Create object browser widget
394   /// \param theParent a parent of widget
395   QDockWidget* createObjectBrowser(QWidget* theParent);
396
397   /// Create property panel widget
398   /// \param theParent a parent of widget
399   QDockWidget* createPropertyPanel(QWidget* theParent);
400
401   // Creates Dock widgets: Object browser and Property panel
402   void createDockWidgets();
403
404   //! Extends undo/redo toolbutton's with history menu
405   //! \param theObject - in the OpenParts it is a QToolButton by itself,
406   //! in salome mode - QAction that creates a button.
407   //! \param theSignal - void "updateUndoHistory" or "updateRedoHistory" SIGNAL;
408   //! \param theSlot - onUndo(int) or onRedo(int) SLOT
409   void addHistoryMenu(QObject* theObject, const char* theSignal, const char* theSlot);
410
411   //! Creates list of actions (commands) by given history list from session
412   QList<ActionInfo> processHistoryList(const std::list<std::string>&) const;
413
414 private:
415   AppElements_MainWindow* myMainWindow;
416   ModuleBase_IModule* myModule;
417   XGUI_ErrorMgr* myErrorMgr;
418   XGUI_ObjectsBrowser* myObjectBrowser;
419   XGUI_PropertyPanel* myPropertyPanel;
420   XGUI_SelectionMgr* mySelector;
421   XGUI_Displayer* myDisplayer;
422   XGUI_OperationMgr* myOperationMgr;  ///< manager to manipulate through the operations
423   XGUI_ActionsMgr* myActionsMgr;
424   XGUI_SalomeConnector* mySalomeConnector;
425   XGUI_ErrorDialog* myErrorDlg;
426   XGUI_ViewerProxy* myViewerProxy;
427   XGUI_ContextMenuMgr* myContextMenuMgr;
428   XGUI_ModuleConnector* myModuleConnector;
429   XGUI_WorkshopListener* myEventsListener;
430
431   QString myCurrentDir;
432 };
433
434 #endif