Viadeo Twitter Google Bookmarks ! Facebook Digg del.icio.us MySpace Yahoo MyWeb Blinklist Netvouz Reddit Simpy StumbleUpon Bookmarks Windows Live Favorites 
Logo Documentation Qt ·  Page d'accueil  ·  Toutes les classes  ·  Toutes les fonctions  ·  Vues d'ensemble  · 

QIntValidator Class Reference

The QIntValidator class provides a validator that ensures a string contains a valid integer within a specified range. More...

 #include <QIntValidator>

Inherits: QValidator.

Properties

  • 1 property inherited from QObject

Public Functions

QIntValidator ( QObject * parent = 0 )
QIntValidator ( int minimum, int maximum, QObject * parent )
~QIntValidator ()
int bottom () const
void setBottom ( int )
virtual void setRange ( int bottom, int top )
void setTop ( int )
int top () const

Reimplemented Public Functions

virtual void fixup ( QString & input ) const
virtual QValidator::State validate ( QString & input, int & pos ) const
  • 4 public functions inherited from QValidator
  • 29 public functions inherited from QObject

Additional Inherited Members

  • 1 public slot inherited from QObject
  • 1 signal inherited from QObject
  • 5 static public members inherited from QObject
  • 7 protected functions inherited from QObject

Detailed Description

The QIntValidator class provides a validator that ensures a string contains a valid integer within a specified range.

Example of use:

 QValidator *validator = new QIntValidator(100, 999, this);
 QLineEdit *edit = new QLineEdit(this);

 // the edit lineedit will only accept integers between 100 and 999
 edit->setValidator(validator);

Below we present some examples of validators. In practice they would normally be associated with a widget as in the example above.

 QString str;
 int pos = 0;
 QIntValidator v(100, 900, this);

 str = "1";
 v.validate(str, pos);     // returns Intermediate
 str = "012";
 v.validate(str, pos);     // returns Intermediate

 str = "123";
 v.validate(str, pos);     // returns Acceptable
 str = "678";
 v.validate(str, pos);     // returns Acceptable

 str = "999";
 v.validate(str, pos);    // returns Intermediate

 str = "1234";
 v.validate(str, pos);     // returns Invalid
 str = "-123";
 v.validate(str, pos);     // returns Invalid
 str = "abc";
 v.validate(str, pos);     // returns Invalid
 str = "12cm";
 v.validate(str, pos);     // returns Invalid

Notice that the value 999 returns Intermediate. Values consisting of a number of digits equal to or less than the max value are considered intermediate. This is intended because the digit that prevents a number to be in range is not necessarily the last digit typed. This also means that an intermediate number can have leading zeros.

The minimum and maximum values are set in one call with setRange(), or individually with setBottom() and setTop().

QIntValidator uses its locale() to interpret the number. For example, in Arabic locales, QIntValidator will accept Arabic digits. In addition, QIntValidator is always guaranteed to accept a number formatted according to the "C" locale.

See also QDoubleValidator, QRegExpValidator, and Line Edits Example.

Property Documentation

bottom : int

This property holds the validator's lowest acceptable value.

By default, this property's value is derived from the lowest signed integer available (typically -2147483647).

Access functions:

int bottom () const
void setBottom ( int )

See also setRange().

top : int

This property holds the validator's highest acceptable value.

By default, this property's value is derived from the highest signed integer available (typically 2147483647).

Access functions:

int top () const
void setTop ( int )

See also setRange().

Member Function Documentation

QIntValidator::QIntValidator ( QObject * parent = 0 )

Constructs a validator with a parent object that accepts all integers.

QIntValidator::QIntValidator ( int minimum, int maximum, QObject * parent )

Constructs a validator with a parent, that accepts integers from minimum to maximum inclusive.

QIntValidator::~QIntValidator ()

Destroys the validator.

void QIntValidator::fixup ( QString & input ) const [virtual]

Reimplemented from QValidator::fixup().

void QIntValidator::setRange ( int bottom, int top ) [virtual]

Sets the range of the validator to only accept integers between bottom and top inclusive.

QValidator::State QIntValidator::validate ( QString & input, int & pos ) const [virtual]

Reimplemented from QValidator::validate().

Returns Acceptable if the input is an integer within the valid range, Intermediate if the input is a prefix of an integer in the valid range, and Invalid otherwise.

If the valid range consists of just positive integers (e.g., 32 to 100) and input is a negative integer, then Invalid is returned. (On the other hand, if the range consists of negative integers (e.g., -100 to -32) and input is a positive integer, then Intermediate is returned, because the user might be just about to type the minus (especially for right-to-left languages).

 int pos = 0;

 s = "abc";
 v.validate(s, pos);    // returns Invalid

 s = "5";
 v.validate(s, pos);    // returns Intermediate

 s = "50";
 v.validate(s, pos);    // returns Acceptable

By default, the pos parameter is not used by this validator.

Publicité

Best Of

Actualités les plus lues

Semaine
Mois
Année

Le Qt Developer Network au hasard

Logo

Utiliser QML et QtWebKit avec PySide

Le Qt Developer Network est un réseau de développeurs Qt anglophone, où ils peuvent partager leur expérience sur le framework. Lire l'article.

Communauté

Ressources

Liens utiles

Contact

  • Vous souhaitez rejoindre la rédaction ou proposer un tutoriel, une traduction, une question... ? Postez dans le forum Contribuez ou contactez-nous par MP ou par email (voir en bas de page).

Qt dans le magazine

Cette page est une traduction d'une page de la documentation de Qt, écrite par Nokia Corporation and/or its subsidiary(-ies). Les éventuels problèmes résultant d'une mauvaise traduction ne sont pas imputables à Nokia. Qt 4.7
Copyright © 2012 Developpez LLC. Tous droits réservés Developpez LLC. Aucune reproduction, même partielle, ne peut être faite de ce site et de l'ensemble de son contenu : textes, documents et images sans l'autorisation expresse de Developpez LLC. Sinon, vous encourez selon la loi jusqu'à 3 ans de prison et jusqu'à 300 000 E de dommages et intérêts. Cette page est déposée à la SACD.
Vous avez déniché une erreur ? Un bug ? Une redirection cassée ? Ou tout autre problème, quel qu'il soit ? Ou bien vous désirez participer à ce projet de traduction ? N'hésitez pas à nous contacter ou par MP !
 
 
 
 
Partenaires

Hébergement Web