Salome HOME
Updated copyright comment
[modules/gui.git] / src / OCCViewer / OCCViewer_ViewPort3d.cxx
old mode 100755 (executable)
new mode 100644 (file)
index 66225b6..23cf8b4
-// Copyright (C) 2005  OPEN CASCADE, CEA/DEN, EDF R&D, PRINCIPIA R&D
-// 
+// Copyright (C) 2007-2024  CEA, EDF, OPEN CASCADE
+//
+// Copyright (C) 2003-2007  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
+// CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
+//
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Lesser General Public
-// License as published by the Free Software Foundation; either 
-// version 2.1 of the License.
-// 
-// This library is distributed in the hope that it will be useful 
-// but WITHOUT ANY WARRANTY; without even the implied warranty of 
-// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU 
+// License as published by the Free Software Foundation; either
+// version 2.1 of the License, or (at your option) any later version.
+//
+// This library is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 // Lesser General Public License for more details.
 //
-// You should have received a copy of the GNU Lesser General Public  
-// License along with this library; if not, write to the Free Software 
+// You should have received a copy of the GNU Lesser General Public
+// License along with this library; if not, write to the Free Software
 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
 //
-// See http://www.salome-platform.org/
+// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
 //
 
 #include "OCCViewer_ViewPort3d.h"
 
 #include "OCCViewer_VService.h"
-
-#include <qrect.h>
-#include <qevent.h>
-#include <qapplication.h>
-
-#include <Visual3d_View.hxx>
-#include <V3d_PerspectiveView.hxx>
-#include <V3d_OrthographicView.hxx>
-
-#if defined WNT
+#include "OCCViewer_ViewWindow.h"
+#include "OCCViewer_ViewModel.h"
+
+#include <SUIT_ViewManager.h>
+#include <SUIT_ViewModel.h>
+#include <SUIT_Session.h>
+#include <SUIT_ResourceMgr.h>
+
+#include <QColor>
+#include <QFileInfo>
+#include <QString>
+#include <QRect>
+#include <QPaintEvent>
+#include <QResizeEvent>
+#include <QApplication>
+#include <QTimer>
+#include <QDateTime>
+
+#include <gp_Quaternion.hxx>
+#include <V3d_View.hxx>
+
+#include "utilities.h"
+
+#if defined WIN32
 #include <WNT_Window.hxx>
 #else
-#include <Xw_Window.hxx>
+//#include <Xw_Window.hxx>
 #endif
 
+static double rx = 0.;
+static double ry = 0.;
+static int sx = 0;
+static int sy = 0;
+static Standard_Boolean zRotation = Standard_False;
+
+//#include <Standard_Version.hxx>
+
 /*!
-    Constructor
+  Constructor
 */
 OCCViewer_ViewPort3d::OCCViewer_ViewPort3d( QWidget* parent, const Handle( V3d_Viewer)& viewer, V3d_TypeOfView  type )
-: OCCViewer_ViewPort( parent ),
-myScale( 1.0 ),
-myDegenerated( true ),
-myAnimate( false )
+  : OCCViewer_ViewPort( parent ),
+    myBusy( true ),
+    myScale( 1.0 ),
+    myIsAdvancedZoomingEnabled( false ),
+    myRotAngle( 0.0 ),
+    myIsRotating( false )
 {
-  selectVisualId();
+  // VSR: 01/07/2010 commented to avoid SIGSEGV at SALOME exit
+  //selectVisualId();
 
-  if ( type == V3d_ORTHOGRAPHIC ) {
-    myOrthoView = new V3d_OrthographicView( viewer );
-    myActiveView = myOrthoView;
-    myPerspView = 0;
-  } else {
-    myPerspView = new V3d_PerspectiveView( viewer );
-    myActiveView = myPerspView;
-  }
-  if ( myDegenerated )
-    activeView()->SetDegenerateModeOn();
+  myActiveView = new V3d_View( viewer, type );
+
+  setDefaultParams();
+
+  myCursor = NULL;
+  myRotTimer = NULL;
 }
 
 /*!
-    Destructor
+  Destructor
 */
 OCCViewer_ViewPort3d::~OCCViewer_ViewPort3d()
 {
+  if ( myRotTimer )
+  {
+    myRotTimer->stop();
+    delete myRotTimer;
+    myRotTimer = NULL;
+  }
+
+  if ( myCursor )
+  {
+    delete myCursor;
+    myCursor = NULL;
+  }
+
+  emit vpClosed(this);
   Handle(V3d_View) aView = activeView();
   if (!aView.IsNull())
     aView->Remove();
 }
 
 /*!
-    Activates the desired 'type' of view in the viewer
-    ( view of 'type' is created if it doesn't exist ). [ public ]
+  Activates the desired 'type' of view in the viewer
+  ( view of 'type' is created if it doesn't exist ). [ public ]
 */
 /*void OCCViewer_ViewPort3d::setActive( V3d_TypeOfView type )
 {
-    if ( activeView().IsNull() )
-        return;
+  if ( activeView().IsNull() )
+  return;
 
-    if ( activeView()->Type() != type )
-    {
-        if ( type == V3d_ORTHOGRAPHIC )
-            setView( myOrthoView );
-        if ( type == V3d_PERSPECTIVE )
-            setView( myPerspView );
-    }
+  if ( activeView()->Type() != type )
+  {
+  if ( type == V3d_ORTHOGRAPHIC )
+  setView( myOrthoView );
+  if ( type == V3d_PERSPECTIVE )
+  setView( myPerspView );
+  }
 }*/
 
 /*!
-    Maps CasCade 'view' to this viewport. [ private ]
+  Maps CasCade 'view' to this viewport. [ private ]
 */
 bool OCCViewer_ViewPort3d::mapView( const Handle(V3d_View)& view )
 {
   if ( !setWindow( view ) )
     return false;
 
-  if ( !mapped( view ) )
-       {
-               view->SetWindow( myWindow );
-               if ( view != activeView() )
-           view->View()->Deactivate();
-       }
+  if ( !mapped( view ) ) {
+    view->SetWindow( myWindow );
+    if ( view != activeView() )
+      view->View()->Deactivate();
+  }
+
+  emit( vpMapped(this) );
+
   return true;
 }
 
+
+
 /*!
-    Sets new CASCADE view on viewport. Returns the previous active view. [ public ]
+  Sets new CASCADE view on viewport. Returns the previous active view. [ public ]
 */
 Handle( V3d_View ) OCCViewer_ViewPort3d::setView( const Handle( V3d_View )& view )
 {
@@ -112,46 +154,42 @@ Handle( V3d_View ) OCCViewer_ViewPort3d::setView( const Handle( V3d_View )& view
   if ( view == activeView() || !mapView( view ) )
     return activeView();
 
-    /* activate the new view*/
+  /* activate the new view*/
   Handle( V3d_View ) oldView = activeView();
-       if ( !oldView.IsNull() )
-  {
-               oldView->View()->Deactivate();
-               view->SetBackgroundColor( oldView->BackgroundColor() );
-       }
-  if ( myDegenerated )
-    view->SetDegenerateModeOn();
-  else
-    view->SetDegenerateModeOff();
+  if ( !oldView.IsNull() ) {
+    if (oldView->View()->IsDefined())
+      oldView->View()->Deactivate();
+    view->SetBackgroundColor( oldView->BackgroundColor() );
+  }
 
   view->View()->Activate();
   activeView() = view;
-       return oldView;
+  return oldView;
 }
 
 /*!
-    Returns CasCade 3D view. [ public ]
+  Returns CasCade 3D view. [ public ]
 */
 Handle(V3d_View) OCCViewer_ViewPort3d::getView() const
 {
-       return activeView();
+  return activeView();
 }
 
 /*!
-    Returns CasCade 3D viewer [ public ]
+  Returns CasCade 3D viewer [ public ]
 */
 Handle(V3d_Viewer) OCCViewer_ViewPort3d::getViewer() const
 {
-       Handle(V3d_Viewer) viewer;
-       if ( !activeView().IsNull() )
+  Handle(V3d_Viewer) viewer;
+  if ( !activeView().IsNull() )
     viewer = activeView()->Viewer();
-       return viewer;
+  return viewer;
 }
 
 /*!
-    Syncronizes visual state of this viewport with 'ref'
-    ( scale, projection, eye etc ) Returns 'true' if copied OK,
-    'false' otherwise. [ virtual public ]
+  Syncronizes visual state of this viewport with 'ref'
+  ( scale, projection, eye etc ) Returns 'true' if copied OK,
+  'false' otherwise. [ virtual public ]
 */
 bool OCCViewer_ViewPort3d::syncronize( const OCCViewer_ViewPort3d* ref )
 {
@@ -160,11 +198,11 @@ bool OCCViewer_ViewPort3d::syncronize( const OCCViewer_ViewPort3d* ref )
   Handle(V3d_View) tgtView = getView();
 
   /* Syncronize view types */
-/*    if ( tgtView->Type() != refView->Type() )
-  {
-      setActive( refView->Type() );
-      tgtView = getView();
-  }*/
+  /*    if ( tgtView->Type() != refView->Type() )
+        {
+        setActive( refView->Type() );
+        tgtView = getView();
+        }*/
 
   /*  The following params are copied:
       - view type( ortho/persp )
@@ -182,7 +220,7 @@ bool OCCViewer_ViewPort3d::syncronize( const OCCViewer_ViewPort3d* ref )
 
   /* perspective */
   if ( refView->Type() == V3d_PERSPECTIVE )
-      tgtView->SetFocale( refView->Focale() );
+    tgtView->SetFocale( refView->Focale() );
 
   /* copy params */
   Standard_Real x, y, z;
@@ -190,84 +228,165 @@ bool OCCViewer_ViewPort3d::syncronize( const OCCViewer_ViewPort3d* ref )
   refView->Up( x, y, z ); tgtView->SetUp( x, y, z );
   refView->Eye( x, y, z ); tgtView->SetEye( x, y, z );
   refView->Proj( x, y, z ); tgtView->SetProj( x, y, z );
-  refView->Center( x, y ); tgtView->SetCenter( x, y );
   tgtView->SetScale( refView->Scale() );
   tgtView->SetTwist( refView->Twist() );
 
   /* update */
   tgtView->Update();
   tgtView->SetImmediateUpdate( Standard_True );
+
   return true;
 }
 
+
 /*!
-    Returns Z-size of this view. [ public ]
+  Get axial scale to the view
 */
-double OCCViewer_ViewPort3d::getZSize() const
+void OCCViewer_ViewPort3d::getAxialScale( double& xScale, double& yScale, double& zScale )
 {
+  xScale = yScale = zScale = 1.;
+
   if ( !activeView().IsNull() )
-    return activeView()->ZSize();
-  return 0;
+    activeView()->AxialScale( xScale, yScale, zScale );
 }
 
 /*!
-    Sets Z-size of this view ( for both orthographic and perspective ). [ public ]
+  Returns the background color [ virtual public ] [ obsolete ]
 */
-void OCCViewer_ViewPort3d::setZSize( double zsize )
+QColor OCCViewer_ViewPort3d::backgroundColor() const
 {
-  myActiveView->SetZSize( zsize );
-/*    if ( !myOrthoView.IsNull() )
-        myOrthoView->SetZSize( zsize );
-    if ( !myPerspView.IsNull() )
-        myPerspView->SetZSize( zsize );*/
+  return background().color();
 }
 
 /*!
-    Returns the background color [ virtual public ]
+  Sets the background color [ virtual public ] [ obsolete ]
 */
-QColor OCCViewer_ViewPort3d::backgroundColor() const
+void OCCViewer_ViewPort3d::setBackgroundColor( const QColor& color )
 {
-       if ( !activeView().IsNull() )
-       {
-               Standard_Real aRed, aGreen, aBlue;
-               activeView()->BackgroundColor( Quantity_TOC_RGB, aRed, aGreen, aBlue );
-               int red = (int) (aRed * 255);
-               int green = (int) (aGreen * 255);
-               int blue = (int) (aBlue * 255);
-               return QColor( red, green, blue );
-       }
-       return OCCViewer_ViewPort::backgroundColor();
+  Qtx::BackgroundData bg = background();
+  bg.setColor( color );
+  setBackground( bg );
 }
 
 /*!
-    Sets the background color [ virtual public ]
+  Returns the background data
 */
-void OCCViewer_ViewPort3d::setBackgroundColor( const QColor& color )
+Qtx::BackgroundData OCCViewer_ViewPort3d::background() const
 {
-       if ( !activeView().IsNull() )
-       {
-               activeView()->SetBackgroundColor( Quantity_TOC_RGB, color.red()/255.,
-                                                                                                 color.green()/255., color.blue()/255.);
-               activeView()->Update();
-    emit vpChangeBGColor( color );
-       }
+  return myBackground;
 }
 
 /*!
-  Set animation mode
-  \param theDegenerated - degenerated mode
+  Sets the background data
 */
-void OCCViewer_ViewPort3d::setAnimationMode(bool theDegenerated)
+void OCCViewer_ViewPort3d::setBackground( const Qtx::BackgroundData& bgData )
+{
+  if ( bgData.isValid() ) {
+    myBackground = bgData;
+    updateBackground();
+    emit vpChangeBackground( myBackground );
+  }
+}
+
+void OCCViewer_ViewPort3d::updateBackground()
 {
-       if ( !activeView().IsNull() )
-       {
-    myAnimate = theDegenerated;
-    activeView()->SetAnimationMode(true, theDegenerated);
+  if ( activeView().IsNull() ) return;
+  if ( !myBackground.isValid() ) return;
+
+  switch ( myBackground.mode() ) {
+  case Qtx::ColorBackground:
+    {
+      QColor c = myBackground.color();
+      if ( c.isValid() ) {
+       // Unset texture should be done here
+       // ...
+       Quantity_Color qCol( c.red()/255., c.green()/255., c.blue()/255., Quantity_TOC_RGB );
+       activeView()->SetBgGradientStyle( Aspect_GFM_NONE ); // cancel gradient background
+       activeView()->SetBgImageStyle( Aspect_FM_NONE );     // cancel texture background
+       // then change background color
+       activeView()->SetBackgroundColor( qCol );
+       // update viewer
+       activeView()->Update();
+      }
+      break;
+    }
+  case Qtx::SimpleGradientBackground:
+    {
+      QColor c1, c2;
+      int type = myBackground.gradient( c1, c2 );
+      if ( c1.isValid() && type >= OCCViewer_Viewer::HorizontalGradient && type <= OCCViewer_Viewer::LastGradient ) {
+       // Unset texture should be done here
+       // ...
+       // Get colors and set-up gradiented background
+       if ( !c2.isValid() ) c2 = c1;
+       Quantity_Color qCol1( c1.red()/255., c1.green()/255., c1.blue()/255., Quantity_TOC_RGB );
+       Quantity_Color qCol2( c2.red()/255., c2.green()/255., c2.blue()/255., Quantity_TOC_RGB );
+       activeView()->SetBgImageStyle( Aspect_FM_NONE );    // cancel texture background
+       switch ( type ) {
+       case OCCViewer_Viewer::HorizontalGradient:
+         activeView()->SetBgGradientColors( qCol1, qCol2, Aspect_GFM_HOR, Standard_True );
+         break;
+       case OCCViewer_Viewer::VerticalGradient:
+         activeView()->SetBgGradientColors( qCol1, qCol2, Aspect_GFM_VER, Standard_True );
+         break;
+       case OCCViewer_Viewer::Diagonal1Gradient:
+         activeView()->SetBgGradientColors( qCol1, qCol2, Aspect_GFM_DIAG1, Standard_True );
+         break;
+       case OCCViewer_Viewer::Diagonal2Gradient:
+         activeView()->SetBgGradientColors( qCol1, qCol2, Aspect_GFM_DIAG2, Standard_True );
+         break;
+       case OCCViewer_Viewer::Corner1Gradient:
+         activeView()->SetBgGradientColors( qCol1, qCol2, Aspect_GFM_CORNER1, Standard_True );
+         break;
+       case OCCViewer_Viewer::Corner2Gradient:
+         activeView()->SetBgGradientColors( qCol1, qCol2, Aspect_GFM_CORNER2, Standard_True );
+         break;
+       case OCCViewer_Viewer::Corner3Gradient:
+         activeView()->SetBgGradientColors( qCol1, qCol2, Aspect_GFM_CORNER3, Standard_True );
+         break;
+       case OCCViewer_Viewer::Corner4Gradient:
+         activeView()->SetBgGradientColors( qCol1, qCol2, Aspect_GFM_CORNER4, Standard_True );
+         break;
+       default:
+         break;
+       }
+      }
+      break;
+    }
+  case Qtx::CustomGradientBackground:
+    {
+      // NOT IMPLEMENTED YET
+      break;
+    }
+  default:
+    break;
+  }
+  if ( myBackground.isTextureShown() ) {
+    QString fileName;
+    int textureMode = myBackground.texture( fileName );
+    QFileInfo fi( fileName );
+    if ( !fileName.isEmpty() && fi.exists() ) {
+      // set texture image: file name and fill mode
+      switch ( textureMode ) {
+      case Qtx::CenterTexture:
+       activeView()->SetBackgroundImage( fi.absoluteFilePath().toUtf8().constData(), Aspect_FM_CENTERED );
+       break;
+      case Qtx::TileTexture:
+       activeView()->SetBackgroundImage( fi.absoluteFilePath().toUtf8().constData(), Aspect_FM_TILED );
+       break;
+      case Qtx::StretchTexture:
+       activeView()->SetBackgroundImage( fi.absoluteFilePath().toUtf8().constData(), Aspect_FM_STRETCH );
+       break;
+      default:
+       break;
+      }
+      activeView()->Update();
+    }
   }
 }
 
 /*!
-    Updates the active viewport. [ virtual public ]
+  Updates the active viewport. [ virtual public ]
 */
 void OCCViewer_ViewPort3d::onUpdate()
 {
@@ -276,187 +395,478 @@ void OCCViewer_ViewPort3d::onUpdate()
 }
 
 /*!
-    Called at 'window fit' transformation. [ virtual protected ]
+  Called at 'window fit' transformation. [ virtual protected ]
 */
 void OCCViewer_ViewPort3d::fitRect( const QRect& rect )
 {
-       if ( !activeView().IsNull() )
-         activeView()->WindowFit( rect.left(), rect.top(), rect.right(), rect.bottom() );
+  if ( !activeView().IsNull() ) {
+    activeView()->WindowFit( rect.left(), rect.top(), rect.right(), rect.bottom() );
+    emit vpTransformed( this );
+  }
 }
 
 /*!
-    Called at 'zoom' transformation. [ virtual protected ]
+  Inits 'zoom' transformation. [ protected ]
+*/
+void OCCViewer_ViewPort3d::startZoomAtPoint( int x, int y )
+{
+  // if (myIsRotating)
+  //   stopRotation();
+
+  if ( !activeView().IsNull() && isAdvancedZoomingEnabled() )
+    activeView()->StartZoomAtPoint( x, y );
+}
+
+/*!
+  Called at 'zoom' transformation. [ virtual protected ]
 */
 void OCCViewer_ViewPort3d::zoom( int x0, int y0, int x, int y )
 {
-       if ( !activeView().IsNull() )
-           activeView()->Zoom( x0, y0, x, y );
+  // if (myIsRotating)
+  //   stopRotation();
+
+  if ( !activeView().IsNull() ) {
+    // as OCCT respects a sign of only dx,
+    // but we want both signes to be taken into account
+    //activeView()->Zoom( x0, y0, x, y );
+    if ( isAdvancedZoomingEnabled() )
+      activeView()->ZoomAtPoint( x0, y0, x, y );
+    else
+      activeView()->Zoom( x0 + y0, 0, x + y, 0 );
+    emit vpTransformed( this );
+  }
 }
 
 /*!
-    Centers the viewport. [ virtual protected ]
+  Centers the viewport. [ virtual protected ]
 */
 void OCCViewer_ViewPort3d::setCenter( int x, int y )
 {
-       if ( !activeView().IsNull() )
-           activeView()->Place( x, y, myScale );
+  if (myIsRotating)
+    stopRotation();
+
+  if ( !activeView().IsNull() ) {
+    activeView()->Place( x, y, myScale );
+    emit vpTransformed( this );
+  }
 }
 
 /*!
-    Called at 'pan' transformation. [ virtual protected ]
+  Called at 'pan' transformation. [ virtual protected ]
 */
 void OCCViewer_ViewPort3d::pan( int dx, int dy )
 {
-       if ( !activeView().IsNull() )
-        activeView()->Pan( dx, dy, 1.0 );
+  if (myIsRotating)
+    stopRotation();
+
+  if ( !activeView().IsNull() ) {
+    activeView()->Pan( dx, dy, 1.0 );
+    emit vpTransformed( this );
+  }
 }
 
 /*!
-    Inits 'rotation' transformation. [ protected ]
+  Inits 'rotation' transformation. [ protected ]
 */
-void OCCViewer_ViewPort3d::startRotation( int x, int y )
+void OCCViewer_ViewPort3d::startRotation( int x, int y,
+                                          int theRotationPointType,
+                                          const gp_Pnt& theSelectedPoint )
 {
-       if ( !activeView().IsNull() )
-  {
-               myDegenerated = activeView()->DegenerateModeIsOn();
-               activeView()->SetDegenerateModeOn();
-    if (myAnimate) activeView()->SetAnimationModeOn();
-               activeView()->StartRotation( x, y, 0.45 );
-       }
+  if (myIsRotating)
+    stopRotation();
+
+  if ( !activeView().IsNull() ) {
+
+    Standard_Real zRotationThreshold, X, Y;
+    sx = x; sy = y;
+    activeView()->Size(X,Y);
+    rx = Standard_Real(activeView()->Convert(X));
+    ry = Standard_Real(activeView()->Convert(Y));
+    gp_Pnt centerPnt;
+
+    switch ( theRotationPointType ) {
+    case OCCViewer_ViewWindow::BBCENTER:
+      centerPnt = activeView()->GravityPoint();
+      zRotation = Standard_False;
+      zRotationThreshold = 0.45;
+      if( zRotationThreshold > 0. ) {
+        Standard_Real dx = Abs(sx - rx/2.);
+        Standard_Real dy = Abs(sy - ry/2.);
+        Standard_Real dd = zRotationThreshold * (rx + ry)/2.;
+        if( dx > dd || dy > dd ) zRotation = Standard_True;
+      }
+      activeView()->StartRotation( x, y, 0.45 );
+      break;
+    case OCCViewer_ViewWindow::SELECTED:
+      activeView()->Rotate( 0., 0., 0.,
+                            theSelectedPoint.X(),theSelectedPoint.Y(), theSelectedPoint.Z(),
+                            Standard_True );
+
+      zRotation = Standard_False;
+      zRotationThreshold = 0.45;
+      if( zRotationThreshold > 0. ) {
+        Standard_Real dx = Abs(sx - rx/2.);
+        Standard_Real dy = Abs(sy - ry/2.);
+        Standard_Real dd = zRotationThreshold * (rx + ry)/2.;
+        if( dx > dd || dy > dd ) zRotation = Standard_True;
+      }
+      break;
+    default:
+      break;
+    }
+    // VSR: 10.06.2015: next line commented out - causes ugly blinking on starting rotation with Perspective projection mode
+    //activeView()->DepthFitAll();
+  }
 }
 
 /*!
-    Rotates the viewport. [ protected ]
+  Rotates the viewport. [ protected ]
 */
-void OCCViewer_ViewPort3d::rotate( int x, int y )
+void OCCViewer_ViewPort3d::rotate( int x, int y,
+                                   int theRotationPointType,
+                                   const gp_Pnt& theSelectedPoint )
 {
-       if ( !activeView().IsNull() )
-           activeView()->Rotation( x, y );
-//  setZSize( getZSize() );
+  if ( !activeView().IsNull() ) {
+    switch ( theRotationPointType ) {
+    case OCCViewer_ViewWindow::BBCENTER:
+      activeView()->Rotation( x, y );
+      break;
+    case OCCViewer_ViewWindow::SELECTED:
+      double dx, dy, dz;
+      if( zRotation ) {
+        dz = atan2(Standard_Real(x)-rx/2., ry/2.-Standard_Real(y)) -
+          atan2(sx-rx/2.,ry/2.-sy);
+        dx = dy = 0.;
+      }
+      else {
+        dx = (Standard_Real(x) - sx) * M_PI/rx;
+        dy = (sy - Standard_Real(y)) * M_PI/ry;
+        dz = 0.;
+      }
+
+      activeView()->Rotate( dx, dy, dz,
+                            theSelectedPoint.X(),theSelectedPoint.Y(), theSelectedPoint.Z(),
+                            Standard_False );
+      break;
+    default:
+      break;
+    }
+    emit vpTransformed( this );
+  }
+  //  setZSize( getZSize() );
 }
 
 /*!
-    Resets the viewport after 'rotation'. [ protected ]
+  Resets the viewport after 'rotation'. [ protected ]
 */
 void OCCViewer_ViewPort3d::endRotation()
 {
-       if ( !activeView().IsNull() )
-  {
-    if (myAnimate) activeView()->SetAnimationModeOff();
-               if ( !myDegenerated )
-      activeView()->SetDegenerateModeOff();
-    activeView()->ZFitAll(1.);
-    activeView()->SetZSize(0.);
+  if ( !activeView().IsNull() ) {
     activeView()->Update();
-       }
+    emit vpTransformed( this );
+  }
 }
 
 /*!
-    Repaints the viewport. [ virtual protected ]
+  Set the rotation axis and start automatic rotation
+*/
+void OCCViewer_ViewPort3d::setRotationAxis(const gp_Vec& theAxis, double theAngle, double theZAngle)
+{
+  myRotAxis.SetLocation(activeView()->GravityPoint());
+  if (zRotation) {
+    gp_Dir anAxisDir = activeView()->Camera()->Direction();
+    myRotAxis.SetDirection(anAxisDir.Reversed());
+    myRotAngle = theZAngle;
+  }
+  else {
+    myRotAxis.SetDirection(gp_Dir(theAxis));
+    myRotAngle = theAngle;
+  }
+  if (!myRotTimer) {
+    myRotTimer = new QTimer(this);
+    myRotTimer->setSingleShot(true);
+    connect(myRotTimer, SIGNAL(timeout()), this, SLOT(updateRotation()));
+  }
+  else
+    myRotTimer->stop();
+
+  myIsRotating = true;
+  myLastRender = QDateTime::currentMSecsSinceEpoch();
+  Handle(Graphic3d_Camera) aCamera = activeView()->Camera();
+  gp_Trsf trsfRot;
+  trsfRot.SetRotation (myRotAxis, myRotAngle);
+  aCamera->Transform(trsfRot);
+  activeView()->SetCamera(aCamera);
+  myRotTimer->start(20);
+}
+
+/*!
+  Stop the automatic rotation
+*/
+void OCCViewer_ViewPort3d::stopRotation()
+{
+  myIsRotating = false;
+  if (myRotTimer)
+    myRotTimer->stop();
+}
+
+/*!
+  Update the automatic rotation animation
+*/
+void OCCViewer_ViewPort3d::updateRotation()
+{
+  if (!myIsRotating)
+    return;
+
+  qint64 curTime = QDateTime::currentMSecsSinceEpoch();
+  double angle = myRotAngle * (curTime - myLastRender) / 100.;
+  Handle(Graphic3d_Camera) aCamera = activeView()->Camera();
+  gp_Trsf trsfRot;
+  trsfRot.SetRotation(myRotAxis, angle);
+  aCamera->Transform(trsfRot);
+  activeView()->SetCamera(aCamera);
+
+  myLastRender = curTime;
+  if (myRotTimer)
+    myRotTimer->start(20);
+}
+
+/*!
+  Repaints the viewport. [ virtual protected ]
 */
 void OCCViewer_ViewPort3d::paintEvent( QPaintEvent* e )
 {
-#ifndef WNT
-       /* X11 : map before show doesn't work */
-       if ( !mapped( activeView() ) )
-       mapView( activeView() );
+#ifndef WIN32
+  /* X11 : map before show doesn't work */
+  if ( !mapped( activeView() ) )
+    mapView( activeView() );
 #endif
-       if ( !myWindow.IsNull() )
-       {
-               QApplication::syncX();
-               QRect rc = e->rect();
-               if ( !myPaintersRedrawing )
-                   activeView()->Redraw( rc.x(), rc.y(), rc.width(), rc.height() );
-       }
-       OCCViewer_ViewPort::paintEvent( e );
+  if ( !myWindow.IsNull() ) {
+    if ( !myPaintersRedrawing ) {
+      activeView()->Redraw();
+    }
+  }
+  OCCViewer_ViewPort::paintEvent( e );
+  myBusy = false;
 }
 
 /*!
-    Resizes the viewport. [ virtual protected ]
+  Resizes the viewport. [ virtual protected ]
 */
 void OCCViewer_ViewPort3d::resizeEvent( QResizeEvent* e )
 {
-#ifdef WNT
-       /* Win32 : map before first show to avoid flicker */
-       if ( !mapped( activeView() ) )
-           mapView( activeView() );
-#endif
-       QApplication::syncX();
-    if ( !activeView().IsNull() )
-        activeView()->MustBeResized();
+  /* Map before first show to avoid flicker */
+  if ( !mapped( activeView() ) )
+    mapView( activeView() );
+  QTimer::singleShot( 0, this, SLOT( repaintViewAfterMove() ) );
+  emit vpResizeEvent( e );
+}
+
+/*!
+  Moved the viewport
+*/
+void OCCViewer_ViewPort3d::repaintViewAfterMove( )
+{
+  if ( !activeView().IsNull() ){
+    activeView()->MustBeResized();
+  }
 }
 
 /*!
-    Fits all objects in view. [ virtual protected ]
+  Fits all objects in view. [ virtual protected ]
 */
-void OCCViewer_ViewPort3d::fitAll( bool keepScale, bool withZ, bool upd )
+void OCCViewer_ViewPort3d::fitAll( bool keepScale, bool /*withZ*/, bool upd )
 {
-       if ( activeView().IsNull() )
+  if ( activeView().IsNull() )
     return;
 
+  if (myIsRotating)
+    stopRotation();
 
   if ( keepScale )
     myScale = activeView()->Scale();
 
   Standard_Real margin = 0.01;
-  activeView()->FitAll( margin, withZ, upd );
-  activeView()->SetZSize(0.);
+  
+  activeView()->FitAll( margin, upd );
+
+  emit vpTransformed( this );
 }
 
 /*!
-    Resets the view. [ virtual protected ]
+  Resets the view. [ virtual protected ]
 */
 void OCCViewer_ViewPort3d::reset()
 {
-//  double zsize = getZSize();
-       if ( !activeView().IsNull() )
-        activeView()->Reset();
-//    setZSize( zsize );
+  if (myIsRotating)
+    stopRotation();
+
+  //  double zsize = getZSize();
+  if ( !activeView().IsNull() ) {
+    activeView()->Reset();
+    emit vpTransformed( this );
+  //    setZSize( zsize );
+  }
 }
 
 /*!
-    Passed the handle of native window of the component to CASCADE view. [ private ]
+  Rotate the view in the view plane (orthogonal to the view vector)
+*/
+void OCCViewer_ViewPort3d::rotateXY( double degrees )
+{
+  if ( activeView().IsNull() )
+    return;
+
+  if (myIsRotating)
+    stopRotation();
+
+  int x = width()/2, y = height()/2;
+  double X, Y, Z;
+  activeView()->Convert( x, y, X, Y, Z );
+  activeView()->Rotate( 0, 0, degrees * M_PI / 180., X, Y, Z );
+  emit vpTransformed( this );
+}
+
+/*!
+  Set axial scale to the view
+*/
+void OCCViewer_ViewPort3d::setAxialScale( double xScale, double yScale, double zScale )
+{
+  if ( activeView().IsNull() )
+    return;
+
+  activeView()->SetAxialScale( xScale, yScale, zScale );
+  emit vpTransformed( this );
+}
+
+/*!
+  Passed the handle of native window of the component to CASCADE view. [ private ]
 */
 bool OCCViewer_ViewPort3d::setWindow( const Handle(V3d_View)& view )
 {
-       if ( !myWindow.IsNull() )
-               return true;
+  if ( !myWindow.IsNull() )
+    return true;
+
+  if ( view.IsNull() )
+    return false;
 
-       if ( view.IsNull() )
-               return false;
+  attachWindow( view, OCCViewer_VService::CreateWindow( view, winId() ) );
 
-       int hwnd = (int)winId();
-       if ( !hwnd )
-        return false;
+  myWindow = view->Window();
+  return !myWindow.IsNull();
+}
 
-       /* set this widget as the drawing window */
-       short lo = (short)hwnd;
-       short hi = (short)( hwnd >> 16 );
-       OCCViewer_VService::SetWindow( view, (int)hi, (int)lo, Xw_WQ_SAMEQUALITY );
-       myWindow = view->Window();
-       return !myWindow.IsNull();
+void OCCViewer_ViewPort3d::attachWindow( const Handle(V3d_View)& view,
+                                         const Handle(Aspect_Window)& window)
+{
+  if (!view.IsNull()) {
+    view->SetWindow( window );
+    updateBackground();
+  }
 }
 
 /*!
-       Returns the current active view. [ private ]
+  Returns the current active view. [ private ]
 */
 Handle(V3d_View) OCCViewer_ViewPort3d::activeView() const
 {
-       return myActiveView;
+  return myActiveView;
 }
 
 /*!
-       Returns the current inactive view [ private ]
+  Returns the current inactive view [ private ]
 */
 /*Handle(V3d_View) OCCViewer_ViewPort3d::inactiveView() const
-{
-       return ( activeView() == myOrthoView ? myPerspView : myOrthoView );
-}*/
+  {
+  return ( activeView() == myOrthoView ? myPerspView : myOrthoView );
+  }*/
 
 /*!
-       Returns 'true' if the given view is mapped to window. [ private ]
+  Returns 'true' if the given view is mapped to window. [ private ]
 */
 bool OCCViewer_ViewPort3d::mapped( const Handle(V3d_View)& view ) const
 {
-       return ( !view.IsNull() && view->View()->IsDefined() );
+  return ( !view.IsNull() && view->View()->IsDefined() );
+}
+
+/*!
+  Performs synchronization of view parameters with the specified view.
+  Returns \c true if synchronization is done successfully or \c false otherwise.
+  Default implementation does nothing (return \c false)
+*/
+bool OCCViewer_ViewPort3d::synchronize( OCCViewer_ViewPort* view )
+{
+  bool ok = false;
+  OCCViewer_ViewPort3d* vp3d = qobject_cast<OCCViewer_ViewPort3d*>( view );
+  if ( vp3d ) {
+    bool blocked = blockSignals( false );
+    Handle(V3d_View) aView3d = getView();
+    Handle(V3d_View) aRefView3d = vp3d->getView();
+    aView3d->SetImmediateUpdate( Standard_False );
+    aView3d->Camera()->Copy( aRefView3d->Camera() );
+    aView3d->SetImmediateUpdate( Standard_True );
+    aView3d->Update();
+    blockSignals( blocked );
+    ok = true;
+  }
+  return ok;
+}
+
+/*
+ * Show/Hide static triedron
+ */
+void OCCViewer_ViewPort3d::showStaticTrihedron( bool on )
+{
+  Handle(V3d_View) aView = activeView();
+  if ( !aView ) return;
+  
+  if ( on ) {
+    aView->ZBufferTriedronSetup();
+    aView->TriedronDisplay( Aspect_TOTP_LEFT_LOWER, Quantity_NOC_WHITE, 0.05, V3d_ZBUFFER );
+  } else {
+    aView->TriedronErase();
+  }
+  aView->Update();
+}
+
+/*
+ * Create default cursor with a specific shape
+ */
+void OCCViewer_ViewPort3d::setDefaultCursor( Qt::CursorShape theCursorShape )
+{
+  if ( !myCursor )
+    myCursor = new QCursor();
+
+  myCursor->setShape( theCursorShape );
+}
+
+/*
+ * Get default cursor with a specific shape
+ */
+QCursor* OCCViewer_ViewPort3d::getDefaultCursor() const
+{
+  return myCursor;
+}
+
+/*
+ * Set default parameters from preferences
+ */
+void OCCViewer_ViewPort3d::setDefaultParams()
+{
+  setBackground( Qtx::BackgroundData( Qt::black ) ); // set default background
+
+  // get ray tracing parameters from preferences
+  int aDepth = SUIT_Session::session()->resourceMgr()->integerValue( "OCCViewer", "rt_depth", 3 );
+  bool aReflection = SUIT_Session::session()->resourceMgr()->booleanValue( "OCCViewer", "rt_reflection", true );
+  bool anAntialiasing = SUIT_Session::session()->resourceMgr()->booleanValue( "OCCViewer", "rt_antialiasing", false );
+  bool aShadow = SUIT_Session::session()->resourceMgr()->booleanValue( "OCCViewer", "rt_shadow", true );
+  bool aTransparentShadow = SUIT_Session::session()->resourceMgr()->booleanValue( "OCCViewer", "rt_trans_shadow", true );
+
+  Graphic3d_RenderingParams& aParams = myActiveView->ChangeRenderingParams();
+  aParams.RaytracingDepth = aDepth;
+  aParams.IsReflectionEnabled = aReflection;
+  aParams.IsAntialiasingEnabled = anAntialiasing;
+  aParams.IsShadowEnabled = aShadow;
+  aParams.IsTransparentShadowEnabled = aTransparentShadow;
+  myActiveView->Redraw();
 }