mirror of
https://github.com/qgis/QGIS.git
synced 2025-02-24 00:47:57 -05:00
21 lines
506 B
Plaintext
21 lines
506 B
Plaintext
|
class QgsLongLongValidator : QValidator
|
||
|
{
|
||
|
%TypeHeaderCode
|
||
|
#include <qgslonglongvalidator.h>
|
||
|
%End
|
||
|
public:
|
||
|
explicit QgsLongLongValidator( QObject *parent );
|
||
|
QgsLongLongValidator( qint64 bottom, qint64 top, QObject *parent );
|
||
|
~QgsLongLongValidator();
|
||
|
|
||
|
QValidator::State validate( QString &input, int& ) const;
|
||
|
|
||
|
void setBottom( qint64 bottom );
|
||
|
void setTop( qint64 top );
|
||
|
|
||
|
virtual void setRange( qint64 bottom, qint64 top );
|
||
|
|
||
|
qint64 bottom() const;
|
||
|
qint64 top() const;
|
||
|
};
|