X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FSMESHGUI%2FSMESHGUI_SpinBox.h;h=8655e4dfb2348881215e02f593683bc1273e2fe1;hb=94b4c4f7f76abd57f72199e83f37f0e1d96ee22c;hp=4fdf10e86625b9d572926cb96efb9f6814cafa85;hpb=4791f5b30ea7a9c1247aa551750dc71cb83b99aa;p=modules%2Fsmesh.git diff --git a/src/SMESHGUI/SMESHGUI_SpinBox.h b/src/SMESHGUI/SMESHGUI_SpinBox.h index 4fdf10e86..8655e4dfb 100644 --- a/src/SMESHGUI/SMESHGUI_SpinBox.h +++ b/src/SMESHGUI/SMESHGUI_SpinBox.h @@ -26,34 +26,33 @@ // Module : SMESH // $Header$ -#ifndef SMESHSPINBOX_H -#define SMESHSPINBOX_H +#ifndef SMESH_SPINBOX_H +#define SMESH_SPINBOX_H -#include "QAD_SpinBoxDbl.h" +#include //================================================================================= // class : SMESHGUI_SpinBox -// purpose : Derivated from QAD_SpinBoxDbl class +// purpose : Derivated from QtxDblSpinBox class //================================================================================= -class SMESHGUI_SpinBox : public QAD_SpinBoxDbl +class SMESHGUI_SpinBox : public QtxDblSpinBox { Q_OBJECT -public : +public: + SMESHGUI_SpinBox (QWidget* parent, const char* name = 0); + ~SMESHGUI_SpinBox(); - SMESHGUI_SpinBox( QWidget* parent, const char* name = 0 ) ; - ~SMESHGUI_SpinBox() ; - - void RangeStepAndValidator( double min = -1000000.0, - double max = +1000000.0, - double step = 100.0, - unsigned short decimals = 3 ) ; - void SetValue( double v ) ; - double GetValue() ; - QString GetString() ; + void RangeStepAndValidator (double min = -1000000.0, + double max = +1000000.0, + double step = 100.0, + unsigned short decimals = 3); + void SetValue (double v); + double GetValue(); + QString GetString(); + QLineEdit* editor() { return QtxDblSpinBox::editor(); } public slots: - void SetStep( double newStep ); - + void SetStep (double newStep); }; -#endif // SMESHSPINBOX_H +#endif // SMESH_SPINBOX_H