]> SALOME platform Git repositories - modules/visu.git/commitdiff
Salome HOME
Fix of IPAL19281(Stream Lines Preferences dialog: Step Length field - only 2 digits...
authorakl <akl@opencascade.com>
Thu, 20 Mar 2008 14:44:49 +0000 (14:44 +0000)
committerakl <akl@opencascade.com>
Thu, 20 Mar 2008 14:44:49 +0000 (14:44 +0000)
src/VISUGUI/VisuGUI_StreamLinesDlg.cxx

index e9af85a12e37bed9bfdf00a574979ddcb8e2040c..1283305e475cbb271f21c1ae6b06442d07fc23e0 100644 (file)
@@ -95,7 +95,7 @@ VisuGUI_StreamLinesDlg::VisuGUI_StreamLinesDlg (SalomeApp_Module* theModule)
   //aSourceBox->setColumnLayout(0, Qt::Vertical);
   QGridLayout* aSrcLayout = new QGridLayout( aSourceBox );
   aSrcLayout->setSpacing( 6 );
-  aSrcLayout->setMargin( 0 );
+  aSrcLayout->setMargin( 11 );
 
   QLabel* aTypeLbl = new QLabel( tr( "LBL_SOURCE_TYPE" ), aSourceBox);
   aSrcLayout->addWidget(aTypeLbl, 0, 0);
@@ -216,28 +216,32 @@ VisuGUI_StreamLinesDlg::VisuGUI_StreamLinesDlg (SalomeApp_Module* theModule)
   QLabel* aPercentLbl = new QLabel (tr("LBL_USED_POINTS"), aSourceBox);
   aSrcLayout->addWidget(aPercentLbl, 2, 0);
 
-  myPntPercent = new QtxDoubleSpinBox( 0, 1, 0.1, aSourceBox );
+  myPntPercent = new QtxDoubleSpinBox( aSourceBox );
+  VISU::initSpinBox(myPntPercent, 0, 1);
   aSrcLayout->addWidget(myPntPercent, 2, 1);
 
   TopLayout->addWidget(aSourceBox, 0, 0, 1, 2);
 
   QLabel* aStepLenLbl = new QLabel (tr("LBL_STEP_LENGTH"), aTopBox);
   TopLayout->addWidget(aStepLenLbl, 1, 0);
-  myStepLen = new QtxDoubleSpinBox( DBL_MIN, DBL_MAX, 0.1, aTopBox );
+  myStepLen = new QtxDoubleSpinBox( aTopBox );
+  VISU::initSpinBox(myStepLen, DBL_MIN, DBL_MAX);
   myStepLen->setSizePolicy( QSizePolicy( QSizePolicy::Expanding, QSizePolicy::Fixed ) );
   TopLayout->addWidget(myStepLen, 1, 1);
   connect(myStepLen, SIGNAL(valueChanged(double)), this, SLOT(StepLengthChanged(double)));
 
   QLabel* aIntegStepLenLbl = new QLabel (tr("LBL_INTEGRATION_STEP"), aTopBox);
   TopLayout->addWidget(aIntegStepLenLbl, 2, 0);
-  myIntegStepLen = new QtxDoubleSpinBox( DBL_MIN, DBL_MAX, 0.1, aTopBox );
+  myIntegStepLen = new QtxDoubleSpinBox( aTopBox );
+  VISU::initSpinBox(myIntegStepLen, DBL_MIN, DBL_MAX);
   myIntegStepLen->setSizePolicy( QSizePolicy( QSizePolicy::Expanding, QSizePolicy::Fixed ) );
   TopLayout->addWidget(myIntegStepLen, 2, 1);
   connect(myIntegStepLen, SIGNAL(valueChanged(double)), this, SLOT(IntegrationStepChanged(double)));
 
   QLabel* aPropagationLbl = new QLabel (tr("LBL_PROPAGATION_TIME"), aTopBox);
   TopLayout->addWidget(aPropagationLbl, 3, 0);
-  myPropTime = new QtxDoubleSpinBox( DBL_MIN, DBL_MAX, 1, aTopBox );
+  myPropTime = new QtxDoubleSpinBox( aTopBox );
+  VISU::initSpinBox(myPropTime, DBL_MIN, DBL_MAX);
   myPropTime->setSizePolicy( QSizePolicy( QSizePolicy::Expanding, QSizePolicy::Fixed ) );
   TopLayout->addWidget(myPropTime, 3, 1);
   connect(myPropTime, SIGNAL(valueChanged(double)), this, SLOT(PropagationTimeChanged(double)));