Salome HOME
refs #821: correct orientation of the viewer after the plane selection
[modules/shaper.git] / src / NewGeom / NewGeom_SalomeViewer.h
1 // Copyright (C) 2014-20xx CEA/DEN, EDF R&D
2
3
4 #ifndef NewGeom_SalomeViewer_H
5 #define NewGeom_SalomeViewer_H
6
7 #include "NewGeom.h"
8
9 #include <ModuleBase_IViewer.h>
10 #include <ModuleBase_IViewWindow.h>
11
12 #include <OCCViewer_ViewWindow.h>
13
14 #include <V3d_View.hxx>
15
16 class SUIT_ViewWindow;
17 class QMouseEvent;
18 class QKeyEvent;
19
20 class NewGeom_OCCSelector;
21 class OCCViewer_Viewer;
22 class SUIT_ViewManager;
23
24 /**
25 * \ingroup Salome
26 * A class for providing access of NewGeom functionality to 
27 * SALOME view window functionality
28 */
29 class NewGeom_SalomeView: public ModuleBase_IViewWindow
30 {
31 public:
32   /// Constructor
33   /// \param theViewer a reference to a viewer
34   NewGeom_SalomeView(OCCViewer_Viewer* theViewer);
35
36   virtual Handle(V3d_View) v3dView() const;
37
38   /// Returns the view window view port
39   virtual QWidget* viewPort() const;
40
41   /// Set the current viewer
42   /// \param theViewer a viewer instance
43   void setViewer(OCCViewer_Viewer* theViewer) { myViewer = theViewer; }
44
45   /// Returns current viewer
46   OCCViewer_Viewer* viewer() const { return myViewer; }
47
48   /// Sets the current view
49   void setCurrentView(SUIT_ViewWindow* theView) { myCurrentView = theView; }
50
51 private:
52   /// A reference to a viewer
53   OCCViewer_Viewer* myViewer;
54   SUIT_ViewWindow* myCurrentView;
55 };
56
57
58 /**
59 * \ingroup Salome
60 * A class for providing access of NewGeom functionality to 
61 * SALOME viewer functionality
62 */
63 class NewGeom_SalomeViewer : public ModuleBase_IViewer
64 {
65 Q_OBJECT
66  public:
67    /// Constructor
68    /// \param theParent a parent object
69   NewGeom_SalomeViewer(QObject* theParent);
70
71   ~NewGeom_SalomeViewer();
72
73   //! Returns AIS_InteractiveContext from current OCCViewer
74   virtual Handle(AIS_InteractiveContext) AISContext() const;
75
76   //! Retrurns V3d_Vioewer from current viewer
77   virtual Handle(V3d_Viewer) v3dViewer() const;
78
79   //! Returns Vsd_View object from currently active view window
80   virtual Handle(V3d_View) activeView() const;
81
82   //! Enable or disable selection in the viewer
83   virtual void enableSelection(bool isEnabled);
84
85   //! Returns true if selection is enabled
86   virtual bool isSelectionEnabled() const;
87
88   //! Enable or disable multiselection in the viewer
89   virtual void enableMultiselection(bool isEnable);
90
91   //! Returns true if multiselection is enabled
92   virtual bool isMultiSelectionEnabled() const;
93
94   //! Perfroms the fit all for the active view
95   virtual void fitAll();
96
97   //! Sets the view projection
98   /// \param theX the X projection value
99   /// \param theY the Y projection value
100   /// \param theZ the Z projection value
101   /// \param theTwist the twist angle in radians
102   virtual void setViewProjection( double theX, double theY, double theZ,
103                                   double theTwist );
104
105   /// Set selector
106   /// \param theSel a selector instance
107   void setSelector(NewGeom_OCCSelector* theSel);
108
109   /// Add selection filter to the viewer
110   virtual void addSelectionFilter(const Handle(SelectMgr_Filter)& theFilter);
111
112   /// Remove selection filter from the viewer
113   virtual void removeSelectionFilter(const Handle(SelectMgr_Filter)& theFilter);
114
115   /// Returns true if the selection filter is set to the viewer
116   /// \param theFilter a selection filter
117   virtual bool hasSelectionFilter(const Handle(SelectMgr_Filter)& theFilter);
118
119   /// Remove all selection filters from the viewer
120   virtual void clearSelectionFilters();
121
122   /// Returns current selector
123   NewGeom_OCCSelector* selector() const
124   {
125     return mySelector;
126   }
127
128   /// Update current viewer
129   virtual void update();
130
131   /// Method returns True if the viewer can process editing objects 
132   /// by mouse drugging. If this is impossible thet it has to return False.
133   virtual bool canDragByMouse() const;
134
135   /// Activate or deactivate viewer
136   /// \param toActivate - activation flag
137   void activateViewer(bool toActivate);
138
139   // Fit all along Z (perpendicular to display)
140   virtual void Zfitall();
141
142  private slots:
143   void onMousePress(SUIT_ViewWindow*, QMouseEvent*);
144   void onMouseRelease(SUIT_ViewWindow*, QMouseEvent*);
145   void onMouseDoubleClick(SUIT_ViewWindow*, QMouseEvent*);
146   void onMouseMove(SUIT_ViewWindow*, QMouseEvent*);
147   void onKeyPress(SUIT_ViewWindow*, QKeyEvent*);
148   void onKeyRelease(SUIT_ViewWindow*, QKeyEvent*);
149
150   void onTryCloseView(SUIT_ViewWindow*);
151   void onDeleteView(SUIT_ViewWindow*);
152   void onViewCreated(SUIT_ViewWindow*);
153   void onActivated(SUIT_ViewManager*);
154
155   void onSelectionChanged();
156   void onViewTransformed(OCCViewer_ViewWindow::OperationType);
157
158  private:
159   NewGeom_OCCSelector* mySelector;
160   NewGeom_SalomeView* myView;
161   bool myIsSelectionChanged;
162 };
163
164
165 #endif