Salome HOME
17d0bb8c4cd2cd8a85a31982e16dadb870f31880
[modules/shaper.git] / src / XGUI / XGUI_ViewerProxy.h
1 #ifndef XGUI_VIEWERPROXY_H
2 #define XGUI_VIEWERPROXY_H
3
4 #include "XGUI.h"
5 #include "XGUI_SalomeViewer.h"
6
7 class XGUI_Workshop;
8 class XGUI_ViewWindow;
9
10 /**
11 * Proxy class which repersents or XGUI_Viewer or Salome Viewer
12 * dependently on current launching environment.
13 * It is reccomennded to use this class in operation for accessing to viewer 
14 * functionality instead of direct access to a viewer
15 */
16 class XGUI_EXPORT XGUI_ViewerProxy: public XGUI_SalomeViewer
17 {
18   Q_OBJECT
19 public:
20   XGUI_ViewerProxy(XGUI_Workshop* theParent);
21
22   //! Returns AIS_InteractiveContext from current OCCViewer
23   virtual Handle(AIS_InteractiveContext) AISContext() const;
24
25   //! Retrurns V3d_Vioewer from current viewer
26   virtual Handle(V3d_Viewer) v3dViewer() const;
27
28   //! Returns Vsd_View object from currently active view window
29   virtual Handle(V3d_View) activeView() const;
30
31   //! Sets the view projection
32   /// \param theX the X projection value
33   /// \param theY the Y projection value
34   /// \param theZ the Z projection value
35   void setViewProjection(double theX, double theY, double theZ);
36
37   /// Connects to a viewer according to current environment
38   void connectToViewer();
39
40 private slots:
41   void onMousePress(XGUI_ViewWindow*, QMouseEvent*);
42   void onMouseRelease(XGUI_ViewWindow*, QMouseEvent*);
43   void onMouseDoubleClick(XGUI_ViewWindow*, QMouseEvent*);
44   void onMouseMove(XGUI_ViewWindow*, QMouseEvent*);
45   void onKeyPress(XGUI_ViewWindow*, QKeyEvent*);
46   void onKeyRelease(XGUI_ViewWindow*, QKeyEvent*);
47
48 private:
49   XGUI_Workshop* myWorkshop;
50 };
51
52 #endif