Salome HOME
Disable Join and JoinAll operations till it will be described in
[modules/hydro.git] / src / HYDROGUI / HYDROGUI_Module.h
1 // Copyright (C) 2007-2013  CEA/DEN, EDF R&D, OPEN CASCADE
2 //
3 // Copyright (C) 2003-2007  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
5 //
6 // This library is free software; you can redistribute it and/or
7 // modify it under the terms of the GNU Lesser General Public
8 // License as published by the Free Software Foundation; either
9 // version 2.1 of the License.
10 //
11 // This library is distributed in the hope that it will be useful,
12 // but WITHOUT ANY WARRANTY; without even the implied warranty of
13 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14 // Lesser General Public License for more details.
15 //
16 // You should have received a copy of the GNU Lesser General Public
17 // License along with this library; if not, write to the Free Software
18 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
19 //
20 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
21 //
22
23 #ifndef HYDROGUI_MODULE_H
24 #define HYDROGUI_MODULE_H
25
26 #include <HYDROData_Entity.h>
27
28 #include <LightApp_Module.h>
29
30 #include <QEvent>
31
32 class QGraphicsSceneMouseEvent;
33
34 class GraphicsView_Viewer;
35 class OCCViewer_Viewer;
36 class SVTK_Viewer;
37
38 class SUIT_ViewWindow;
39 class SUIT_ViewManager;
40
41 class HYDROGUI_DataModel;
42 class HYDROGUI_Displayer;
43 class HYDROGUI_OCCDisplayer;
44 class HYDROGUI_VTKPrsDisplayer;
45 class HYDROGUI_AbstractDisplayer;
46 class HYDROGUI_Shape;
47 class HYDROGUI_VTKPrs;
48
49 /**\class HYDROGUI_Module
50  *\brief The class representing the HYDROGUI module
51  */
52 class HYDROGUI_Module : public LightApp_Module
53 {
54   Q_OBJECT
55
56   enum CustomEvent { NewViewEvent = QEvent::User + 100 };
57
58 public:
59   
60   enum ViewManagerRole
61   {
62     VMR_Unknown = 0,
63     VMR_General,
64     VMR_TransformImage,
65     VMR_ReferenceImage,
66     VMR_ObserveImage,
67     //VMR_PreviewZone, // totally unused, to delete
68     VMR_PreviewCaseZones // actually unused, to review
69   };
70   typedef QPair< SUIT_ViewManager*, ViewManagerRole > ViewManagerInfo;
71
72   typedef QMap        < int, ViewManagerInfo > ViewManagerMap;
73   typedef QMapIterator< int, ViewManagerInfo > ViewManagerMapIterator;
74
75   struct ObjectState
76   {
77     bool Visibility;
78     double Transparency;
79     double ZValue;
80     ObjectState() : Visibility( false ), Transparency( 1.0 ), ZValue( 0.0 ) {}
81   };
82   typedef QMap< QString, ObjectState > Name2ObjectStateMap;
83   typedef QMap< int, Name2ObjectStateMap > ViewId2Name2ObjectStateMap;
84
85   typedef QList<HYDROGUI_Shape*> ListOfShapes;
86   typedef QMap<int,ListOfShapes> ViewId2ListOfShapes;
87
88   typedef QList<HYDROGUI_VTKPrs*> ListOfVTKPrs;
89   typedef QMap<int,ListOfVTKPrs> ViewId2ListOfVTKPrs;
90
91 public:
92   HYDROGUI_Module();
93   virtual ~HYDROGUI_Module();
94
95   int                             getStudyId() const;
96
97   virtual void                    initialize( CAM_Application* );
98   virtual void                    windows( QMap<int, int>& ) const;
99   virtual void                    viewManagers( QStringList& ) const;
100
101   virtual void                    contextMenuPopup( const QString&, QMenu*, QString& );
102
103   virtual void                    update( const int );
104   virtual void                    updateCommandsStatus();
105
106   virtual void                    selectionChanged();
107
108   SUIT_ViewManager*               getViewManager( const int theId ) const;
109   HYDROGUI_DataModel*             getDataModel() const;
110   HYDROGUI_Displayer*             getDisplayer() const;
111   HYDROGUI_OCCDisplayer*          getOCCDisplayer() const;
112   HYDROGUI_VTKPrsDisplayer*       getVTKDisplayer() const;
113
114   GraphicsView_Viewer*            getViewer( const int theId ) const;
115   OCCViewer_Viewer*               getOCCViewer( const int theId ) const;
116   SVTK_Viewer*                    getVTKViewer( const int theId ) const;
117
118   int                             getViewManagerId( SUIT_ViewManager* theViewManager );
119   ViewManagerRole                 getViewManagerRole( SUIT_ViewManager* theViewManager );
120   void                            setViewManagerRole( SUIT_ViewManager* theViewManager,
121                                                       const ViewManagerRole theRole );
122
123   bool                            isObjectVisible( const int theViewId,
124                                                    const Handle(HYDROData_Entity)& theObject ) const;
125   void                            setObjectVisible( const int theViewId,
126                                                     const Handle(HYDROData_Entity)& theObject,
127                                                     const bool theState );
128
129   HYDROGUI_Shape*                 getObjectShape( const int                       theViewId,
130                                                   const Handle(HYDROData_Entity)& theObject ) const;
131   void                            setObjectShape( const int                       theViewId,
132                                                   const Handle(HYDROData_Entity)& theObject,
133                                                   HYDROGUI_Shape*                 theShape );
134   void                            removeViewShapes( const int                     theViewId );
135   void                            removeObjectShape( const int                       theViewId,
136                                                      const Handle(HYDROData_Entity)& theObject );
137
138   HYDROGUI_VTKPrs*                getObjectVTKPrs( const int                       theViewId,
139                                                    const Handle(HYDROData_Entity)& theObject ) const;
140   void                            setObjectVTKPrs( const int                       theViewId,
141                                                    const Handle(HYDROData_Entity)& theObject,
142                                                    HYDROGUI_VTKPrs*                theShape );
143   void                            removeViewVTKPrs( const int                      theViewId );
144   void                            removeObjectVTKPrs( const int                      theViewId,
145                                                      const Handle(HYDROData_Entity)& theObject );
146   /**
147    * Update global imposed range of Z values for VTK viewer
148    */
149   void                            updateVTKZRange( double theRange[] );
150
151   QStringList                     GetGeomObjectsToImport();
152
153 protected:
154   CAM_DataModel*                  createDataModel();
155
156 public slots:
157   virtual bool                    activateModule( SUIT_Study* );
158   virtual bool                    deactivateModule( SUIT_Study* );
159
160 protected:
161   virtual LightApp_Operation*     createOperation( const int ) const;
162   virtual bool                    reusableOperation( const int id );
163
164   virtual void                    customEvent( QEvent* );
165   virtual bool                    eventFilter( QObject*, QEvent* );
166
167 protected slots:
168   void                            onOperation();
169   void                            onDelete();
170
171
172   bool                            onUndo( int theNumActions );
173   bool                            onRedo( int theNumActions );
174
175   virtual void                    onViewManagerAdded( SUIT_ViewManager* );
176   virtual void                    onViewManagerRemoved( SUIT_ViewManager* );
177   virtual void                    onViewCreated( SUIT_ViewWindow* );
178
179   void                            onViewPortMouseEvent( QGraphicsSceneMouseEvent* );
180   
181   void                            onExternalOperationFinished( const QString&, const QString&, 
182                                                                const QStringList& );
183
184 private:
185   void                            updateViewer( HYDROGUI_AbstractDisplayer* theDisplayer, 
186                                                 const bool theIsInit = false, 
187                                                 const bool theIsForced = false, 
188                                                 const bool theDoFitAll = false );
189
190   void                            createSelector( SUIT_ViewManager* viewMgr );
191
192   bool                            setUpdateEnabled( const bool theState );
193   bool                            isUpdateEnabled() const;
194
195   QStringList                     storeSelection() const;
196   void                            restoreSelection( const QStringList& theEntryList );
197
198 private:
199   void                            createActions();
200   void                            createMenus();
201   void                            createPopups();
202   void                            createToolbars();
203
204   void                            createUndoRedoActions();
205   void                            updateUndoRedoControls();
206
207 private:
208   QAction*                        createAction( const int theId, const QString& theSuffix,
209                                                 const QString& theImg = QString::null,
210                                                 const int theKey = 0, const bool isToggle = false,
211                                                 const QString& theSlot = QString::null );
212
213 private:
214   HYDROGUI_Displayer*             myDisplayer;
215   HYDROGUI_OCCDisplayer*          myOCCDisplayer;
216   HYDROGUI_VTKPrsDisplayer*       myVTKDisplayer;
217
218   ViewManagerMap                  myViewManagerMap;
219   ViewId2Name2ObjectStateMap      myObjectStateMap;
220
221   ViewId2ListOfShapes             myShapesMap;
222   ViewId2ListOfVTKPrs             myVTKPrsMap;
223
224   bool                            myIsUpdateEnabled;
225
226   QStringList                     myGeomObjectsToImport; ///< entries of GEOM objects to be imported
227 };
228
229 #endif