1 // Copyright (C) 2014-2015 EDF-R&D
2 // This library is free software; you can redistribute it and/or
3 // modify it under the terms of the GNU Lesser General Public
4 // License as published by the Free Software Foundation; either
5 // version 2.1 of the License, or (at your option) any later version.
7 // This library is distributed in the hope that it will be useful,
8 // but WITHOUT ANY WARRANTY; without even the implied warranty of
9 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
10 // Lesser General Public License for more details.
12 // You should have received a copy of the GNU Lesser General Public
13 // License along with this library; if not, write to the Free Software
14 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
16 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
19 #ifndef HYDROGUI_MODULE_H
20 #define HYDROGUI_MODULE_H
22 #include <HYDROData_Entity.h>
25 #pragma warning ( disable: 4251 )
28 #include <LightApp_Module.h>
33 #pragma warning ( default: 4251 )
36 class QGraphicsSceneMouseEvent;
37 class GraphicsView_Viewer;
38 class OCCViewer_Viewer;
41 class SUIT_ViewWindow;
42 class SUIT_ViewManager;
44 class Handle(HYDROData_StricklerTable);
46 class HYDROGUI_DataModel;
47 class HYDROGUI_Displayer;
48 class HYDROGUI_OCCDisplayer;
49 class HYDROGUI_VTKPrsDisplayer;
50 class HYDROGUI_AbstractDisplayer;
52 class HYDROGUI_VTKPrs;
53 class HYDROGUI_Operation;
55 /**\class HYDROGUI_Module
56 *\brief The class representing the HYDROGUI module
58 class HYDROGUI_Module : public LightApp_Module
62 enum CustomEvent { NewViewEvent = QEvent::User + 100 };
78 CT_PointingHandCursor,
96 //VMR_PreviewZone, // totally unused, to delete
97 VMR_PreviewCaseZones // actually unused, to review
99 typedef QPair< SUIT_ViewManager*, ViewManagerRole > ViewManagerInfo;
101 typedef QMap < int, ViewManagerInfo > ViewManagerMap;
102 typedef QMapIterator< int, ViewManagerInfo > ViewManagerMapIterator;
109 ObjectState() : Visibility( false ), Transparency( 1.0 ), ZValue( 0.0 ) {}
111 typedef QMap< QString, ObjectState > Entry2ObjectStateMap;
112 typedef QMap< int, Entry2ObjectStateMap > ViewId2Entry2ObjectStateMap;
114 typedef QList<HYDROGUI_Shape*> ListOfShapes;
115 typedef QMap<int,ListOfShapes> ViewId2ListOfShapes;
117 typedef QList<HYDROGUI_VTKPrs*> ListOfVTKPrs;
118 typedef QMap<int,ListOfVTKPrs> ViewId2ListOfVTKPrs;
120 typedef QMap<int, Handle(HYDROData_StricklerTable)> ViewId2StricklerTable;
124 virtual ~HYDROGUI_Module();
126 int getStudyId() const;
128 virtual void initialize( CAM_Application* );
129 virtual void windows( QMap<int, int>& ) const;
130 virtual void viewManagers( QStringList& ) const;
132 virtual void contextMenuPopup( const QString&, QMenu*, QString& );
133 virtual void createPreferences();
135 virtual void update( const int );
136 virtual void updateCommandsStatus();
138 virtual void selectionChanged();
140 SUIT_ViewManager* getViewManager( const int theId ) const;
141 HYDROGUI_DataModel* getDataModel() const;
142 HYDROGUI_Displayer* getDisplayer() const;
143 HYDROGUI_OCCDisplayer* getOCCDisplayer() const;
144 HYDROGUI_VTKPrsDisplayer* getVTKDisplayer() const;
146 GraphicsView_Viewer* getViewer( const int theId ) const;
147 OCCViewer_Viewer* getOCCViewer( const int theId ) const;
148 SVTK_Viewer* getVTKViewer( const int theId ) const;
150 int getViewManagerId( SUIT_ViewManager* theViewManager );
151 ViewManagerRole getViewManagerRole( SUIT_ViewManager* theViewManager );
152 void setViewManagerRole( SUIT_ViewManager* theViewManager,
153 const ViewManagerRole theRole );
155 bool isObjectVisible( const int theViewId,
156 const Handle(HYDROData_Entity)& theObject ) const;
157 void setObjectVisible( const int theViewId,
158 const Handle(HYDROData_Entity)& theObject,
159 const bool theState );
161 virtual void preferencesChanged( const QString&, const QString& );
164 * Set IsToUpdate flag for all presentations of the given object to recompute them during
165 * the next viewer(s) updating.
166 * @param theObject the data model object
167 * @param theState the flag to set for object's presentations, it's true by default.
169 void setIsToUpdate( const Handle(HYDROData_Entity)& theObject,
170 const bool theState = true );
171 QList<HYDROGUI_Shape*> getObjectShapes( const int theViewId,
172 ObjectKind theKind ) const;
173 HYDROGUI_Shape* getObjectShape( const int theViewId,
174 const Handle(HYDROData_Entity)& theObject ) const;
175 void setObjectShape( const int theViewId,
176 const Handle(HYDROData_Entity)& theObject,
177 HYDROGUI_Shape* theShape );
178 void removeViewShapes( const int theViewId );
179 void removeObjectShape( const int theViewId,
180 const Handle(HYDROData_Entity)& theObject );
182 HYDROGUI_VTKPrs* getObjectVTKPrs( const int theViewId,
183 const Handle(HYDROData_Entity)& theObject ) const;
184 void setObjectVTKPrs( const int theViewId,
185 const Handle(HYDROData_Entity)& theObject,
186 HYDROGUI_VTKPrs* theShape );
187 void removeViewVTKPrs( const int theViewId );
188 void removeObjectVTKPrs( const int theViewId,
189 const Handle(HYDROData_Entity)& theObject );
191 void removeObjectVTKPrs( const int theViewId,
192 const QString& theEntry );
195 * Update global imposed range of Z values for the given VTK viewer id
197 void updateVTKZRange( const int theViewId, double theRange[] );
200 * Returns true if the object with the given entry can be renamed.
201 * @param theEntry the object entry
203 virtual bool renameAllowed( const QString& theEntry ) const;
205 * Returns true if the object with the given entry is renamed.
206 * @param theEntry the object entry
207 * @param theName the new name
209 virtual bool renameObject( const QString& theEntry, const QString& theName );
211 QStack<HYDROGUI_Operation*>& getActiveOperations();
212 HYDROGUI_Operation* activeOperation();
215 * Returns the cursor defined for edition operations in module preferences.
216 * \return specific cursor
218 QCursor getPrefEditCursor() const;
223 * Returns Strickler table used for Land Cover scalar map coloring in the given view.
224 * @param theViewId the view id
225 * @return the Strickler table used for scalar map coloring of Land Covers in the given view;
226 null - if scalar map coloring is off for the view
228 Handle(HYDROData_StricklerTable) getLandCoverColoringTable( const int theViewId ) const;
231 * Set Strickler table to be used for Land Cover scalar map coloring in the given view.
232 * @param theViewId the view id
233 * @param theTable the Strickler table
235 void setLandCoverColoringTable( const int theViewId,
236 const Handle(HYDROData_StricklerTable)& theTable );
238 * Set Land Cover scalar map coloring mode off for the given view.
239 * @param theViewId the view id
241 void setLandCoversScalarMapModeOff( const int theViewId );
244 * Check if Land Cover scalar map coloring mode is on in the given view.
245 * @param theViewId the view id
246 * @return true if the mode is on, false if the mode is off
248 bool isLandCoversScalarMapModeOn( const int theViewId ) const;
251 * Set object as removed.
252 * @param theObject the removed object
254 void setObjectRemoved( const Handle(HYDROData_Entity)& theObject );
256 void enableLCMActions();
259 CAM_DataModel* createDataModel();
262 virtual bool activateModule( SUIT_Study* );
263 virtual bool deactivateModule( SUIT_Study* );
264 virtual void onObjectClicked( SUIT_DataObject*, int );
267 virtual LightApp_Operation* createOperation( const int ) const;
268 virtual bool reusableOperation( const int id );
270 virtual void customEvent( QEvent* );
271 virtual bool eventFilter( QObject*, QEvent* );
278 bool onUndo( int theNumActions );
279 bool onRedo( int theNumActions );
281 virtual void onViewManagerAdded( SUIT_ViewManager* );
282 virtual void onViewManagerRemoved( SUIT_ViewManager* );
283 virtual void onViewCreated( SUIT_ViewWindow* );
285 void onViewPortMouseEvent( QGraphicsSceneMouseEvent* );
287 void onMouseMove( SUIT_ViewWindow*, QMouseEvent* );
290 void updateViewer( HYDROGUI_AbstractDisplayer* theDisplayer,
291 const bool theIsInit = false,
292 const bool theIsForced = false,
293 const bool theDoFitAll = false );
295 void createSelector( SUIT_ViewManager* viewMgr );
297 bool setUpdateEnabled( const bool theState );
298 bool isUpdateEnabled() const;
300 QStringList storeSelection() const;
301 void restoreSelection( const QStringList& theEntryList );
304 void createActions();
307 void createToolbars();
309 void createUndoRedoActions();
310 void updateUndoRedoControls();
313 QAction* createAction( const int theId, const QString& theSuffix,
314 const QString& theImg = QString::null,
315 const int theKey = 0, const bool isToggle = false,
316 const QString& theSlot = QString::null );
319 HYDROGUI_Displayer* myDisplayer;
320 HYDROGUI_OCCDisplayer* myOCCDisplayer;
321 HYDROGUI_VTKPrsDisplayer* myVTKDisplayer;
323 ViewManagerMap myViewManagerMap;
324 ViewId2Entry2ObjectStateMap myObjectStateMap;
326 QStack<HYDROGUI_Operation*> myActiveOperationMap;
328 ViewId2ListOfShapes myShapesMap;
329 ViewId2ListOfVTKPrs myVTKPrsMap;
330 bool myIsUpdateEnabled;
332 QStringList myGeomObjectsToImport; ///< entries of GEOM objects to be imported
334 ViewId2StricklerTable myLandCoverColoringMap;