X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FSMESHGUI%2FSMESHGUI_SpinBox.cxx;h=a79c6ad64c761e30d81fdb752ebd94e55f116933;hb=1ec6e6b0ec84c9a921c5f48dd525971467f1fe56;hp=017b37b33b77b3300f393b3bc0386bfaedc1d718;hpb=e4737e85f0da6d3f90fd08f6be1c2825195fe16f;p=modules%2Fsmesh.git diff --git a/src/SMESHGUI/SMESHGUI_SpinBox.cxx b/src/SMESHGUI/SMESHGUI_SpinBox.cxx index 017b37b33..a79c6ad64 100644 --- a/src/SMESHGUI/SMESHGUI_SpinBox.cxx +++ b/src/SMESHGUI/SMESHGUI_SpinBox.cxx @@ -17,7 +17,7 @@ // License along with this library; if not, write to the Free Software // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA // -// See http://www.opencascade.org/SALOME/ or email : webmaster.salome@opencascade.org +// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com // // // @@ -30,6 +30,7 @@ #include "SMESHGUI.h" #include +#include using namespace std; @@ -37,19 +38,18 @@ using namespace std; // class : SMESHGUI_SpinBox() // purpose : constructor of specific widget accepting floats in double precision. //================================================================================= -SMESHGUI_SpinBox::SMESHGUI_SpinBox( QWidget* parent, const char* name ) -: QAD_SpinBoxDbl( parent, name) +SMESHGUI_SpinBox::SMESHGUI_SpinBox (QWidget* parent, const char* name) + : QtxDblSpinBox(parent, name) { } - //================================================================================= // function : SetStep() [SLOT] // purpose : //================================================================================= -void SMESHGUI_SpinBox::SetStep( double newStep ) +void SMESHGUI_SpinBox::SetStep (double newStep) { - setLineStep( newStep ); + setLineStep(newStep); } //================================================================================= @@ -64,16 +64,17 @@ SMESHGUI_SpinBox::~SMESHGUI_SpinBox() // function : SetValue() // purpose : //================================================================================= -void SMESHGUI_SpinBox::SetValue( double v ) +void SMESHGUI_SpinBox::SetValue (double v) { - setValue( v ); + setValue(v); + editor()->setCursorPosition( 0 ); } //================================================================================= // function : GetValue() // purpose : returns a double //================================================================================= -double SMESHGUI_SpinBox::GetValue( ) +double SMESHGUI_SpinBox::GetValue() { return value(); } @@ -82,7 +83,7 @@ double SMESHGUI_SpinBox::GetValue( ) // function : GetString() // purpose : returns a QString //================================================================================= -QString SMESHGUI_SpinBox::GetString( ) +QString SMESHGUI_SpinBox::GetString() { return cleanText(); } @@ -91,9 +92,12 @@ QString SMESHGUI_SpinBox::GetString( ) // function : RangeStepAndValidator() // purpose : //================================================================================= -void SMESHGUI_SpinBox::RangeStepAndValidator( double min, double max, double step, unsigned short decimals ) +void SMESHGUI_SpinBox::RangeStepAndValidator + (double min, double max, double step, unsigned short decimals) { - setRange( min, max ); - setLineStep( step ); - ( ( QDoubleValidator* )validator() )->setRange( min, max, decimals ) ; + setPrecision(-decimals); // PAL8769. Minus is for using 'g' double->string conversion specifier, + // see QtxDblSpinBox::mapValueToText( double v ) + setRange(min, max); + setLineStep(step); + ((QDoubleValidator*)validator())->setRange(min, max, decimals); }