]> SALOME platform Git repositories - modules/shaper.git/blob - src/XGUI/XGUI_ViewerProxy.h
Salome HOME
Task 2.2.5: Highlight all results if a shape of a one result is preselected
[modules/shaper.git] / src / XGUI / XGUI_ViewerProxy.h
1 // Copyright (C) 2014-2017  CEA/DEN, EDF R&D
2 //
3 // This library is free software; you can redistribute it and/or
4 // modify it under the terms of the GNU Lesser General Public
5 // License as published by the Free Software Foundation; either
6 // version 2.1 of the License, or (at your option) any later version.
7 //
8 // This library is distributed in the hope that it will be useful,
9 // but WITHOUT ANY WARRANTY; without even the implied warranty of
10 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11 // Lesser General Public License for more details.
12 //
13 // You should have received a copy of the GNU Lesser General Public
14 // License along with this library; if not, write to the Free Software
15 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
16 //
17 // See http://www.salome-platform.org/ or
18 // email : webmaster.salome@opencascade.com<mailto:webmaster.salome@opencascade.com>
19 //
20
21 #ifndef XGUI_VIEWERPROXY_H
22 #define XGUI_VIEWERPROXY_H
23
24 #include "XGUI.h"
25 #include <ModuleBase_IViewer.h>
26 #include <ModelAPI_Feature.h>
27
28 #include <AIS_Trihedron.hxx>
29 #include <AIS_ListOfInteractive.hxx>
30
31 #ifndef HAVE_SALOME
32   #include <AppElements_ViewWindow.h>
33 #endif
34
35 class XGUI_Workshop;
36 /**
37  * \ingroup GUI
38  * Proxy class which repersents or AppElements_Viewer or Salome Viewer
39  * dependently on current launching environment.
40  * It is reccomennded to use this class in operation for accessing to viewer 
41  * functionality instead of direct access to a viewer
42  */
43 class XGUI_EXPORT XGUI_ViewerProxy : public ModuleBase_IViewer
44 {
45 Q_OBJECT
46  public:
47    /// Constructor
48    /// \param theParent a parent object
49   XGUI_ViewerProxy(XGUI_Workshop* theParent);
50
51   /// Connects some signals to the viewer from the module connector
52   void connectViewProxy();
53
54   //! Returns AIS_InteractiveContext from current OCCViewer
55   virtual Handle(AIS_InteractiveContext) AISContext() const;
56
57   //! Trihedron 3d object shown in the viewer
58   virtual Handle(AIS_Trihedron) trihedron() const;
59
60   //! Retrurns V3d_Vioewer from current viewer
61   virtual Handle(V3d_Viewer) v3dViewer() const;
62
63   //! Returns Vsd_View object from currently active view window
64   virtual Handle(V3d_View) activeView() const;
65
66   virtual QWidget* activeViewPort() const;
67
68   //! Enable or disable selection in the viewer
69   virtual void enableSelection(bool isEnabled);
70
71   //! Returns true if selection is enabled
72   virtual bool isSelectionEnabled() const;
73
74   //! Enable or disable multiselection in the viewer
75   virtual void enableMultiselection(bool isEnable);
76
77   //! Returns true if multiselection is enabled
78   virtual bool isMultiSelectionEnabled() const;
79
80   //! Enable or disable draw mode in the viewer
81   virtual bool enableDrawMode(bool isEnabled);
82
83   //! Sets the view projection
84   /// \param theX the X projection value
85   /// \param theY the Y projection value
86   /// \param theZ the Z projection value
87   /// \param theTwist the twist angle in radians
88   virtual void setViewProjection( double theX, double theY, double theZ,
89                                   double theTwist );
90
91   //! Sets the view fitted all
92   virtual void fitAll();
93
94   //! Erases all presentations from the viewer
95   virtual void eraseAll();
96
97   /// Connects to a viewer according to current environment
98   void connectToViewer();
99
100   /// Add selection filter to the viewer
101   virtual void addSelectionFilter(const Handle(SelectMgr_Filter)& theFilter);
102
103   /// Remove selection filter from the viewer
104   virtual void removeSelectionFilter(const Handle(SelectMgr_Filter)& theFilter);
105
106   /// Returns true if the selection filter is set to the viewer
107   /// \param theFilter a selection filter
108   virtual bool hasSelectionFilter(const Handle(SelectMgr_Filter)& theFilter);
109
110   /// Remove all selection filters from the viewer
111   virtual void clearSelectionFilters();
112
113   /// Update current viewer
114   virtual void update();
115
116   /// Method returns True if the viewer can process editing objects
117   /// by mouse drugging. If this is impossible thet it has to return False.
118   virtual bool canDragByMouse() const;
119
120   // Fit all along Z (perpendicular to display)
121   //virtual void Zfitall();
122
123 signals:
124   /// Emits by mouse entering the view port
125   void enterViewPort();
126
127   /// Emits by mouse leaving of the view port
128   void leaveViewPort();
129
130 protected:
131   /// processes the application signals to catch the mouse leaving state of the main window
132   /// \param theObject
133   /// \param theEvent
134   bool eventFilter(QObject *theObject, QEvent *theEvent);
135
136 private slots:
137   void onViewCreated(ModuleBase_IViewWindow* theWnd);
138
139 #ifndef HAVE_SALOME
140   void onTryCloseView(AppElements_ViewWindow*);
141   void onDeleteView(AppElements_ViewWindow*);
142   void onViewCreated(AppElements_ViewWindow*);
143   void onActivated(AppElements_ViewWindow*);
144
145   void onMousePress(AppElements_ViewWindow*, QMouseEvent*);
146   void onMouseRelease(AppElements_ViewWindow*, QMouseEvent*);
147   void onMouseDoubleClick(AppElements_ViewWindow*, QMouseEvent*);
148   void onMouseMove(AppElements_ViewWindow*, QMouseEvent*);
149
150   void onKeyPress(AppElements_ViewWindow*, QKeyEvent*);
151   void onKeyRelease(AppElements_ViewWindow*, QKeyEvent*);
152
153   void onViewTransformed(AppElements_ViewWindow::OperationType);
154 #endif
155
156  private:
157    void displayHighlight();
158    void eraseHighlight();
159
160   XGUI_Workshop* myWorkshop;
161   FeaturePtr myFeature;
162   AIS_ListOfInteractive myHighlights;
163 };
164
165 #endif