1 // Copyright (C) 2007-2023 CEA, EDF, OPEN CASCADE
3 // Copyright (C) 2003-2007 OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
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.
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.
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
20 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
23 #ifndef OCCVIEWER_VIEWPORT3D_H
24 #define OCCVIEWER_VIEWPORT3D_H
26 #include "OCCViewer_ViewPort.h"
29 #include <V3d_View.hxx>
30 #include <V3d_Viewer.hxx>
37 #pragma warning ( disable:4251 )
40 class OCCVIEWER_EXPORT OCCViewer_ViewPort3d: public OCCViewer_ViewPort
44 friend class OCCViewer_ViewTransformer;
47 OCCViewer_ViewPort3d( QWidget*, const Handle(V3d_Viewer)&, V3d_TypeOfView = V3d_ORTHOGRAPHIC );
48 virtual ~OCCViewer_ViewPort3d();
51 Handle(V3d_View) getView() const;
52 Handle(V3d_View) setView( const Handle(V3d_View)& );
53 Handle(V3d_Viewer) getViewer() const;
55 virtual void setBackgroundColor( const QColor& color); // obsolete
56 virtual QColor backgroundColor() const; // obsolete
57 void setBackground( const Qtx::BackgroundData& color);
58 Qtx::BackgroundData background() const;
60 virtual int getBgImgHeight(){return myBgImgHeight; };
61 virtual int getBgImgWidth() {return myBgImgWidth; };
63 // void setActive( V3d_TypeOfView );
64 virtual bool syncronize( const OCCViewer_ViewPort3d* );
66 void getAxialScale( double&, double&, double& );
68 virtual void onUpdate();
72 virtual void pan( int , int );
73 virtual void setCenter( int , int );
74 virtual void fitRect( const QRect& );
75 virtual void startZoomAtPoint( int, int );
76 virtual void zoom( int, int, int, int );
77 virtual void fitAll( bool keepScale = false, bool withZ = true, bool upd = true );
78 virtual void rotateXY( double );
79 virtual void setAxialScale( double, double, double );
81 virtual void startRotation( int, int, int, const gp_Pnt& );
82 virtual void rotate( int, int, int, const gp_Pnt& );
83 virtual void endRotation();
84 bool isBusy() {return myBusy;} // check that View Port is fully initialized
86 void setAdvancedZoomingEnabled( const bool theState ) { myIsAdvancedZoomingEnabled = theState; }
87 bool isAdvancedZoomingEnabled() const { return myIsAdvancedZoomingEnabled; }
89 void showStaticTrihedron( bool );
91 void setDefaultCursor( Qt::CursorShape theCursorShape );
92 QCursor* getDefaultCursor() const;
95 void vpChangeBackground( const Qtx::BackgroundData& );
96 void vpClosed(OCCViewer_ViewPort3d*);
97 void vpMapped(OCCViewer_ViewPort3d*);
98 void vpResizeEvent( QResizeEvent* );
101 virtual bool synchronize( OCCViewer_ViewPort* );
104 void repaintViewAfterMove();
108 virtual void paintEvent( QPaintEvent* );
109 virtual void resizeEvent( QResizeEvent* );
112 virtual void attachWindow( const Handle(V3d_View)&, const Handle(Aspect_Window)& );
115 Handle(V3d_View) activeView() const;
116 Handle(V3d_View) inactiveView() const;
117 bool mapView( const Handle(V3d_View)& );
118 bool setWindow( const Handle(V3d_View)& );
119 bool mapped( const Handle(V3d_View)& ) const;
120 void updateBackground();
121 void setDefaultParams();
124 Handle(V3d_View) myActiveView;
127 bool myIsAdvancedZoomingEnabled;
128 Qtx::BackgroundData myBackground;
135 #pragma warning ( default:4251 )