/*************************************************************************** qfrspinbox.h - description ------------------- begin : Thu Jun 30 2005 copyright : (C) 2002-2005 by Serghei Amelian email : serghei@thel.ro ***************************************************************************/ /*************************************************************************** * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * ***************************************************************************/ #ifndef _QFRSPINBOX_H_ #define _QFRSPINBOX_H_ #include class QfrSpinBox : public QSpinBox { public: QfrSpinBox(QWidget *parent, const char *name); QString mapValueToText(int value); int mapTextToValue(bool *ok); }; #endif