Salome HOME
0f0ac14848c39340d0518ffb34150629ccb72cc2
[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_Object.h>
27
28 #include <LightApp_Module.h>
29
30 #include <QEvent>
31
32 class QGraphicsSceneMouseEvent;
33
34 class GraphicsView_Viewer;
35
36 class SUIT_ViewWindow;
37
38 class HYDROGUI_DataModel;
39 class HYDROGUI_Displayer;
40 class HYDROGUI_OCCDisplayer;
41 class HYDROGUI_Shape;
42
43 class OCCViewer_Viewer;
44
45 /**\class HYDROGUI_Module
46  *\brief The class representing the HYDROGUI module
47  */
48 class HYDROGUI_Module : public LightApp_Module
49 {
50   Q_OBJECT
51
52   enum CustomEvent { NewViewEvent = QEvent::User + 100 };
53
54 public:
55   
56   enum ViewManagerRole { VMR_Unknown = 0, VMR_General, 
57                          VMR_TransformImage, VMR_ObserveImage, 
58                          VMR_PreviewZone,    VMR_PreviewCaseZones };
59   typedef QPair< SUIT_ViewManager*, ViewManagerRole > ViewManagerInfo;
60
61   typedef QMap        < int, ViewManagerInfo > ViewManagerMap;
62   typedef QMapIterator< int, ViewManagerInfo > ViewManagerMapIterator;
63
64   struct ObjectState
65   {
66     bool Visibility;
67     double Transparency;
68     double ZValue;
69     ObjectState() : Visibility( false ), Transparency( 1.0 ), ZValue( 0.0 ) {}
70   };
71   typedef QMap< QString, ObjectState > Name2ObjectStateMap;
72   typedef QMap< int, Name2ObjectStateMap > ViewId2Name2ObjectStateMap;
73
74   typedef QList<HYDROGUI_Shape*> ListOfShapes;
75   typedef QMap<int,ListOfShapes> ViewId2ListOfShapes;
76
77 public:
78   HYDROGUI_Module();
79   virtual ~HYDROGUI_Module();
80
81   int                             getStudyId() const;
82
83   virtual void                    initialize( CAM_Application* );
84   virtual void                    windows( QMap<int, int>& ) const;
85   virtual void                    viewManagers( QStringList& ) const;
86
87   virtual void                    contextMenuPopup( const QString&, QMenu*, QString& );
88
89   virtual void                    update( const int );
90   virtual void                    updateCommandsStatus();
91
92   virtual void                    selectionChanged();
93
94   HYDROGUI_DataModel*             getDataModel() const;
95   HYDROGUI_Displayer*             getDisplayer() const;
96   HYDROGUI_OCCDisplayer*          getOCCDisplayer() const;
97
98   GraphicsView_Viewer*            getViewer( const int theId ) const;
99   OCCViewer_Viewer*               getOCCViewer( const int theId ) const;
100
101   int                             getViewManagerId( SUIT_ViewManager* theViewManager );
102   ViewManagerRole                 getViewManagerRole( SUIT_ViewManager* theViewManager );
103   void                            setViewManagerRole( SUIT_ViewManager* theViewManager,
104                                                       const ViewManagerRole theRole );
105
106   bool                            isObjectVisible( const int theViewId,
107                                                    const Handle(HYDROData_Object)& theObject ) const;
108   void                            setObjectVisible( const int theViewId,
109                                                     const Handle(HYDROData_Object)& theObject,
110                                                     const bool theState );
111
112   HYDROGUI_Shape*                 getObjectShape( const int                       theViewId,
113                                                   const Handle(HYDROData_Object)& theObject ) const;
114   void                            setObjectShape( const int                       theViewId,
115                                                   const Handle(HYDROData_Object)& theObject,
116                                                   HYDROGUI_Shape*                 theShape );
117   void                            removeViewShapes( const int                       theViewId );
118   void                            removeObjectShape( const int                       theViewId,
119                                                      const Handle(HYDROData_Object)& theObject );
120
121 protected:
122   CAM_DataModel*                  createDataModel();
123
124 public slots:
125   virtual bool                    activateModule( SUIT_Study* );
126   virtual bool                    deactivateModule( SUIT_Study* );
127
128 protected:
129   virtual LightApp_Operation*     createOperation( const int ) const;
130
131   virtual void                    customEvent( QEvent* );
132   virtual bool                    eventFilter( QObject*, QEvent* );
133
134 protected slots:
135   void                            onOperation();
136
137   bool                            onUndo( int theNumActions );
138   bool                            onRedo( int theNumActions );
139
140   virtual void                    onViewManagerAdded( SUIT_ViewManager* );
141   virtual void                    onViewManagerRemoved( SUIT_ViewManager* );
142   virtual void                    onViewCreated( SUIT_ViewWindow* );
143
144   void                            onViewPortMouseEvent( QGraphicsSceneMouseEvent* );
145
146 private:
147   void                            updateGV( const bool theIsInit = false, 
148                                             const bool theIsForced = false );
149
150   void                            updateOCCViewer( const bool theIsInit = false, 
151                                                    const bool theIsForced = false );
152
153   void                            createSelector( SUIT_ViewManager* viewMgr );
154
155   bool                            setUpdateEnabled( const bool theState );
156   bool                            isUpdateEnabled() const;
157
158   QStringList                     storeSelection() const;
159   void                            restoreSelection( const QStringList& theEntryList );
160
161 private:
162   void                            createActions();
163   void                            createMenus();
164   void                            createPopups();
165   void                            createToolbars();
166
167   void                            createUndoRedoActions();
168   void                            updateUndoRedoControls();
169
170 private:
171   QAction*                        createAction( const int theId, const QString& theSuffix,
172                                                 const QString& theImg = QString::null,
173                                                 const int theKey = 0, const bool isToggle = false,
174                                                 const QString& theSlot = QString::null );
175
176 private:
177   HYDROGUI_Displayer*             myDisplayer;
178   HYDROGUI_OCCDisplayer*          myOCCDisplayer;
179
180   ViewManagerMap                  myViewManagerMap;
181   ViewId2Name2ObjectStateMap      myObjectStateMap;
182
183   ViewId2ListOfShapes             myShapesMap;
184
185   bool                            myIsUpdateEnabled;
186 };
187
188 #endif