Salome HOME
Merge branch 'master' of newgeom:newgeom
[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   /// Returns true if selection in the viewer is enabled
78   bool isSelectionEnabled() const { return mySelectionEnabled; }
79
80   /// Enable or disable selectioon in the viewer
81   // \param toEnable - true or false (enable or disable selection)
82   void setSelectionEnabled(bool toEnable) { mySelectionEnabled = toEnable; }
83
84   /// Select the object in 3D viewer.
85   /// \param theIO - list objects to be selected
86   void setSelected(const Handle(AIS_InteractiveObject)& theIO) { myAISContext->SetSelected(theIO); }
87
88   //! Trihedron 3d object shown in the viewer
89   Handle(AIS_Trihedron) trihedron() const
90   {
91     return myTrihedron;
92   }
93
94   //! On/Off visibility of the trihedron object
95   void toggleTrihedron();
96
97   //! Returns true if trihedron is visible
98   bool isTrihedronVisible() const;
99
100   //! Returns true if trihedron is visible
101   void setTrihedronShown(bool on);
102
103   //! Returns trihedron size
104   double trihedronSize() const;
105
106   //! Sets trihedron size
107   void setTrihedronSize(const double sz, bool isRelative);
108
109   bool trihedronRelative() const
110   {
111     return myIsRelative;
112   }
113   //! Update trihedron
114   void updateTrihedron();
115
116   //! Compute trihedron size dependent on 3d scene size
117   bool computeTrihedronSize(double& theNewSize, double& theSize);
118
119   static void setHotButton(XGUI::InteractionStyle theInteractionStyle, XGUI::HotOperation theOper,
120                            Qt::KeyboardModifiers theState, Qt::MouseButtons theButton);
121   static void getHotButton(XGUI::InteractionStyle theInteractionStyle, XGUI::HotOperation theOper,
122                            Qt::KeyboardModifiers& theState, Qt::MouseButtons& theButton);
123
124   //! Sets the view projection
125   /// \param theX the X projection value
126   /// \param theY the Y projection value
127   /// \param theZ the Z projection value
128   void setViewProjection(double theX, double theY, double theZ);
129
130   typedef QMap<XGUI::HotOperation, Qt::KeyboardModifiers> StatesMap;
131   typedef QMap<XGUI::HotOperation, Qt::MouseButtons> ButtonsMap;
132
133   typedef QMap<XGUI::InteractionStyle, StatesMap> InteractionStyle2StatesMap;
134   typedef QMap<XGUI::InteractionStyle, ButtonsMap> InteractionStyle2ButtonsMap;
135
136   static InteractionStyle2StatesMap myStateMap;
137   static InteractionStyle2ButtonsMap myButtonMap;
138
139 signals:
140   void lastViewClosed();
141   void tryCloseView(XGUI_ViewWindow* theWindow);
142   void deleteView(XGUI_ViewWindow* theWindow);
143   void viewCreated(XGUI_ViewWindow* theWindow);
144   void mousePress(XGUI_ViewWindow* theWindow, QMouseEvent* theEvent);
145   void mouseRelease(XGUI_ViewWindow* theWindow, QMouseEvent* theEvent);
146   void mouseDoubleClick(XGUI_ViewWindow* theWindow, QMouseEvent* theEvent);
147   void mouseMove(XGUI_ViewWindow* theWindow, QMouseEvent* theEvent);
148   void keyPress(XGUI_ViewWindow* theWindow, QKeyEvent* theEvent);
149   void keyRelease(XGUI_ViewWindow* theWindow, QKeyEvent* theEvent);
150   void activated(XGUI_ViewWindow* theWindow);
151   void selectionChanged();
152
153 public slots:
154   void onWindowMinimized(QMdiSubWindow*);
155   void onWindowActivated(QMdiSubWindow*);
156
157 private slots:
158   void onViewClosed(QMdiSubWindow*);
159   void onMouseMove(XGUI_ViewWindow* theWindow, QMouseEvent* theEvent);
160   void onMouseReleased(XGUI_ViewWindow* theWindow, QMouseEvent* theEvent);
161   void onMousePressed(XGUI_ViewWindow* theWindow, QMouseEvent* theEvent);
162
163 private:
164   void addView(QMdiSubWindow* theView);
165
166   /*! Removes the View from internal Views list.*/
167   void removeView(QMdiSubWindow* theView);
168
169 private:
170   XGUI_MainWindow* myMainWindow;
171
172   Handle(V3d_Viewer) myV3dViewer;
173   Handle(AIS_Trihedron) myTrihedron;
174   Handle(AIS_InteractiveContext) myAISContext;
175
176   XGUI::InteractionStyle myInteractionStyle;
177
178   bool myPreselectionEnabled;
179   bool mySelectionEnabled;
180   bool myMultiSelectionEnabled;
181   bool myIsRelative;
182
183   double myTrihedronSize;
184   
185   QList<QMdiSubWindow*> myViews;
186
187   QMdiSubWindow* myActiveView;
188
189   /// Points used for selection management
190   QPoint myStartPnt, myEndPnt, myCurPnt;
191 };
192
193 #endif