Salome HOME
[HYDRO 514] Use specific cursors for edition operations.
[modules/gui.git] / src / OCCViewer / OCCViewer_ViewPort3d.h
1 // Copyright (C) 2007-2015  CEA/DEN, EDF R&D, OPEN CASCADE
2 //
3 // Copyright (C) 2003-2007  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
5 //
6 // This library is free software; you can redistribute it and/or
7 // modify it under the terms of the GNU Lesser General Public
8 // License as published by the Free Software Foundation; either
9 // version 2.1 of the License, or (at your option) any later version.
10 //
11 // This library is distributed in the hope that it will be useful,
12 // but WITHOUT ANY WARRANTY; without even the implied warranty of
13 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14 // Lesser General Public License for more details.
15 //
16 // You should have received a copy of the GNU Lesser General Public
17 // License along with this library; if not, write to the Free Software
18 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
19 //
20 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
21 //
22
23 #ifndef OCCVIEWER_VIEWPORT3D_H
24 #define OCCVIEWER_VIEWPORT3D_H
25
26 #include <Basics_OCCTVersion.hxx>
27
28 #include "OCCViewer_ViewPort.h"
29 #include "Qtx.h"
30
31 #include <V3d_View.hxx>
32
33 class QColor;
34 class QString;
35 class QRect;
36
37 class Handle(V3d_Viewer);
38
39 #ifdef WIN32
40 #pragma warning ( disable:4251 )
41 #endif
42
43 class OCCVIEWER_EXPORT OCCViewer_ViewPort3d: public OCCViewer_ViewPort
44 {
45   Q_OBJECT
46
47   friend class OCCViewer_ViewTransformer;
48
49 public:
50   OCCViewer_ViewPort3d( QWidget*, const Handle(V3d_Viewer)&, V3d_TypeOfView = V3d_ORTHOGRAPHIC );
51   virtual ~OCCViewer_ViewPort3d();
52
53 public:
54   Handle(V3d_View)      getView() const;
55   Handle(V3d_View)      setView( const Handle(V3d_View)& );
56   Handle(V3d_Viewer)    getViewer() const;
57
58   virtual void          setBackgroundColor( const QColor& color);    // obsolete
59   virtual QColor        backgroundColor() const;                     // obsolete
60   void                  setBackground( const Qtx::BackgroundData& color);
61   Qtx::BackgroundData   background() const;
62
63   virtual int           getBgImgHeight(){return myBgImgHeight; };
64   virtual int           getBgImgWidth() {return myBgImgWidth;  };
65
66 //   void         setActive( V3d_TypeOfView );
67   virtual bool          syncronize( const OCCViewer_ViewPort3d* );
68
69   double                getZSize() const;
70   void                  setZSize( double );
71
72   void                  getAxialScale( double&, double&, double& );
73
74   virtual void          onUpdate();
75
76   // TRANSFORMATIONS
77   virtual void          reset();
78   virtual void          pan( int , int );
79   virtual void          setCenter( int , int );
80   virtual void          fitRect( const QRect& );
81   virtual void          startZoomAtPoint( int, int );
82   virtual void          zoom( int, int, int, int );
83   virtual void          fitAll( bool keepScale = false, bool withZ = true, bool upd = true );
84   virtual void          rotateXY( double );
85   virtual void          setAxialScale( double, double, double );
86
87   virtual void          startRotation( int, int, int, const gp_Pnt& );
88   virtual void          rotate( int, int, int, const gp_Pnt& );
89   virtual void          endRotation();
90   bool                  isBusy() {return myBusy;} // check that View Port is fully initialized
91
92   void                  setAdvancedZoomingEnabled( const bool theState ) { myIsAdvancedZoomingEnabled = theState; }
93   bool                  isAdvancedZoomingEnabled() const { return myIsAdvancedZoomingEnabled; }
94
95   void                  showStaticTrihedron( bool );
96
97   void                  setDefaultCursor( Qt::CursorShape theCursorShape );
98   QCursor*              getDefaultCursor() const;
99
100 signals:
101   void                  vpChangeBackground( const Qtx::BackgroundData& );
102   void                  vpClosed(OCCViewer_ViewPort3d*);
103   void                  vpMapped(OCCViewer_ViewPort3d*);
104
105 public slots:
106   virtual bool          synchronize( OCCViewer_ViewPort* );
107
108 protected:
109     // EVENTS
110   virtual void          paintEvent( QPaintEvent* );
111   virtual void          resizeEvent( QResizeEvent* );
112
113   // initialization
114   virtual void          attachWindow( const Handle(V3d_View)&, const Handle(Aspect_Window)& );
115
116 private:
117   Handle(V3d_View)      activeView() const;
118   Handle(V3d_View)      inactiveView() const;
119   bool                  mapView( const Handle(V3d_View)& );
120   bool                  setWindow( const Handle(V3d_View)& );
121   bool                  mapped( const Handle(V3d_View)& ) const;
122   void                  updateBackground();
123   
124 private:
125   Handle(V3d_View)      myActiveView;
126 #if OCC_VERSION_LARGE <= 0x06070100
127   Handle(V3d_View)      myOrthoView;
128   Handle(V3d_View)      myPerspView;
129 #endif
130   bool                  myBusy;
131   double                myScale;
132   bool                  myIsAdvancedZoomingEnabled;
133   Qtx::BackgroundData   myBackground;
134   int                   myBgImgHeight;
135   int                   myBgImgWidth;
136   QCursor*              myCursor;
137 };
138
139 #ifdef WIN32
140 #pragma warning ( default:4251 )
141 #endif
142
143 #endif