]> SALOME platform Git repositories - modules/gui.git/commitdiff
Salome HOME
0020938: EDF 1450 GEOM: center of zoom V6_2_0a1
authorvsr <vsr@opencascade.com>
Mon, 6 Dec 2010 13:50:54 +0000 (13:50 +0000)
committervsr <vsr@opencascade.com>
Mon, 6 Dec 2010 13:50:54 +0000 (13:50 +0000)
Additional fix (wrong OCC version fixed)

src/LightApp/LightApp_Application.cxx
src/OCCViewer/OCCViewer_ViewPort3d.cxx
src/OCCViewer/OCCViewer_ViewWindow.cxx

index 7a2fb0fac8018fa973197c1eb22636be20227483..7da67202cccdbe0d9b5146d2ee6e222ac88e8edb 100644 (file)
@@ -1998,7 +1998,7 @@ void LightApp_Application::createPreferences( LightApp_Preferences* pref )
   pref->setItemProperty( "strings", aStyleModeList, occStyleMode );
   pref->setItemProperty( "indexes", aModeIndexesList, occStyleMode );
 
-#if OCC_VERSION_LARGE > 0x06030010 // available only with OCC-6.3-sp11 and higher version
+#if OCC_VERSION_LARGE > 0x0603000A // available only with OCC-6.3-sp11 and higher version
   int occZoomingStyleMode = pref->addPreference( tr( "PREF_ZOOMING" ), occGroup,
                                                  LightApp_Preferences::Selector, "OCCViewer", "zooming_mode" );
   QStringList anOCCZoomingStyleModeList;
index 34bad67d3395c7beb3e9e2423f613ac8b2ff2c22..f6ea5109f11549f6bd9aa69245fb4998a8283f0d 100755 (executable)
@@ -323,7 +323,7 @@ void OCCViewer_ViewPort3d::fitRect( const QRect& rect )
 */
 void OCCViewer_ViewPort3d::startZoomAtPoint( int x, int y )
 {
-#if OCC_VERSION_LARGE > 0x06030010 // available only with OCC-6.3-sp11 and higher version
+#if OCC_VERSION_LARGE > 0x0603000A // available only with OCC-6.3-sp11 and higher version
   if ( !activeView().IsNull() && isAdvancedZoomingEnabled() )
     activeView()->StartZoomAtPoint( x, y );
 #endif
@@ -338,7 +338,7 @@ void OCCViewer_ViewPort3d::zoom( int x0, int y0, int x, int y )
     // 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 OCC_VERSION_LARGE > 0x06030010 // available only with OCC-6.3-sp11 and higher version
+#if OCC_VERSION_LARGE > 0x0603000A // available only with OCC-6.3-sp11 and higher version
     if ( isAdvancedZoomingEnabled() )
       activeView()->ZoomAtPoint( x0, y0, x, y );
     else
index 06c1c0cefb31e29fa6cda63d003803f8545e1c6a..a8977bc2ef23b6578ea400d5df3d3a11a9f37e24 100755 (executable)
@@ -1228,7 +1228,7 @@ void OCCViewer_ViewWindow::createToolBar()
 
   toolMgr()->append( DumpId, tid );
   toolMgr()->append( SwitchInteractionStyleId, tid );
-#if OCC_VERSION_LARGE > 0x06030010 // available only with OCC-6.3-sp11 and higher version
+#if OCC_VERSION_LARGE > 0x0603000A // available only with OCC-6.3-sp11 and higher version
   toolMgr()->append( SwitchZoomingStyleId, tid );
 #endif
   if( myModel->trihedronActivated() && (my2dMode == No2dMode) )