Salome HOME
Merge branch 'master' of newgeom:newgeom.git
[modules/shaper.git] / src / XGUI / XGUI_Viewer.h
1 #ifndef XGUI_Viewer_H
2 #define XGUI_Viewer_H
3
4 #include "XGUI.h"
5 #include "XGUI_Constants.h"
6
7 #include <QObject>
8 #include <QMap>
9 #include <QList>
10
11 #include <V3d_Viewer.hxx>
12 #include <AIS_InteractiveContext.hxx>
13 #include <AIS_Trihedron.hxx>
14 #include <NCollection_List.hxx>
15 #include <TopoDS_Shape.hxx>
16
17 #include <QPoint>
18
19 class XGUI_MainWindow;
20 class QMdiSubWindow;
21 class XGUI_ViewWindow;
22 class QMouseEvent;
23 class QKeyEvent;
24
25 class AIS_ListOfInteractive;
26
27 /**\class XGUI_Viewer
28  * \ingroup GUI
29  * \brief Represents a 3d viewer. The viewer manages 3d scene and a set of view windows
30  * when each of view window is a one point of view on this scene.
31  */
32 class XGUI_EXPORT XGUI_Viewer: public QObject
33 {
34 Q_OBJECT
35 public:
36   static QString backgroundData(QStringList&, QIntList&, QIntList&);
37
38   XGUI_Viewer(XGUI_MainWindow* theParent, bool DisplayTrihedron = true);
39   ~XGUI_Viewer();
40
41   //! Creates a new view window
42   QMdiSubWindow* createView(V3d_TypeOfView theType = V3d_ORTHOGRAPHIC);
43
44   //! Return pointer on a main window - parent of the Viewer
45   XGUI_MainWindow* mainWindow() const
46   {
47     return myMainWindow;
48   }
49
50   //! Returns OCCT object which manages 3d scene
51   Handle(V3d_Viewer) v3dViewer() const
52   {
53     return myV3dViewer;
54   }
55
56   //! Returns OCCT object which manages displaying and selection in 3d scene
57   Handle(AIS_InteractiveContext) AISContext() const
58   {
59     return myAISContext;
60   }
61
62   //! Returns an active view window or NULL
63   XGUI_ViewWindow* activeViewWindow() const;
64
65   /// Return objects selected in 3D viewer
66   /// \param theList - list to be filled with selected objects
67   void  getSelectedObjects(AIS_ListOfInteractive& theList);
68
69   /// Return shapes selected in 3D viewer
70   /// \param theList - list to be filled with selected shapes
71   void getSelectedShapes(NCollection_List<TopoDS_Shape>& theList);
72
73   /// Selects objects in 3D viewer. Other selected objects are left as selected
74   /// \param theList - list objects to be selected
75   void  setObjectsSelected(const AIS_ListOfInteractive& theList);
76
77   /// Select the object in 3D viewer.
78   /// \param theIO - list objects to be selected
79   void setSelected(const Handle(AIS_InteractiveObject)& theIO) { myAISContext->SetSelected(theIO); }
80
81   //! Trihedron 3d object shown in the viewer
82   Handle(AIS_Trihedron) trihedron() const
83   {
84     return myTrihedron;
85   }
86
87   //! On/Off visibility of the trihedron object
88   void toggleTrihedron();
89
90   //! Returns true if trihedron is visible
91   bool isTrihedronVisible() const;
92
93   //! Returns true if trihedron is visible
94   void setTrihedronShown(bool on);
95
96   //! Returns trihedron size
97   double trihedronSize() const;
98
99   //! Sets trihedron size
100   void setTrihedronSize(const double sz, bool isRelative);
101
102   bool trihedronRelative() const
103   {
104     return myIsRelative;
105   }
106   //! Update trihedron
107   void updateTrihedron();
108
109   //! Compute trihedron size dependent on 3d scene size
110   bool computeTrihedronSize(double& theNewSize, double& theSize);
111
112   static void setHotButton(XGUI::InteractionStyle theInteractionStyle, XGUI::HotOperation theOper,
113                            Qt::KeyboardModifiers theState, Qt::MouseButtons theButton);
114   static void getHotButton(XGUI::InteractionStyle theInteractionStyle, XGUI::HotOperation theOper,
115                            Qt::KeyboardModifiers& theState, Qt::MouseButtons& theButton);
116
117   //! Sets the view projection
118   /// \param theX the X projection value
119   /// \param theY the Y projection value
120   /// \param theZ the Z projection value
121   void setViewProjection(double theX, double theY, double theZ);
122
123   typedef QMap<XGUI::HotOperation, Qt::KeyboardModifiers> StatesMap;
124   typedef QMap<XGUI::HotOperation, Qt::MouseButtons> ButtonsMap;
125
126   typedef QMap<XGUI::InteractionStyle, StatesMap> InteractionStyle2StatesMap;
127   typedef QMap<XGUI::InteractionStyle, ButtonsMap> InteractionStyle2ButtonsMap;
128
129   static InteractionStyle2StatesMap myStateMap;
130   static InteractionStyle2ButtonsMap myButtonMap;
131
132 signals:
133   void lastViewClosed();
134   void tryCloseView(XGUI_ViewWindow* theWindow);
135   void deleteView(XGUI_ViewWindow* theWindow);
136   void viewCreated(XGUI_ViewWindow* theWindow);
137   void mousePress(XGUI_ViewWindow* theWindow, QMouseEvent* theEvent);
138   void mouseRelease(XGUI_ViewWindow* theWindow, QMouseEvent* theEvent);
139   void mouseDoubleClick(XGUI_ViewWindow* theWindow, QMouseEvent* theEvent);
140   void mouseMove(XGUI_ViewWindow* theWindow, QMouseEvent* theEvent);
141   void keyPress(XGUI_ViewWindow* theWindow, QKeyEvent* theEvent);
142   void keyRelease(XGUI_ViewWindow* theWindow, QKeyEvent* theEvent);
143   void activated(XGUI_ViewWindow* theWindow);
144   void selectionChanged();
145   void mouseReleased(QPoint thePoint);
146   void mouseMoved(QPoint thePoint);
147
148 public slots:
149   void onWindowMinimized(QMdiSubWindow*);
150   void onWindowActivated(QMdiSubWindow*);
151
152 private slots:
153   void onViewClosed(QMdiSubWindow*);
154   void onMouseMove(XGUI_ViewWindow* theWindow, QMouseEvent* theEvent);
155   void onMouseReleased(XGUI_ViewWindow* theWindow, QMouseEvent* theEvent);
156
157 private:
158   void addView(QMdiSubWindow* theView);
159
160   /*! Removes the View from internal Views list.*/
161   void removeView(QMdiSubWindow* theView);
162
163 private:
164   XGUI_MainWindow* myMainWindow;
165
166   Handle(V3d_Viewer) myV3dViewer;
167   Handle(AIS_Trihedron) myTrihedron;
168   Handle(AIS_InteractiveContext) myAISContext;
169
170   XGUI::InteractionStyle myInteractionStyle;
171
172   bool myPreselectionEnabled;
173   bool mySelectionEnabled;
174   bool myMultiSelectionEnabled;
175   bool myIsRelative;
176
177   double myTrihedronSize;
178   
179   QList<QMdiSubWindow*> myViews;
180
181   QMdiSubWindow* myActiveView;
182 };
183
184 #endif