Qt
Internal/Contributor docs for the Qt SDK. Note: These are NOT official API docs; those are found at https://doc.qt.io/
Loading...
Searching...
No Matches
qwindowsbackingstore.h
Go to the documentation of this file.
1// Copyright (C) 2016 The Qt Company Ltd.
2// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
3// Qt-Security score:significant reason:default
4
5#ifndef QWINDOWSBACKINGSTORE_H
6#define QWINDOWSBACKINGSTORE_H
7
8#include <QtCore/qt_windows.h>
9
10#include <qpa/qplatformbackingstore.h>
11#include <QtCore/qscopedpointer.h>
12
13QT_BEGIN_NAMESPACE
14
15class QWindowsWindow;
16class QWindowsNativeImage;
17
19{
21public:
24
25 QPaintDevice *paintDevice() override;
26 void flush(QWindow *window, const QRegion &region, const QPoint &offset) override;
27 void resize(const QSize &size, const QRegion &r) override;
28 bool scroll(const QRegion &area, int dx, int dy) override;
29 void beginPaint(const QRegion &) override;
30
31 HDC getDC() const;
32
33 QImage toImage() const override;
34
35private:
36 QScopedPointer<QWindowsNativeImage> m_image;
37 bool m_alphaNeedsFill;
38};
39
40QT_END_NAMESPACE
41
42#endif // QWINDOWSBACKINGSTORE_H
\inmodule QtCore\reentrant
Definition qpoint.h:30
\inmodule QtGui
Definition qwindow.h:64
Backing store for windows.
void beginPaint(const QRegion &) override
This function is called before painting onto the surface begins, with the region in which the paintin...
QPaintDevice * paintDevice() override
Implement this function to return the appropriate paint device.
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 flush(QWindow *window, const QRegion &region, const QPoint &offset) override
Flushes the given region from the specified window.
void resize(const QSize &size, const QRegion &r) override
QImage toImage() const override
Implemented in subclasses to return the content of the backingstore as a QImage.
Singleton container for all relevant information.
Combined button and popup list for selecting options.
Q_GUI_EXPORT void qt_scrollRectInImage(QImage &img, const QRect &rect, const QPoint &offset)