Salome HOME
9222827f36e5374df07e654678215aeb146b4182
[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   typedef QMap<XGUI::HotOperation, Qt::KeyboardModifiers> StatesMap;
125   typedef QMap<XGUI::HotOperation, Qt::MouseButtons> ButtonsMap;
126
127   typedef QMap<XGUI::InteractionStyle, StatesMap> InteractionStyle2StatesMap;
128   typedef QMap<XGUI::InteractionStyle, ButtonsMap> InteractionStyle2ButtonsMap;
129
130   static InteractionStyle2StatesMap myStateMap;
131   static InteractionStyle2ButtonsMap myButtonMap;
132
133 signals:
134   void lastViewClosed();
135   void tryCloseView(XGUI_ViewWindow* theWindow);
136   void deleteView(XGUI_ViewWindow* theWindow);
137   void viewCreated(XGUI_ViewWindow* theWindow);
138   void mousePress(XGUI_ViewWindow* theWindow, QMouseEvent* theEvent);
139   void mouseRelease(XGUI_ViewWindow* theWindow, QMouseEvent* theEvent);
140   void mouseDoubleClick(XGUI_ViewWindow* theWindow, QMouseEvent* theEvent);
141   void mouseMove(XGUI_ViewWindow* theWindow, QMouseEvent* theEvent);
142   void keyPress(XGUI_ViewWindow* theWindow, QKeyEvent* theEvent);
143   void keyRelease(XGUI_ViewWindow* theWindow, QKeyEvent* theEvent);
144   void activated(XGUI_ViewWindow* theWindow);
145   void selectionChanged();
146
147 public slots:
148   void onWindowMinimized(QMdiSubWindow*);
149   void onWindowActivated(QMdiSubWindow*);
150
151 private slots:
152   void onViewClosed(QMdiSubWindow*);
153   void onMouseMove(XGUI_ViewWindow* theWindow, QMouseEvent* theEvent);
154   void onMouseReleased(XGUI_ViewWindow* theWindow, QMouseEvent* theEvent);
155   void onMousePressed(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   /// Points used for selection management
184   QPoint myStartPnt, myEndPnt, myCurPnt;
185 };
186
187 #endif