Salome HOME
Check the multi coincidence between different types of entities (issue #751)
[modules/shaper.git] / src / XGUI / XGUI_ViewerProxy.h
1 // Copyright (C) 2014-20xx CEA/DEN, EDF R&D -->
2
3 #ifndef XGUI_VIEWERPROXY_H
4 #define XGUI_VIEWERPROXY_H
5
6 #include "XGUI.h"
7 #include <ModuleBase_IViewer.h>
8 #include <AppElements_ViewWindow.h>
9
10 class XGUI_Workshop;
11 /**
12  * \ingroup GUI
13  * Proxy class which repersents or AppElements_Viewer or Salome Viewer
14  * dependently on current launching environment.
15  * It is reccomennded to use this class in operation for accessing to viewer 
16  * functionality instead of direct access to a viewer
17  */
18 class XGUI_EXPORT XGUI_ViewerProxy : public ModuleBase_IViewer
19 {
20 Q_OBJECT
21  public:
22    /// Constructor
23    /// \param theParent a parent object
24   XGUI_ViewerProxy(XGUI_Workshop* theParent);
25
26   //! Returns AIS_InteractiveContext from current OCCViewer
27   virtual Handle(AIS_InteractiveContext) AISContext() const;
28
29   //! Retrurns V3d_Vioewer from current viewer
30   virtual Handle(V3d_Viewer) v3dViewer() const;
31
32   //! Returns Vsd_View object from currently active view window
33   virtual Handle(V3d_View) activeView() const;
34
35   //! Enable or disable selection in the viewer
36   virtual void enableSelection(bool isEnabled);
37
38   //! Returns true if selection is enabled
39   virtual bool isSelectionEnabled() const;
40
41   //! Enable or disable multiselection in the viewer
42   virtual void enableMultiselection(bool isEnable);
43
44   //! Returns true if multiselection is enabled
45   virtual bool isMultiSelectionEnabled() const;
46
47   //! Sets the view projection
48   /// \param theX the X projection value
49   /// \param theY the Y projection value
50   /// \param theZ the Z projection value
51   virtual void setViewProjection(double theX, double theY, double theZ);
52
53   //! Sets the view fitted all
54   virtual void fitAll();
55
56   /// Connects to a viewer according to current environment
57   void connectToViewer();
58
59   /// Add selection filter to the viewer
60   virtual void addSelectionFilter(const Handle(SelectMgr_Filter)& theFilter);
61
62   /// Remove selection filter from the viewer
63   virtual void removeSelectionFilter(const Handle(SelectMgr_Filter)& theFilter);
64
65   /// Returns true if the selection filter is set to the viewer
66   /// \param theFilter a selection filter
67   virtual bool hasSelectionFilter(const Handle(SelectMgr_Filter)& theFilter);
68
69   /// Remove all selection filters from the viewer
70   virtual void clearSelectionFilters();
71
72   /// Update current viewer
73   virtual void update();
74
75   /// Method returns True if the viewer can process editing objects 
76   /// by mouse drugging. If this is impossible thet it has to return False.
77   virtual bool canDragByMouse() const;
78
79   // Fit all along Z (perpendicular to display)
80   virtual void Zfitall();
81
82 signals:
83   /// Emits by mouse entering the view port
84   void enterViewPort();
85
86   /// Emits by mouse leaving of the view port
87   void leaveViewPort();
88
89 protected:
90   /// processes the application signals to catch the mouse leaving state of the main window
91   /// \param theObject
92   /// \param theEvent
93   bool eventFilter(QObject *theObject, QEvent *theEvent);
94
95 private slots:
96   void onTryCloseView(AppElements_ViewWindow*);
97   void onDeleteView(AppElements_ViewWindow*);
98   void onViewCreated(ModuleBase_IViewWindow* theWnd);
99   void onViewCreated(AppElements_ViewWindow*);
100   void onActivated(AppElements_ViewWindow*);
101
102   void onMousePress(AppElements_ViewWindow*, QMouseEvent*);
103   void onMouseRelease(AppElements_ViewWindow*, QMouseEvent*);
104   void onMouseDoubleClick(AppElements_ViewWindow*, QMouseEvent*);
105   void onMouseMove(AppElements_ViewWindow*, QMouseEvent*);
106
107   void onKeyPress(AppElements_ViewWindow*, QKeyEvent*);
108   void onKeyRelease(AppElements_ViewWindow*, QKeyEvent*);
109
110   void onViewTransformed(AppElements_ViewWindow::OperationType);
111
112  private:
113   XGUI_Workshop* myWorkshop;
114 };
115
116 #endif