QBackingStore Class
The QBackingStore class provides a drawing area for QWindow. 更多...
头文件: | #include <QBackingStore> |
qmake: | QT += gui |
开始支持版本: | Qt 5.0 |
公有函数
QBackingStore(QWindow *window) | |
~QBackingStore() | |
void | beginPaint(const QRegion ®ion) |
void | endPaint() |
void | flush(const QRegion ®ion, QWindow *win = Q_NULLPTR, const QPoint &offset = QPoint()) |
QPlatformBackingStore * | handle() const |
bool | hasStaticContents() const |
QPaintDevice * | paintDevice() |
void | resize(const QSize &size) |
bool | scroll(const QRegion &area, int dx, int dy) |
void | setStaticContents(const QRegion ®ion) |
QSize | size() const |
QRegion | staticContents() const |
QWindow * | window() const |
详细描述
The QBackingStore class provides a drawing area for QWindow.
QBackingStore enables the use of QPainter to paint on a QWindow with type RasterSurface. The other way of rendering to a QWindow is through the use of OpenGL with QOpenGLContext.
A QBackingStore contains a buffered representation of the window contents, and thus supports partial updates by using QPainter to only update a sub region of the window contents.
QBackingStore might be used by an application that wants to use QPainter without OpenGL acceleration and without the extra overhead of using the QWidget or QGraphicsView UI stacks. For an example of how to use QBackingStore see the Raster Window Example.
成员函数
QBackingStore::QBackingStore(QWindow *window)
Constructs an empty surface for the given top-level window.
QBackingStore::~QBackingStore()
Destroys this surface.
void QBackingStore::beginPaint(const QRegion ®ion)
This function is called before painting onto the surface begins, with the region in which the painting will occur.
参见 endPaint() and paintDevice().
void QBackingStore::endPaint()
This function is called after painting onto the surface has ended.
参见 beginPaint() and paintDevice().
void QBackingStore::flush(const QRegion ®ion, QWindow *win = Q_NULLPTR, const QPoint &offset = QPoint())
Flushes the given region from the specified window win onto the screen.
Note that the offset parameter is currently unused.
QPlatformBackingStore *QBackingStore::handle() const
Returns a pointer to the QPlatformBackingStore implementation
bool QBackingStore::hasStaticContents() const
Returns a boolean indicating if this window has static contents or not.
QPaintDevice *QBackingStore::paintDevice()
Implement this function to return the appropriate paint device.
void QBackingStore::resize(const QSize &size)
Sets the size of the windowsurface to be size.
参见 size().
bool QBackingStore::scroll(const QRegion &area, int dx, int dy)
Scrolls the given area dx pixels to the right and dy downward; both dx and dy may be negative.
Returns true
if the area was scrolled successfully; false otherwise.
void QBackingStore::setStaticContents(const QRegion ®ion)
Set region as the static contents of this window.
参见 staticContents().
QSize QBackingStore::size() const
Returns the current size of the windowsurface.
QRegion QBackingStore::staticContents() const
Returns a pointer to the QRegion that has the static contents of this window.
参见 setStaticContents().
QWindow *QBackingStore::window() const
Returns a pointer to the top-level window associated with this surface.