|
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectcom.trolltech.qt.QSignalEmitter
com.trolltech.qt.QtJambiObject
com.trolltech.qt.gui.QRegion
public class QRegion
The QRegion class specifies a clip region for a painter.
QRegion is used with QPainter::setClipRegion() to limit the paint area to what needs to be painted. There is also a QWidget::repaint() function that takes a QRegion parameter. QRegion is the best tool for reducing flicker.
A region can be created from a rectangle, an ellipse, a polygon or a bitmap. Complex regions may be created by combining simple regions using united, intersected, subtracted, or xored (exclusive or). You can move a region using translate.
You can test whether a region isEmpty or if it contains a QPoint or QRect. The bounding rectangle can be found with boundingRect.
The function rects gives a decomposition of the region into rectangles.
Example of using complex regions:
void MyWidget::paintEvent(QPaintEvent *) { QRegion r1(QRect(100, 100, 200, 80), // r1: elliptic region QRegion::Ellipse); QRegion r2(QRect(100, 120, 90, 30)); // r2: rectangular region QRegion r3 = r1.intersected(r2); // r3: intersection QPainter painter(this); painter.setClipRegion(r3); ... // paint clipped graphics }
QRegion is an implicitly shared class.
Warning: Due to window system limitations, the whole coordinate space for a region is limited to the points between -32767 and 32767 on Windows 95/98/ME. You can circumvent this limitation by using a QPainterPath.
For Qt/X11 and Qtopia Core, parts of this class rely on code obtained under the following license:
Copyright (c) 1987 X Consortium
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE X CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
Except as contained in this notice, the name of the X Consortium shall not be used in advertising or otherwise to promote the sale, use or other dealings in this Software without prior written authorization from the X Consortium.
Copyright 1987 by Digital Equipment Corporation, Maynard, Massachusetts.
All Rights Reserved
Permission to use, copy, modify, and distribute this software and its documentation for any purpose and without fee is hereby granted, provided that the above copyright notice appear in all copies and that both that copyright notice and this permission notice appear in supporting documentation, and that the name of Digital not be used in advertising or publicity pertaining to distribution of the software without specific, written prior permission.
DIGITAL DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL DIGITAL BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
Nested Class Summary | |
---|---|
static class |
QRegion.RegionType
Specifies the shape of the region to be created. |
Nested classes/interfaces inherited from class com.trolltech.qt.QSignalEmitter |
---|
QSignalEmitter.AbstractSignal, QSignalEmitter.Signal0, QSignalEmitter.Signal1<A>, QSignalEmitter.Signal2<A,B>, QSignalEmitter.Signal3<A,B,C>, QSignalEmitter.Signal4<A,B,C,D>, QSignalEmitter.Signal5<A,B,C,D,E>, QSignalEmitter.Signal6<A,B,C,D,E,F>, QSignalEmitter.Signal7<A,B,C,D,E,F,G>, QSignalEmitter.Signal8<A,B,C,D,E,F,G,H>, QSignalEmitter.Signal9<A,B,C,D,E,F,G,H,I> |
Constructor Summary | |
---|---|
QRegion()
Constructs an empty region. |
|
QRegion(int x,
int y,
int w,
int h)
Equivalent to QRegion(x, y, w, h, Rectangle). |
|
QRegion(int x,
int y,
int w,
int h,
QRegion.RegionType t)
Constructs a rectangular or elliptic region. |
|
QRegion(QBitmap bitmap)
Constructs a region from the bitmap bitmap. |
|
QRegion(QPolygon pa)
Equivalent to QRegion(pa, Qt::OddEvenFill). |
|
QRegion(QPolygon pa,
Qt.FillRule fillRule)
Constructs a polygon region from the point array pa with the fill rule specified by fillRule. |
|
QRegion(QRect r)
Equivalent to QRegion(r, Rectangle). |
|
QRegion(QRect r,
QRegion.RegionType t)
Create a region based on the rectange r with region type t. |
|
QRegion(QRegion region)
Constructs a new region which is equal to region region. |
Method Summary | |
---|---|
QRect |
boundingRect()
Returns the bounding rectangle of this region. |
boolean |
contains(QPoint p)
Returns true if the region contains the point p; otherwise returns false. |
boolean |
contains(QRect r)
Returns true if the region overlaps the rectangle r; otherwise returns false. |
boolean |
equals(java.lang.Object other)
|
static QRegion |
fromNativePointer(QNativePointer nativePointer)
This function returns the QRegion instance pointed to by nativePointer |
QRegion |
intersected(QRegion r)
Returns a region which is the intersection of this region and r. |
boolean |
intersects(QRect r)
Returns true if this region intersects with r, otherwise returns false. |
boolean |
intersects(QRegion r)
Returns true if this region intersects with r, otherwise returns false. |
boolean |
isEmpty()
Returns true if the region is empty; otherwise returns false. |
static QNativePointer |
nativePointerArray(QRegion[] array)
This function returns a QNativePointer that is pointing to the specified QRegion array. |
void |
readFrom(QDataStream arg__1)
Reads a QRegion from arg__1. |
java.util.List<QRect> |
rects()
Returns an array of non-overlapping rectangles that make up the region. |
void |
setRects(QRect[] rects)
Sets the region using the array of rectangles specified by rects. |
QRegion |
subtracted(QRegion r)
Returns a region which is r subtracted from this region. |
void |
translate(int dx,
int dy)
Translates (moves) the region dx along the X axis and dy along the Y axis. |
void |
translate(QPoint p)
Translates the region p.x() along the x axis and p.y() along the y axis, relative to the current position. |
QRegion |
translated(int dx,
int dy)
Returns a copy of the region that is translated dx along the x axis and dy along the y axis, relative to the current position. |
QRegion |
translated(QPoint p)
Returns a copy of the regtion that is translated p.x() along the x axis and p.y() along the y axis, relative to the current position. |
QRegion |
united(QRegion r)
Returns a region which is the union of this region and r. |
void |
writeTo(QDataStream arg__1)
Writes thisQRegion to arg__1. |
QRegion |
xored(QRegion r)
Returns a region which is the exclusive or (XOR) of this region and r. |
Methods inherited from class com.trolltech.qt.QtJambiObject |
---|
dispose, disposed, finalize, reassignNativeResources, tr, tr, tr |
Methods inherited from class com.trolltech.qt.QSignalEmitter |
---|
blockSignals, disconnect, disconnect, signalsBlocked, signalSender, thread |
Methods inherited from class java.lang.Object |
---|
clone, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Methods inherited from interface com.trolltech.qt.QtJambiInterface |
---|
disableGarbageCollection, nativeId, nativePointer, reenableGarbageCollection, setJavaOwnership |
Constructor Detail |
---|
public QRegion(QBitmap bitmap)
Constructs a region from the bitmap bitmap.
The resulting region consists of the pixels in bitmap bitmap that are Qt::color1, as if each pixel was a 1 by 1 rectangle.
This constructor may create complex regions that will slow down painting when used. Note that drawing masked pixmaps can be done much faster using QPixmap::setMask().
public QRegion(QPolygon pa)
Equivalent to QRegion(pa, Qt::OddEvenFill).
public QRegion(QPolygon pa, Qt.FillRule fillRule)
Constructs a polygon region from the point array pa with the fill rule specified by fillRule.
If fillRule is Qt::WindingFill, the polygon region is defined using the winding algorithm; if it is Qt::OddEvenFill, the odd-even fill algorithm is used.
Warning: This constructor can be used to create complex regions that will slow down painting when used.
public QRegion(int x, int y, int w, int h)
Equivalent to QRegion(x, y, w, h, Rectangle).
public QRegion(int x, int y, int w, int h, QRegion.RegionType t)
Constructs a rectangular or elliptic region.
If t is Rectangle, the region is the filled rectangle (x, y, w, h). If t is Ellipse, the region is the filled ellipse with center at (x + w / 2, y + h / 2) and size (w ,h).
public QRegion()
Constructs an empty region.
public QRegion(QRegion region)
Constructs a new region which is equal to region region.
public QRegion(QRect r)
Equivalent to QRegion(r, Rectangle).
public QRegion(QRect r, QRegion.RegionType t)
Create a region based on the rectange r with region type t.
If the rectangle is invalid a null region will be created.
Method Detail |
---|
public final QRect boundingRect()
Returns the bounding rectangle of this region. An empty region gives a rectangle that is QRect::isNull().
public final boolean contains(QRect r)
Returns true if the region overlaps the rectangle r; otherwise returns false.
public final boolean contains(QPoint p)
Returns true if the region contains the point p; otherwise returns false.
public final QRegion intersected(QRegion r)
Returns a region which is the intersection of this region and r.
The figure shows the intersection of two elliptical regions.
public final boolean intersects(QRect r)
Returns true if this region intersects with r, otherwise returns false.
public final boolean intersects(QRegion r)
Returns true if this region intersects with r, otherwise returns false.
public final boolean isEmpty()
Returns true if the region is empty; otherwise returns false. An empty region is a region that contains no points.
Example:
QRegion r1(10, 10, 20, 20); r1.isNull(); // false r1.isEmpty(); // false QRegion r2(40, 40, 20, 20); QRegion r3; r3.isNull(); // true r3.isEmpty(); // true r3 = r1.intersected(r2); // r3: intersection of r1 and r2 r3.isNull(); // false r3.isEmpty(); // true r3 = r1.united(r2); // r3: union of r1 and r2 r3.isNull(); // false r3.isEmpty(); // false
public final void writeTo(QDataStream arg__1)
public final void readFrom(QDataStream arg__1)
public final java.util.List<QRect> rects()
Returns an array of non-overlapping rectangles that make up the region.
The union of all the rectangles is equal to the original region.
public final QRegion subtracted(QRegion r)
Returns a region which is r subtracted from this region.
The figure shows the result when the ellipse on the right is subtracted from the ellipse on the left (left - right).
public final void translate(QPoint p)
Translates the region p.x() along the x axis and p.y() along the y axis, relative to the current position. Positive values move the region to the right and down.
Translates to the given p.
public final void translate(int dx, int dy)
Translates (moves) the region dx along the X axis and dy along the Y axis.
public final QRegion translated(int dx, int dy)
Returns a copy of the region that is translated dx along the x axis and dy along the y axis, relative to the current position. Positive values move the region to the right and down.
public final QRegion translated(QPoint p)
Returns a copy of the regtion that is translated p.x() along the x axis and p.y() along the y axis, relative to the current position. Positive values move the rectangle to the right and down.
public final QRegion united(QRegion r)
Returns a region which is the union of this region and r.
The figure shows the union of two elliptical regions.
public final QRegion xored(QRegion r)
Returns a region which is the exclusive or (XOR) of this region and r.
The figure shows the exclusive or of two elliptical regions.
public static QRegion fromNativePointer(QNativePointer nativePointer)
nativePointer
- the QNativePointer of which object should be returned.public static QNativePointer nativePointerArray(QRegion[] array)
array
- the array that the returned pointer will point to.
public boolean equals(java.lang.Object other)
equals
in class java.lang.Object
public void setRects(QRect[] rects)
|
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |