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  ·  Classes principales  ·  Annotées  ·  Classes groupées  ·  Fonctions  · 

QIntValidator Class Reference

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

#include <qvalidator.h>

Inherits QValidator.

List of all member functions.

Public Members

Properties

  • int bottom - the validator's lowest acceptable value
  • int top - the validator's highest acceptable value

Detailed Description

The QIntValidator class provides a validator which ensures that 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, 999, this );

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

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

    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
    

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

See also QDoubleValidator, QRegExpValidator, and Miscellaneous Classes.


Member Function Documentation

QIntValidator::QIntValidator ( QObject * parent, const char * name = 0 )

Constructs a validator called name with parent parent, that accepts all integers.

QIntValidator::QIntValidator ( int minimum, int maximum, QObject * parent, const char * name = 0 )

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

QIntValidator::~QIntValidator ()

Destroys the validator, freeing any resources allocated.

int QIntValidator::bottom () const

Returns the validator's lowest acceptable value. See the "bottom" property for details.

void QIntValidator::setBottom ( int )

Sets the validator's lowest acceptable value. See the "bottom" property for details.

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

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

void QIntValidator::setTop ( int )

Sets the validator's highest acceptable value. See the "top" property for details.

int QIntValidator::top () const

Returns the validator's highest acceptable value. See the "top" property for details.

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

Returns Acceptable if the input is an integer within the valid range, Intermediate if the input is an integer outside the valid range and Invalid if the input is not an integer.

Note: If the valid range consists of just positive integers (e.g. 32 - 100) and input is a negative integer then Invalid is returned.

    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 Valid
    

Reimplemented from QValidator.


Property Documentation

int bottom

This property holds the validator's lowest acceptable value.

Set this property's value with setBottom() and get this property's value with bottom().

See also setRange().

int top

This property holds the validator's highest acceptable value.

Set this property's value with setTop() and get this property's value with top().

See also setRange().


This file is part of the Qt toolkit. Copyright © 1995-2005 Trolltech. All Rights Reserved.

Publicité

Best Of

Actualités les plus lues

Semaine
Mois
Année
  1. « Quelque chose ne va vraiment pas avec les développeurs "modernes" », un développeur à "l'ancienne" critique la multiplication des bibliothèques 77
  2. Apercevoir la troisième dimension ou l'utilisation multithreadée d'OpenGL dans Qt, un article des Qt Quarterly traduit par Guillaume Belz 0
  3. Les développeurs ignorent-ils trop les failles découvertes dans leur code ? Prenez-vous en compte les remarques des autres ? 17
  4. BlackBerry 10 : premières images du prochain OS de RIM qui devrait intégrer des widgets et des tuiles inspirées de Windows Phone 0
  5. Quelles nouveautés de C++11 Visual C++ doit-il rapidement intégrer ? Donnez-nous votre avis 10
  6. Adieu qmake, bienvenue qbs : Qt Building Suite, un outil déclaratif et extensible pour la compilation de projets Qt 17
  7. 2017 : un quinquennat pour une nouvelle version du C++ ? Possible, selon Herb Sutter 6
Page suivante

Le blog Digia au hasard

Logo

Créer des applications avec un style Metro avec Qt, exemples en QML et C++, un article de Digia Qt traduit par Thibaut Cuvelier

Le blog Digia est l'endroit privilégié pour la communication sur l'édition commerciale de Qt, où des réponses publiques sont apportées aux questions les plus posées au support. 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 3.3
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