X-Git-Url: http://git.salome-platform.org/gitweb/?p=modules%2Fsmesh.git;a=blobdiff_plain;f=src%2FSMESHGUI%2FSMESHGUI_SpinBox.cxx;h=54c247a80620ad7a5ac0223ad4fae1b60dd4db8a;hp=6b0d19ca12f3debfb864f3fc1d7ba153350e91b8;hb=40793ae45e14edfdc3aa185537e495f2c905b3c7;hpb=64ae2f71de80aad56ebd449db68b8d340bccd7bd diff --git a/src/SMESHGUI/SMESHGUI_SpinBox.cxx b/src/SMESHGUI/SMESHGUI_SpinBox.cxx index 6b0d19ca1..54c247a80 100644 --- a/src/SMESHGUI/SMESHGUI_SpinBox.cxx +++ b/src/SMESHGUI/SMESHGUI_SpinBox.cxx @@ -26,28 +26,30 @@ // Module : SMESH // $Header$ -using namespace std; #include "SMESHGUI_SpinBox.h" #include "SMESHGUI.h" + #include +#include + +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); } //================================================================================= @@ -62,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(); } @@ -80,7 +83,7 @@ double SMESHGUI_SpinBox::GetValue( ) // function : GetString() // purpose : returns a QString //================================================================================= -QString SMESHGUI_SpinBox::GetString( ) +QString SMESHGUI_SpinBox::GetString() { return cleanText(); } @@ -89,9 +92,10 @@ 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 ) ; + setRange(min, max); + setLineStep(step); + ((QDoubleValidator*)validator())->setRange(min, max, decimals); }