]> SALOME platform Git repositories - modules/gui.git/commitdiff
Salome HOME
0020363 increase heaight of SetupCurves dialog
authorptv <ptv@opencascade.com>
Wed, 25 Mar 2009 06:31:54 +0000 (06:31 +0000)
committerptv <ptv@opencascade.com>
Wed, 25 Mar 2009 06:31:54 +0000 (06:31 +0000)
src/Plot2d/Plot2d_SetupCurvesDlg.cxx

index de2671d8af05da046c631c268de609de150e2987..3b403a677d7b0754374d1d3ae00850289c275e0b 100755 (executable)
@@ -157,14 +157,21 @@ Plot2d_SetupCurvesDlg::Plot2d_SetupCurvesDlg( QWidget* theParent )
   setWindowTitle( tr( "SETUP_CURVES" ) );
 
   QFrame* aMainFrame = mainFrame();
+
+  QVBoxLayout* aMainLay = new QVBoxLayout( aMainFrame );
+  aMainLay->setMargin( 5 );
+
   myGrp = new QtxGroupBox( aMainFrame ); 
   myGrp->setTitle( tr( "PARAMETERS" ) );
+  aMainLay->addWidget( myGrp );
+
   QVBoxLayout* aLay = new QVBoxLayout( myGrp );
   aLay->setMargin( 0 );
 
   // Create table
-
   myTable = new QTableWidget( myGrp );
+  myTable->setSizePolicy( QSizePolicy( QSizePolicy::Expanding, QSizePolicy::Expanding ) );
+
   aLay->addWidget( myTable );
 
   myTable->setRowCount( 0 );
@@ -203,14 +210,11 @@ Plot2d_SetupCurvesDlg::Plot2d_SetupCurvesDlg( QWidget* theParent )
   myRemoveBtn->setFixedSize( minusPix.size() /*+ QSize( 2, 2 )*/ );
   myGrp->insertTitleWidget( myRemoveBtn );
 
-  QVBoxLayout* aMainLay = new QVBoxLayout( aMainFrame );
-  aMainLay->setMargin( 5 );
-  aMainLay->addWidget( myGrp );
-
   connect( myRemoveBtn, SIGNAL( clicked() ), SLOT( onRemove() ) );
   connect( myTable, SIGNAL( valueChanged( int, int ) ), SLOT( onValueChanged( int, int ) ) );
 
   setButtonPosition( Right, Cancel );
+  setMinimumHeight( 250 );
 }
 
 /*!
@@ -327,6 +331,7 @@ void Plot2d_SetupCurvesDlg::SetParameters( const QVector< int >& theMarker,
   int lw = aWg->lineWidth();
   int mlw = aWg->midLineWidth();
   aWg->setFixedWidth( aWidth + 2 * fw );
+  //aWg->setMinimumWidth( aWidth + 2 * fw );
   
   myRemovedIndexes.clear();