// Copyright (C) 2016 The Qt Company Ltd. // SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only #ifndef QBACKINGSTORE_COCOA_H #define QBACKINGSTORE_COCOA_H #include #include #include #include "qiosurfacegraphicsbuffer.h" #include QT_BEGIN_NAMESPACE class QCocoaBackingStore : public QPlatformBackingStore { protected: QCocoaBackingStore(QWindow *window); QCFType colorSpace() const; }; class QCALayerBackingStore : public QObject, public QCocoaBackingStore { Q_OBJECT public: QCALayerBackingStore(QWindow *window); ~QCALayerBackingStore(); void resize(const QSize &size, const QRegion &staticContents) override; void beginPaint(const QRegion ®ion) override; QPaintDevice *paintDevice() override; void endPaint() override; bool scroll(const QRegion ®ion, int dx, int dy) override; void flush(QWindow *, const QRegion &, const QPoint &) override; FlushResult rhiFlush(QWindow *window, qreal sourceDevicePixelRatio, const QRegion ®ion, const QPoint &offset, QPlatformTextureList *textures, bool translucentBackground) override; QImage toImage() const override; QPlatformGraphicsBuffer *graphicsBuffer() const override; private: void observeBackingPropertiesChanges(); bool eventFilter(QObject *watched, QEvent *event) override; QSize m_requestedSize; QRegion m_staticContents; class GraphicsBuffer : public QIOSurfaceGraphicsBuffer { public: GraphicsBuffer(const QSize &size, qreal devicePixelRatio, const QPixelFormat &format, QCFType colorSpace); QRegion dirtyRegion; // In unscaled coordinates QImage *asImage(); qreal devicePixelRatio() const { return m_devicePixelRatio; } bool isDirty() const { return !dirtyRegion.isEmpty(); } QRegion validRegion() const; private: qreal m_devicePixelRatio; QImage m_image; }; void updateDirtyStates(const QRegion &paintedRegion); void ensureBackBuffer(); bool recreateBackBufferIfNeeded(); void finalizeBackBuffer(); void blitBuffer(GraphicsBuffer *sourceBuffer, const QRegion &sourceRegion, GraphicsBuffer *destinationBuffer, const QPoint &destinationOffset = QPoint()); void backingPropertiesChanged(); QMacNotificationObserver m_backingPropertiesObserver; std::list> m_buffers; void flushSubWindow(QWindow *window); std::unordered_map> m_subWindowBackingstores; void windowDestroyed(QObject *object); bool m_clearSurfaceOnPaint = true; }; QT_END_NAMESPACE #endif