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
qwindowsgdiintegration.cpp
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
9
10#include <QtCore/qdebug.h>
11#include <QtGui/private/qpixmap_raster_p.h>
12
14
20
21QWindowsGdiIntegration::QWindowsGdiIntegration(const QStringList &paramList)
22 : QWindowsIntegration(paramList)
24{}
25
28
30{
31 return &d->m_nativeInterface;
32}
33
34QPlatformPixmap *QWindowsGdiIntegration::createPlatformPixmap(QPlatformPixmap::PixelType type) const
35{
36 return new QRasterPlatformPixmap(type);
37}
38
43
44QT_END_NAMESPACE
Backing store for windows.
QWindowsGdiNativeInterface m_nativeInterface
QPlatformBackingStore * createPlatformBackingStore(QWindow *window) const override
Factory function for QPlatformBackingStore.
QWindowsGdiIntegration(const QStringList &paramList)
QPlatformNativeInterface * nativeInterface() const override
QPlatformPixmap * createPlatformPixmap(QPlatformPixmap::PixelType type) const override
Factory function for QPlatformPixmap.
Combined button and popup list for selecting options.