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
qxcbnativeinterfacehandler.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
6
8
10
11QXcbNativeInterfaceHandler::QXcbNativeInterfaceHandler(QXcbNativeInterface *nativeInterface)
12 : m_native_interface(nativeInterface)
13{
14 m_native_interface->addHandler(this);
15}
16QXcbNativeInterfaceHandler::~QXcbNativeInterfaceHandler()
17{
18 m_native_interface->removeHandler(this);
19}
20
21QPlatformNativeInterface::NativeResourceForIntegrationFunction QXcbNativeInterfaceHandler::nativeResourceFunctionForIntegration(const QByteArray &resource) const
22{
23 Q_UNUSED(resource);
24 return nullptr;
25}
26
27QPlatformNativeInterface::NativeResourceForContextFunction QXcbNativeInterfaceHandler::nativeResourceFunctionForContext(const QByteArray &resource) const
28{
29 Q_UNUSED(resource);
30 return nullptr;
31}
32
33QPlatformNativeInterface::NativeResourceForScreenFunction QXcbNativeInterfaceHandler::nativeResourceFunctionForScreen(const QByteArray &resource) const
34{
35 Q_UNUSED(resource);
36 return nullptr;
37}
38
39QPlatformNativeInterface::NativeResourceForWindowFunction QXcbNativeInterfaceHandler::nativeResourceFunctionForWindow(const QByteArray &resource) const
40{
41 Q_UNUSED(resource);
42 return nullptr;
43}
44
45QPlatformNativeInterface::NativeResourceForBackingStoreFunction QXcbNativeInterfaceHandler::nativeResourceFunctionForBackingStore(const QByteArray &resource) const
46{
47 Q_UNUSED(resource);
48 return nullptr;
49}
50
51QFunctionPointer QXcbNativeInterfaceHandler::platformFunction(const QByteArray &function) const
52{
53 Q_UNUSED(function);
54 return nullptr;
55}
56
57QT_END_NAMESPACE
Combined button and popup list for selecting options.