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  · 

QRect Class Reference

The QRect class defines a rectangle in the plane. More...

#include <qrect.h>

List of all member functions.

Public Members

Related Functions

  • bool operator== ( const QRect & r1, const QRect & r2 )
  • bool operator!= ( const QRect & r1, const QRect & r2 )
  • QDataStream & operator<< ( QDataStream & s, const QRect & r )
  • QDataStream & operator>> ( QDataStream & s, QRect & r )

Detailed Description

The QRect class defines a rectangle in the plane.

A rectangle is internally represented as an upper-left corner and a bottom-right corner, but it is normally expressed as an upper-left corner and a size.

The coordinate type is QCOORD (defined in qwindowdefs.h as int). The minimum value of QCOORD is QCOORD_MIN (-2147483648) and the maximum value is QCOORD_MAX (2147483647).

Note that the size (width and height) of a rectangle might be different from what you are used to. If the top-left corner and the bottom-right corner are the same, the height and the width of the rectangle will both be 1.

Generally, width = right - left + 1 and height = bottom - top + 1. We designed it this way to make it correspond to rectangular spaces used by drawing functions in which the width and height denote a number of pixels. For example, drawing a rectangle with width and height 1 draws a single pixel.

The default coordinate system has origin (0, 0) in the top-left corner. The positive direction of the y axis is down, and the positive x axis is from left to right.

A QRect can be constructed with a set of left, top, width and height integers, from two QPoints or from a QPoint and a QSize. After creation the dimensions can be changed, e.g. with setLeft(), setRight(), setTop() and setBottom(), or by setting sizes, e.g. setWidth(), setHeight() and setSize(). The dimensions can also be changed with the move functions, e.g. moveBy(), moveCenter(), moveBottomRight(), etc. You can also add coordinates to a rectangle with addCoords().

You can test to see if a QRect contains a specific point with contains(). You can also test to see if two QRects intersect with intersects() (see also intersect()). To get the bounding rectangle of two QRects use unite().

See also QPoint, QSize, Graphics Classes and Image Processing Classes.


Member Function Documentation

QRect::QRect ()

Constructs an invalid rectangle.

QRect::QRect ( const QPoint & topLeft, const QPoint & bottomRight )

Constructs a rectangle with topLeft as the top-left corner and bottomRight as the bottom-right corner.

QRect::QRect ( const QPoint & topLeft, const QSize & size )

Constructs a rectangle with topLeft as the top-left corner and size as the rectangle size.

QRect::QRect ( int left, int top, int width, int height )

Constructs a rectangle with the top, left corner and width and height.

Example (creates three identical rectangles):

        QRect r1( QPoint(100,200), QPoint(110,215) );
        QRect r2( QPoint(100,200), QSize(11,16) );
        QRect r3( 100, 200, 11, 16 );
    

void QRect::addCoords ( int xp1, int yp1, int xp2, int yp2 )

Adds xp1, yp1, xp2 and yp2 respectively to the existing coordinates of the rectangle.

int QRect::bottom () const

Returns the bottom coordinate of the rectangle.

See also top(), setBottom(), bottomLeft() and bottomRight().

Examples: desktop/desktop.cpp, helpviewer/helpwindow.cpp, qfd/fontdisplayer.cpp, scribble/scribble.cpp and themes/wood.cpp.

QPoint QRect::bottomLeft () const

Returns the bottom-left position of the rectangle.

See also moveBottomLeft(), bottomRight(), topLeft(), topRight(), bottom() and left().

Example: tictac/tictac.cpp.

QPoint QRect::bottomRight () const

Returns the bottom-right position of the rectangle.

See also moveBottomRight(), bottomLeft(), topLeft(), topRight(), bottom() and right().

Example: tictac/tictac.cpp.

QPoint QRect::center () const

Returns the center point of the rectangle.

See also moveCenter(), topLeft(), topRight(), bottomLeft() and bottomRight().

Example: tooltip/tooltip.cpp.

bool QRect::contains ( const QPoint & p, bool proper = FALSE ) const

Returns TRUE if the point p is inside or on the edge of the rectangle; otherwise returns FALSE.

If proper is TRUE, this function returns TRUE only if p is inside (not on the edge).

Example: t14/cannon.cpp.

bool QRect::contains ( int x, int y, bool proper = FALSE ) const

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

Returns TRUE if the point x, y is inside this rectangle; otherwise returns FALSE.

If proper is TRUE, this function returns TRUE only if the point is entirely inside (not on the edge).

bool QRect::contains ( const QRect & r, bool proper = FALSE ) const

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

Returns TRUE if the rectangle r is inside this rectangle; otherwise returns FALSE.

If proper is TRUE, this function returns TRUE only if r is entirely inside (not on the edge).

See also unite(), intersect() and intersects().

void QRect::coords ( int * xp1, int * yp1, int * xp2, int * yp2 ) const

Extracts the rectangle parameters as the top-left point *xp1, *yp1 and the bottom-right point *xp2, *yp2.

See also setCoords() and rect().

Examples: themes/metal.cpp and themes/wood.cpp.

int QRect::height () const

Returns the height of the rectangle. The height includes both the top and bottom edges, i.e. height = bottom - top + 1.

See also width(), size() and setHeight().

Examples: aclock/aclock.cpp, desktop/desktop.cpp, movies/main.cpp, scribble/scribble.cpp, themes/metal.cpp, themes/wood.cpp and xform/xform.cpp.

QRect QRect::intersect ( const QRect & r ) const

Returns the intersection of this rectangle and rectangle r. r.intersect(s) is equivalent to r&s.

bool QRect::intersects ( const QRect & r ) const

Returns TRUE if this rectangle intersects with rectangle r (there is at least one pixel that is within both rectangles); otherwise returns FALSE.

See also intersect() and contains().

Examples: t11/cannon.cpp, t12/cannon.cpp, t13/cannon.cpp and t14/cannon.cpp.

bool QRect::isEmpty () const

Returns TRUE if the rectangle is empty; otherwise returns FALSE.

An empty rectangle has a left() > right() or top() > bottom().

An empty rectangle is not valid. isEmpty() == !isValid()

See also isNull() and isValid().

bool QRect::isNull () const

Returns TRUE if the rectangle is a null rectangle; otherwise returns FALSE.

A null rectangle has both the width and the height set to 0, that is right() == left() - 1 and bottom() == top() - 1.

Note that if right() == left() and bottom() == top(), then the rectangle has width 1 and height 1.

A null rectangle is also empty.

A null rectangle is not valid.

See also isEmpty() and isValid().

bool QRect::isValid () const

Returns TRUE if the rectangle is valid or FALSE if it is invalid (empty).

A valid rectangle has a left() <= right() and top() <= bottom().

Note that non-trivial operations like intersections are not defined for invalid rectangles.

isValid() == !isEmpty()

See also isNull(), isEmpty() and normalize().

Examples: themes/metal.cpp and tooltip/tooltip.cpp.

int QRect::left () const

Returns the left coordinate of the rectangle. Identical to x().

See also x(), top(), right(), setLeft(), topLeft() and bottomLeft().

Examples: aclock/aclock.cpp, desktop/desktop.cpp, qfd/fontdisplayer.cpp, scribble/scribble.cpp, tictac/tictac.cpp and xform/xform.cpp.

void QRect::moveBottomLeft ( const QPoint & p )

Sets the bottom-left position of the rectangle to p, leaving the size unchanged.

See also bottomLeft(), moveBottomRight(), moveTopLeft(), moveTopRight(), setBottom() and setLeft().

Example: t10/cannon.cpp.

void QRect::moveBottomRight ( const QPoint & p )

Sets the bottom-right position of the rectangle to p, leaving the size unchanged.

See also bottomRight(), moveBottomLeft(), moveTopLeft(), moveTopRight(), setBottom() and setRight().

void QRect::moveBy ( int dx, int dy )

Moves the rectangle dx along the X axis and dy along the Y axis, relative to the current position. (Positive values move the rectangle right and/or down.)

Examples: helpviewer/helpwindow.cpp, themes/wood.cpp and xform/xform.cpp.

void QRect::moveCenter ( const QPoint & p )

Sets the center point of the rectangle to p, leaving the size unchanged.

See also center(), moveTopLeft(), moveTopRight(), moveBottomLeft() and moveBottomRight().

Examples: t11/cannon.cpp and t12/cannon.cpp.

void QRect::moveTopLeft ( const QPoint & p )

Sets the top-left position of the rectangle to p, leaving the size unchanged.

See also topLeft(), moveTopRight(), moveBottomLeft(), moveBottomRight(), setTop() and setLeft().

Example: xform/xform.cpp.

void QRect::moveTopRight ( const QPoint & p )

Sets the top-right position of the rectangle to p, leaving the size unchanged.

See also topRight(), moveTopLeft(), moveBottomLeft(), moveBottomRight(), setTop() and setRight().

QRect QRect::normalize () const

Returns a normalized rectangle, i.e. a rectangle that has a non-negative width and height.

It swaps left and right if left() > right(), and swaps top and bottom if top() > bottom().

See also isValid().

Example: scribble/scribble.cpp.

QRect QRect::operator& ( const QRect & r ) const

Returns the intersection of this rectangle and rectangle r.

Returns an empty rectangle if there is no intersection.

See also operator&=(), operator|(), isEmpty(), intersects() and contains().

QRect & QRect::operator&= ( const QRect & r )

Intersects this rectangle with rectangle r.

QRect QRect::operator| ( const QRect & r ) const

Returns the bounding rectangle of this rectangle and rectangle r.

The bounding rectangle of a nonempty rectangle and an empty or invalid rectangle is defined to be the nonempty rectangle.

See also operator|=(), operator&(), intersects() and contains().

QRect & QRect::operator|= ( const QRect & r )

Unites this rectangle with rectangle r.

QCOORD & QRect::rBottom ()

Returns a reference to the bottom coordinate of the rectangle.

See also rLeft(), rTop() and rRight().

QCOORD & QRect::rLeft ()

Returns a reference to the left coordinate of the rectangle.

See also rTop(), rRight() and rBottom().

QCOORD & QRect::rRight ()

Returns a reference to the right coordinate of the rectangle.

See also rLeft(), rTop() and rBottom().

QCOORD & QRect::rTop ()

Returns a reference to the top coordinate of the rectangle.

See also rLeft(), rRight() and rBottom().

void QRect::rect ( int * x, int * y, int * w, int * h ) const

Extracts the rectangle parameters as the position *x, *y and width *w and height *h.

See also setRect() and coords().

Examples: themes/metal.cpp and themes/wood.cpp.

int QRect::right () const

Returns the right coordinate of the rectangle.

See also left(), setRight(), topRight() and bottomRight().

Examples: customlayout/flow.cpp, desktop/desktop.cpp, helpviewer/helpwindow.cpp, qfd/fontdisplayer.cpp, scribble/scribble.cpp, t11/cannon.cpp and themes/wood.cpp.

void QRect::setBottom ( int pos )

Sets the bottom edge of the rectangle to pos. May change the height, but will never change the top edge of the rectangle.

See also bottom(), setTop() and setHeight().

Example: scribble/scribble.cpp.

void QRect::setCoords ( int xp1, int yp1, int xp2, int yp2 )

Sets the coordinates of the rectangle's top-left corner to (xp1, yp1), and the coordinates of its bottom-right corner to (xp2, yp2).

See also coords() and setRect().

void QRect::setHeight ( int h )

Sets the height of the rectangle to h. The top edge is not moved, but the bottom edge may be moved.

See also height(), setTop(), setBottom() and setSize().

Example: desktop/desktop.cpp.

void QRect::setLeft ( int pos )

Sets the left edge of the rectangle to pos. May change the width, but will never change the right edge of the rectangle.

Identical to setX().

See also left(), setTop() and setWidth().

Example: scribble/scribble.cpp.

void QRect::setRect ( int x, int y, int w, int h )

Sets the coordinates of the rectangle's top-left corner to (x, y), and its size to (w, h).

See also rect() and setCoords().

Example: themes/wood.cpp.

void QRect::setRight ( int pos )

Sets the right edge of the rectangle to pos. May change the width, but will never change the left edge of the rectangle.

See also right(), setLeft() and setWidth().

Example: scribble/scribble.cpp.

void QRect::setSize ( const QSize & s )

Sets the size of the rectangle to s. The top-left corner is not moved.

See also size(), setWidth() and setHeight().

Example: xform/xform.cpp.

void QRect::setTop ( int pos )

Sets the top edge of the rectangle to pos. May change the height, but will never change the bottom edge of the rectangle.

Identical to setY().

See also top(), setBottom() and setHeight().

Example: scribble/scribble.cpp.

void QRect::setWidth ( int w )

Sets the width of the rectangle to w. The right edge is changed, but not the left edge.

See also width(), setLeft(), setRight() and setSize().

Example: desktop/desktop.cpp.

void QRect::setX ( int x )

Sets the x position of the rectangle (its left end) to x. May change the width, but will never change the right edge of the rectangle.

Identical to setLeft().

See also x() and setY().

void QRect::setY ( int y )

Sets the y position of the rectangle (its top) to y. May change the height, but will never change the bottom edge of the rectangle.

Identical to setTop().

See also y() and setX().

QSize QRect::size () const

Returns the size of the rectangle.

See also width() and height().

Examples: desktop/desktop.cpp, movies/main.cpp and t10/cannon.cpp.

int QRect::top () const

Returns the top coordinate of the rectangle. Identical to y().

See also y(), left(), bottom(), setTop(), topLeft() and topRight().

Examples: aclock/aclock.cpp, desktop/desktop.cpp, helpviewer/helpwindow.cpp, scribble/scribble.cpp, themes/wood.cpp, tictac/tictac.cpp and xform/xform.cpp.

QPoint QRect::topLeft () const

Returns the top-left position of the rectangle.

See also moveTopLeft(), topRight(), bottomLeft(), bottomRight(), left() and top().

Examples: t10/cannon.cpp and tictac/tictac.cpp.

QPoint QRect::topRight () const

Returns the top-right position of the rectangle.

See also moveTopRight(), topLeft(), bottomLeft(), bottomRight(), top() and right().

Example: tictac/tictac.cpp.

QRect QRect::unite ( const QRect & r ) const

Returns the bounding rectangle of this rectangle and rectangle r. r.unite(s) is equivalent to r|s.

Examples: t11/cannon.cpp, t12/cannon.cpp and xform/xform.cpp.

int QRect::width () const

Returns the width of the rectangle. The width includes both the left and right edges, i.e. width = right - left + 1.

See also height(), size() and setHeight().

Examples: aclock/aclock.cpp, customlayout/border.cpp, desktop/desktop.cpp, movies/main.cpp, themes/metal.cpp, themes/wood.cpp and xform/xform.cpp.

int QRect::x () const

Returns the left coordinate of the rectangle. Identical to left().

See also left(), y() and setX().

Examples: customlayout/border.cpp, desktop/desktop.cpp, movies/main.cpp, scribble/scribble.cpp, t12/cannon.cpp, themes/metal.cpp and themes/wood.cpp.

int QRect::y () const

Returns the top coordinate of the rectangle. Identical to top().

See also top(), x() and setY().

Examples: desktop/desktop.cpp, movies/main.cpp, scribble/scribble.cpp, t12/cannon.cpp, t14/cannon.cpp, themes/metal.cpp and themes/wood.cpp.


Related Functions

bool operator!= ( const QRect & r1, const QRect & r2 )

Returns TRUE if r1 and r2 are different; otherwise returns FALSE.

QDataStream & operator<< ( QDataStream & s, const QRect & r )

Writes the QRect, r, to the stream s, and returns a reference to the stream.

See also Format of the QDataStream operators.

bool operator== ( const QRect & r1, const QRect & r2 )

Returns TRUE if r1 and r2 are equal; otherwise returns FALSE.

QDataStream & operator>> ( QDataStream & s, QRect & r )

Reads a QRect from the stream s into rect r 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. «Le projet de loi des droits du développeur» : quelles conditions doivent remplir les entreprises pour que le développeur puisse réussir ? 69
  2. Les développeurs détestent-ils les antivirus ? Un programmeur manifeste sa haine envers ces solutions de sécurité 27
  3. Une nouvelle ère d'IHM 3D pour les automobiles, un concept proposé par Digia et implémenté avec Qt 3
  4. Qt Creator 2.5 est sorti en beta, l'EDI supporte maintenant plus de fonctionnalités de C++11 2
  5. Vingt sociétés montrent leurs décodeurs basés sur Qt au IPTV World Forum, en en exploitant diverses facettes (déclaratif, Web, widgets) 0
  6. PySide devient un add-on Qt et rejoint le Qt Project et le modèle d'open gouvernance 1
  7. Thread travailleur avec Qt en utilisant les signaux et les slots, un article de Christophe Dumez traduit par Thibaut Cuvelier 1
  1. « Quelque chose ne va vraiment pas avec les développeurs "modernes" », un développeur à "l'ancienne" critique la multiplication des bibliothèques 101
  2. Pourquoi les programmeurs sont-ils moins payés que les gestionnaires de programmes ? Manquent-ils de pouvoir de négociation ? 51
  3. «Le projet de loi des droits du développeur» : quelles conditions doivent remplir les entreprises pour que le développeur puisse réussir ? 69
  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

Le Qt Labs au hasard

Logo

Le moteur de rendu OpenGL

Les Qt Labs sont les laboratoires des développeurs de Qt, où ils peuvent partager des impressions sur le framework, son utilisation, ce que pourrait être son futur. 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