#ifndef _INT_VALIDATOR_H_
#define _INT_VALIDATOR_H_

#include <tqvalidator.h>


class IntValidator : public TQValidator
{
    Q_OBJECT
  TQ_OBJECT

public:
    IntValidator( TQWidget *parent, const char *name = 0 );
    IntValidator( int bottom, int top, TQWidget *parent, const char *name = 0 );

    virtual ~IntValidator();

    virtual TQValidator::State validate( TQString &, int & ) const;
    
    virtual void setRange( int bottom, int top );

    int bottom() const { return v_bottom; }
    int top() const { return v_top; }

private:
    int v_bottom, v_top;
};



#endif /* _INT_VALIDATOR_H_ */