Salome HOME
Qt4 porting: add axis grids to plot 2d preview.
[modules/smesh.git] / src / StdMeshersGUI / StdMeshersGUI_DistrPreview.cxx
index 66e167a4f2744d3c4570d8f95611596d465c7a4e..fc3787b9e5ced9b857475817e641d1e99d7d3348 100644 (file)
@@ -27,6 +27,7 @@
 // Qwt includes
 #include <qwt_plot_curve.h>
 #include <qwt_plot_marker.h>
 // Qwt includes
 #include <qwt_plot_curve.h>
 #include <qwt_plot_marker.h>
+#include <qwt_plot_grid.h>
 #include <qwt_symbol.h>
 #include <qwt_legend.h>
 
 #include <qwt_symbol.h>
 #include <qwt_legend.h>
 
@@ -84,6 +85,16 @@ StdMeshersGUI_DistrPreview::StdMeshersGUI_DistrPreview( QWidget* p, StdMeshers::
 
   myDensity->setTitle( tr( "SMESH_DENSITY_FUNC" ) );
   myDistr->setTitle( tr( "SMESH_DISTR" ) );
 
   myDensity->setTitle( tr( "SMESH_DENSITY_FUNC" ) );
   myDistr->setTitle( tr( "SMESH_DISTR" ) );
+  
+  QwtPlotGrid* aGrid = new QwtPlotGrid();
+  QPen aMajPen = aGrid->majPen();
+  aMajPen.setStyle( Qt::DashLine );
+  aGrid->setPen( aMajPen );
+
+  aGrid->enableX( true );
+  aGrid->enableY( true );
+
+  aGrid->attach( this );
 }
 
 StdMeshersGUI_DistrPreview::~StdMeshersGUI_DistrPreview()
 }
 
 StdMeshersGUI_DistrPreview::~StdMeshersGUI_DistrPreview()