]> SALOME platform Git repositories - modules/gui.git/commitdiff
Salome HOME
Version 2.2.b: Non-confirmed improvements have been temporarily disabled. CTH_2_2_b CTH_2_2_c
authorouv <oleg.uvarov@opencascade.com>
Tue, 13 Dec 2016 10:36:01 +0000 (13:36 +0300)
committerouv <oleg.uvarov@opencascade.com>
Tue, 13 Dec 2016 10:36:01 +0000 (13:36 +0300)
src/Plot2d/Plot2d_ViewModel.cxx
src/Plot3d/Plot3d_ViewWindow.cxx
src/SVTK/SVTK_CubeAxesDlg.cxx
src/SVTK/SVTK_FontWidget.cxx

index 4b505c4f2eb1f852b86699d00d157624a7b46aae..e0e830d4ed9aa4fcb9bd01dec5c79b1d1f0c4608 100755 (executable)
@@ -182,14 +182,18 @@ void Plot2d_Viewer::onCloneView( Plot2d_ViewFrame* clonedVF, Plot2d_ViewFrame* n
 
   // 1) Copy all properties of view
 
+#ifdef V2_2_IMP
   // These two methods should be called before copyPreferences()
   // because they do nothing if the mode is not changed.
   newVF->setHorScaleMode( clonedVF->getHorScaleMode() );
   newVF->setVerScaleMode( clonedVF->getVerScaleMode() );
+#endif
 
   newVF->copyPreferences( clonedVF );
 
+#ifdef V2_2_IMP
   newVF->setSecondY( clonedVF->getSecondY() );
+#endif
 
   // 2) Display all curves displayed in cloned view
 
@@ -201,13 +205,17 @@ void Plot2d_Viewer::onCloneView( Plot2d_ViewFrame* clonedVF, Plot2d_ViewFrame* n
     if( clonedVF->isVisible( *anIt ) )
       newVF->displayCurve( *anIt, false );
 
+#ifdef V2_2_IMP
   newVF->updateTitles( false );
+#endif
 
   // 3) Copy range of the cloned view
 
+#ifdef V2_2_IMP
   double aXMin, aXMax, aYMin, aYMax, aY2Min, aY2Max;
   clonedVF->getFitRanges( aXMin, aXMax, aYMin, aYMax, aY2Min, aY2Max );
   newVF->fitData( 0, aXMin, aXMax, aYMin, aYMax, aY2Min, aY2Max );
+#endif
 
   newVF->Repaint();
   
index 20a91da707d60f4be9879df55244d111ed7249c9..e6d4cba0b32f64f7c8d7fe7ab99443e5b52dd720 100644 (file)
@@ -168,6 +168,7 @@ void Plot3d_ViewWindow::Initialize( SVTK_ViewModelBase* theModel )
     }
   }
 
+#ifdef V2_2_IMP
   SVTK_RenderWindowInteractor* anInteractor = GetInteractor();
   connect( anInteractor, SIGNAL( MouseMove( QMouseEvent* ) ), this, SLOT( onMouseMove( QMouseEvent* ) ) );
   connect( anInteractor, SIGNAL( MouseButtonPressed( QMouseEvent* ) ), this, SLOT( onMouseButtonPressed( QMouseEvent* ) ) );
@@ -175,6 +176,7 @@ void Plot3d_ViewWindow::Initialize( SVTK_ViewModelBase* theModel )
 
   myStandardInteractorStyle->SetIsSelectionEnabled( false );
   myKeyFreeInteractorStyle->SetIsSelectionEnabled( false );
+#endif
 
   if( vtkRenderer* aRenderer = getRenderer() )
     aRenderer->AddActor( myScalarBarActor.GetPointer() );
index 967ecec3da744a8c75eecbd27e3f8f18065db31e..36b6cacd76df1d3be9b65e911ae0a655bb0ae752 100644 (file)
@@ -163,6 +163,11 @@ SVTK_CubeAxesDlg::AxisWidget::AxisWidget (QWidget* theParent)
 
   myLabelFormat->setToolTip( SVTK_CubeAxesDlg::tr("FORMAT_TOOLTIP") );
 
+#ifndef V2_2_IMP
+  aLabel->hide();
+  myLabelFormat->hide();
+#endif
+
   aHBox = new QHBoxLayout;
   aHBox->setMargin(0);
   aHBox->setSpacing(5);
index 20c5dd0c3353a6241fe442a9d8444e40545da29e..a39aa82be37164e285a67e52207e2b111a896a6f 100644 (file)
@@ -57,6 +57,9 @@ SVTK_FontWidget::SVTK_FontWidget( QWidget* theParent )
 
   mySize = new QSpinBox( this );
   mySize->setRange( 8, 24 );
+#ifndef V2_2_IMP
+  mySize->hide();
+#endif
 
   myBold = new QCheckBox( tr( "BOLD" ), this );
   myItalic = new QCheckBox( tr( "ITALIC" ), this );