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