![]() |
Qt
Internal/Contributor docs for the Qt SDK. Note: These are NOT official API docs; those are found at https://doc.qt.io/
|
#include <qxcbbackingstore.h>
Public Member Functions | |
QXcbBackingStore (QWindow *window) | |
~QXcbBackingStore () | |
QPaintDevice * | paintDevice () override |
Implement this function to return the appropriate paint device. | |
void | flush (QWindow *window, const QRegion ®ion, const QPoint &offset) override |
Flushes the given region from the specified window. | |
FlushResult | rhiFlush (QWindow *window, qreal sourceDevicePixelRatio, const QRegion ®ion, const QPoint &offset, QPlatformTextureList *textures, bool translucentBackground, qreal sourceTransformFactor) override |
Flushes the given region from the specified window, and compositing it with the specified textures list. | |
QImage | toImage () const override |
Implemented in subclasses to return the content of the backingstore as a QImage. | |
QPlatformGraphicsBuffer * | graphicsBuffer () const override |
Accessor for a backingstores graphics buffer abstraction. | |
void | resize (const QSize &size, const QRegion &staticContents) override |
bool | scroll (const QRegion &area, int dx, int dy) override |
Scrolls the given area dx pixels to the right and dy downward; both dx and dy may be negative. | |
void | beginPaint (const QRegion &) override |
This function is called before painting onto the surface begins, with the region in which the painting will occur. | |
void | endPaint () override |
This function is called after painting onto the surface has ended. | |
Public Member Functions inherited from QXcbObject | |
QXcbObject (QXcbConnection *connection=nullptr) | |
void | setConnection (QXcbConnection *connection) |
QXcbConnection * | connection () const |
xcb_atom_t | atom (QXcbAtom::Atom atom) const |
xcb_connection_t * | xcb_connection () const |
Public Member Functions inherited from QPlatformBackingStore | |
QPlatformBackingStore (QWindow *window) | |
Constructs an empty surface for the given top-level window. | |
virtual | ~QPlatformBackingStore () |
Destroys this surface. | |
QWindow * | window () const |
Returns a pointer to the top-level window associated with this surface. | |
QBackingStore * | backingStore () const |
Returns a pointer to the backing store associated with this surface. | |
virtual QRhiTexture * | toTexture (QRhiResourceUpdateBatch *resourceUpdates, const QRegion &dirtyRegion, TextureFlags *flags) const |
May be reimplemented in subclasses to return the content of the backingstore as an QRhiTexture. | |
void | createRhi (QWindow *window, QPlatformBackingStoreRhiConfig config) |
QRhi * | rhi (QWindow *window) const |
void | surfaceAboutToBeDestroyed () |
void | graphicsDeviceReportedLost (QWindow *window) |
Static Public Member Functions | |
static bool | createSystemVShmSegment (xcb_connection_t *c, size_t segmentSize=1, void *shmInfo=nullptr) |
Protected Member Functions | |
virtual void | render (xcb_window_t window, const QRegion ®ion, const QPoint &offset) |
virtual void | recreateImage (QXcbWindow *win, const QSize &size) |
Protected Attributes | |
QXcbBackingStoreImage * | m_image = nullptr |
QStack< QRegion > | m_paintRegions |
QImage | m_rgbImage |
Additional Inherited Members | |
Public Types inherited from QPlatformBackingStore | |
enum | FlushResult { FlushSuccess , FlushFailed , FlushFailedDueToLostDevice } |
enum | TextureFlag { TextureSwizzle = 0x01 , TextureFlip = 0x02 , TexturePremultiplied = 0x04 } |
Definition at line 18 of file qxcbbackingstore.h.
QXcbBackingStore::QXcbBackingStore | ( | QWindow * | window | ) |
Definition at line 745 of file qxcbbackingstore.cpp.
References QXcbObject::setConnection().
QXcbBackingStore::~QXcbBackingStore | ( | ) |
Definition at line 752 of file qxcbbackingstore.cpp.
References m_image.
This function is called before painting onto the surface begins, with the region in which the painting will occur.
Reimplemented from QPlatformBackingStore.
Reimplemented in QXcbSystemTrayBackingStore.
Definition at line 764 of file qxcbbackingstore.cpp.
References QPainter::QPainter(), QXcbBackingStoreImage::hasAlpha(), and m_image.
|
static |
Definition at line 739 of file qxcbbackingstore.cpp.
|
overridevirtual |
This function is called after painting onto the surface has ended.
Reimplemented from QPlatformBackingStore.
Definition at line 781 of file qxcbbackingstore.cpp.
References QPainter::QPainter(), and m_image.
|
overridevirtual |
Flushes the given region from the specified window.
Unlike rhiFlush(), this function's default implementation does nothing. It is expected that subclasses provide a platform-specific (non-QRhi-based) implementation, if applicable on the given platform.
Reimplemented from QPlatformBackingStore.
Definition at line 832 of file qxcbbackingstore.cpp.
References QXcbBackingStoreImage::flushScrolledRegion(), m_image, and QXcbObject::xcb_connection().
Referenced by testing.tools.encode_pdf_filter._SinkPdfStream::close().
|
overridevirtual |
Accessor for a backingstores graphics buffer abstraction.
Reimplemented from QPlatformBackingStore.
Definition at line 827 of file qxcbbackingstore.cpp.
References m_image.
|
overridevirtual |
Implement this function to return the appropriate paint device.
Implements QPlatformBackingStore.
Definition at line 757 of file qxcbbackingstore.cpp.
References m_image.
|
protectedvirtual |
Reimplemented in QXcbSystemTrayBackingStore.
Definition at line 911 of file qxcbbackingstore.cpp.
References m_image.
|
protectedvirtual |
Reimplemented in QXcbSystemTrayBackingStore.
Definition at line 864 of file qxcbbackingstore.cpp.
References m_image.
|
overridevirtual |
Implements QPlatformBackingStore.
Definition at line 896 of file qxcbbackingstore.cpp.
References m_image, and QPainter::window().
|
overridevirtual |
Flushes the given region from the specified window, and compositing it with the specified textures list.
The default implementation retrieves the contents using toTexture() and composes using QRhi with OpenGL, Metal, Vulkan, or Direct 3D underneath. May be reimplemented in subclasses if customization is desired.
Reimplemented from QPlatformBackingStore.
Definition at line 869 of file qxcbbackingstore.cpp.
References QXcbBackingStoreImage::flushScrolledRegion(), m_image, and QXcbObject::xcb_connection().
|
overridevirtual |
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.
Reimplemented from QPlatformBackingStore.
Definition at line 925 of file qxcbbackingstore.cpp.
References m_image.
|
overridevirtual |
Implemented in subclasses to return the content of the backingstore as a QImage.
If composition via a 3D graphics API is supported, either this function or toTexture() must be implemented.
The returned image is only valid until the next operation (resize, paint, scroll, or flush) on the backingstore. The caller must not store the return value between calls, but instead call this function before each use, or make an explicit copy.
Reimplemented from QPlatformBackingStore.
Definition at line 808 of file qxcbbackingstore.cpp.
References QXcbBackingStoreImage::flushScrolledRegion(), and m_image.
|
protected |
Definition at line 50 of file qxcbbackingstore.h.
Referenced by ~QXcbBackingStore(), beginPaint(), endPaint(), flush(), graphicsBuffer(), paintDevice(), recreateImage(), QXcbSystemTrayBackingStore::recreateImage(), render(), QXcbSystemTrayBackingStore::render(), resize(), rhiFlush(), scroll(), and toImage().
Definition at line 51 of file qxcbbackingstore.h.
|
protected |
Definition at line 52 of file qxcbbackingstore.h.