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  · 

QPoint Class Reference

The QPoint class defines a point in the plane. More...

#include <qpoint.h>

List of all member functions.

Public Members

Related Functions

  • bool operator== ( const QPoint & p1, const QPoint & p2 )
  • bool operator!= ( const QPoint & p1, const QPoint & p2 )
  • const QPoint operator+ ( const QPoint & p1, const QPoint & p2 )
  • const QPoint operator- ( const QPoint & p1, const QPoint & p2 )
  • const QPoint operator* ( const QPoint & p, int c )
  • const QPoint operator* ( int c, const QPoint & p )
  • const QPoint operator* ( const QPoint & p, double c )
  • const QPoint operator* ( double c, const QPoint & p )
  • const QPoint operator- ( const QPoint & p )
  • const QPoint operator/ ( const QPoint & p, int c )
  • const QPoint operator/ ( const QPoint & p, double c )
  • QDataStream & operator<< ( QDataStream & s, const QPoint & p )
  • QDataStream & operator>> ( QDataStream & s, QPoint & p )

Detailed Description

The QPoint class defines a point in the plane.

A point is specified by an x coordinate and a y coordinate.

The coordinate type is QCOORD (a 32-bit integer). The minimum value of QCOORD is QCOORD_MIN (-2147483648) and the maximum value is QCOORD_MAX (2147483647).

The coordinates are accessed by the functions x() and y(); they can be set by setX() and setY() or by the reference functions rx() and ry().

Given a point p, the following statements are all equivalent:

        p.setX( p.x() + 1 );
        p += QPoint( 1, 0 );
        p.rx()++;
    

A QPoint can also be used as a vector. Addition and subtraction of QPoints are defined as for vectors (each component is added separately). You can divide or multiply a QPoint by an int or a double. The function manhattanLength() gives an inexpensive approximation of the length of the QPoint interpreted as a vector.

Example:

        //QPoint oldPos is defined somewhere else
        MyWidget::mouseMoveEvent( QMouseEvent *e )
        {
            QPoint vector = e->pos() - oldPos;
            if ( vector.manhattanLength() > 3 )
            ... //mouse has moved more than 3 pixels since oldPos
        }
    

QPoints can be compared for equality or inequality, and they can be written to and read from a QStream.

See also QPointArray, QSize, QRect, Graphics Classes and Image Processing Classes.


Member Function Documentation

QPoint::QPoint ()

Constructs a point with coordinates (0, 0) (isNull() returns TRUE).

QPoint::QPoint ( int xpos, int ypos )

Constructs a point with x value xpos and y value ypos.

bool QPoint::isNull () const

Returns TRUE if both the x value and the y value are 0; otherwise returns FALSE.

int QPoint::manhattanLength () const

Returns the sum of the absolute values of x() and y(), traditionally known as the "Manhattan length" of the vector from the origin to the point. The tradition arises because such distances apply to travelers who can only travel on a rectangular grid, like the streets of Manhattan.

This is a useful, and quick to calculate, approximation to the true length: sqrt(pow(x(),2)+pow(y(),2)).

QPoint & QPoint::operator*= ( int c )

Multiplies this point's x and y by c, and returns a reference to this point.

Example:

        QPoint p( -1, 4 );
        p *= 2;            // p becomes (-2,8)
    

QPoint & QPoint::operator*= ( double c )

This is an overloaded member function, provided for convenience. It behaves essentially like the above function.

Multiplies this point's x and y by c, and returns a reference to this point.

Example:

        QPoint p( -1, 4 );
        p *= 2.5;          // p becomes (-3,10)
    

Note that the result is truncated because points are held as integers.

QPoint & QPoint::operator+= ( const QPoint & p )

Adds point p to this point and returns a reference to this point.

Example:

        QPoint p(  3, 7 );
        QPoint q( -1, 4 );
        p += q;            // p becomes (2,11)
    

QPoint & QPoint::operator-= ( const QPoint & p )

Subtracts point p from this point and returns a reference to this point.

Example:

        QPoint p(  3, 7 );
        QPoint q( -1, 4 );
        p -= q;            // p becomes (4,3)
    

QPoint & QPoint::operator/= ( int c )

Divides both x and y by c, and returns a reference to this point.

Example:

        QPoint p( -2, 8 );
        p /= 2;            // p becomes (-1,4)
    

QPoint & QPoint::operator/= ( double c )

This is an overloaded member function, provided for convenience. It behaves essentially like the above function.

Divides both x and y by c, and returns a reference to this point.

Example:

        QPoint p( -3, 10 );
        p /= 2.5;           // p becomes (-1,4)
    

Note that the result is truncated because points are held as integers.

QCOORD & QPoint::rx ()

Returns a reference to the x coordinate of the point.

Using a reference makes it possible to directly manipulate x.

Example:

        QPoint p( 1, 2 );
        p.rx()--;         // p becomes (0, 2)
    

See also ry().

QCOORD & QPoint::ry ()

Returns a reference to the y coordinate of the point.

Using a reference makes it possible to directly manipulate y.

Example:

        QPoint p( 1, 2 );
        p.ry()++;         // p becomes (1, 3)
    

See also rx().

void QPoint::setX ( int x )

Sets the x coordinate of the point to x.

See also x() and setY().

Example: t14/cannon.cpp.

void QPoint::setY ( int y )

Sets the y coordinate of the point to y.

See also y() and setX().

Example: t14/cannon.cpp.

int QPoint::x () const

Returns the x coordinate of the point.

See also setX() and y().

Examples: canvas/canvas.cpp, chart/canvasview.cpp, dirview/dirview.cpp, fileiconview/qfileiconview.cpp, life/life.cpp, t14/cannon.cpp and themes/wood.cpp.

int QPoint::y () const

Returns the y coordinate of the point.

See also setY() and x().

Examples: canvas/canvas.cpp, chart/canvasview.cpp, fileiconview/qfileiconview.cpp, life/life.cpp, t14/cannon.cpp and themes/wood.cpp.


Related Functions

bool operator!= ( const QPoint & p1, const QPoint & p2 )

Returns TRUE if p1 and p2 are not equal; otherwise returns FALSE.

const QPoint operator* ( const QPoint & p, int c )

Returns the QPoint formed by multiplying both components of p by c.

const QPoint operator* ( int c, const QPoint & p )

This is an overloaded member function, provided for convenience. It behaves essentially like the above function.

Returns the QPoint formed by multiplying both components of p by c.

const QPoint operator* ( const QPoint & p, double c )

This is an overloaded member function, provided for convenience. It behaves essentially like the above function.

Returns the QPoint formed by multiplying both components of p by c.

Note that the result is truncated because points are held as integers.

const QPoint operator* ( double c, const QPoint & p )

This is an overloaded member function, provided for convenience. It behaves essentially like the above function.

Returns the QPoint formed by multiplying both components of p by c.

Note that the result is truncated because points are held as integers.

const QPoint operator+ ( const QPoint & p1, const QPoint & p2 )

Returns the sum of p1 and p2; each component is added separately.

const QPoint operator- ( const QPoint & p1, const QPoint & p2 )

Returns p2 subtracted from p1; each component is subtracted separately.

const QPoint operator- ( const QPoint & p )

This is an overloaded member function, provided for convenience. It behaves essentially like the above function.

Returns the QPoint formed by changing the sign of both components of p, equivalent to QPoint(0,0) - p.

const QPoint operator/ ( const QPoint & p, int c )

Returns the QPoint formed by dividing both components of p by c.

const QPoint operator/ ( const QPoint & p, double c )

This is an overloaded member function, provided for convenience. It behaves essentially like the above function.

Returns the QPoint formed by dividing both components of p by c.

Note that the result is truncated because points are held as integers.

QDataStream & operator<< ( QDataStream & s, const QPoint & p )

Writes point p to the stream s and returns a reference to the stream.

See also Format of the QDataStream operators.

bool operator== ( const QPoint & p1, const QPoint & p2 )

Returns TRUE if p1 and p2 are equal; otherwise returns FALSE.

QDataStream & operator>> ( QDataStream & s, QPoint & p )

Reads a QPoint from the stream s into point p and returns a reference to the stream.

See also Format of the QDataStream operators.


This file is part of the Qt toolkit. Copyright © 1995-2002 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 102
  2. Pourquoi les programmeurs sont-ils moins payés que les gestionnaires de programmes ? Manquent-ils de pouvoir de négociation ? 53
  3. «Le projet de loi des droits du développeur» : quelles conditions doivent remplir les entreprises pour que le développeur puisse réussir ? 73
  4. Les développeurs détestent-ils les antivirus ? Un programmeur manifeste sa haine envers ces solutions de sécurité 27
  5. Qt Commercial : Digia organise un webinar gratuit le 27 mars sur la conception d'interfaces utilisateur et d'applications avec le framework 0
  6. Quelles nouveautés de C++11 Visual C++ doit-il rapidement intégrer ? Donnez-nous votre avis 10
  7. 2017 : un quinquennat pour une nouvelle version du C++ ? Possible, selon Herb Sutter 11
Page suivante
  1. Linus Torvalds : le "C++ est un langage horrible", en justifiant le choix du C pour le système de gestion de version Git 100
  2. Comment prendre en compte l'utilisateur dans vos applications ? Pour un développeur, « 90 % des utilisateurs sont des idiots » 229
  3. Quel est LE livre que tout développeur doit lire absolument ? Celui qui vous a le plus marqué et inspiré 96
  4. Apple cède et s'engage à payer des droits à Nokia, le conflit des brevets entre les deux firmes s'achève 158
  5. Nokia porte à nouveau plainte contre Apple pour violation de sept nouveaux brevets 158
  6. Quel est le code dont vous êtes le plus fier ? Pourquoi l'avez-vous écrit ? Et pourquoi vous a-t-il donné autant de satisfaction ? 83
  7. « Quelque chose ne va vraiment pas avec les développeurs "modernes" », un développeur à "l'ancienne" critique la multiplication des bibliothèques 101
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.0
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