Line | Source | Count |
1 | | - |
2 | | - |
3 | | - |
4 | | - |
5 | | - |
6 | | - |
7 | | - |
8 | | - |
9 | | - |
10 | | - |
11 | | - |
12 | | - |
13 | | - |
14 | | - |
15 | | - |
16 | | - |
17 | | - |
18 | | - |
19 | | - |
20 | | - |
21 | | - |
22 | | - |
23 | | - |
24 | | - |
25 | | - |
26 | | - |
27 | | - |
28 | | - |
29 | | - |
30 | | - |
31 | | - |
32 | | - |
33 | | - |
34 | | - |
35 | | - |
36 | | - |
37 | | - |
38 | | - |
39 | | - |
40 | #include "qplatformnativeinterface.h" | - |
41 | | - |
42 | QT_BEGIN_NAMESPACE | - |
43 | | - |
44 | | - |
45 | | - |
46 | | - |
47 | | - |
48 | | - |
49 | | - |
50 | | - |
51 | | - |
52 | | - |
53 | | - |
54 | | - |
55 | void *QPlatformNativeInterface::nativeResourceForIntegration(const QByteArray &resource) | - |
56 | { | - |
57 | Q_UNUSED(resource); | - |
58 | return 0; | - |
59 | } | - |
60 | | - |
61 | void *QPlatformNativeInterface::nativeResourceForScreen(const QByteArray &resource, QScreen *screen) | - |
62 | { | - |
63 | Q_UNUSED(resource); | - |
64 | Q_UNUSED(screen); | - |
65 | return 0; | - |
66 | } | - |
67 | | - |
68 | void *QPlatformNativeInterface::nativeResourceForWindow(const QByteArray &resource, QWindow *window) | - |
69 | { | - |
70 | Q_UNUSED(resource); | - |
71 | Q_UNUSED(window); | - |
72 | return 0; | - |
73 | } | - |
74 | | - |
75 | void *QPlatformNativeInterface::nativeResourceForContext(const QByteArray &resource, QOpenGLContext *context) | - |
76 | { | - |
77 | Q_UNUSED(resource); | - |
78 | Q_UNUSED(context); | - |
79 | return 0; | - |
80 | } | - |
81 | | - |
82 | void * QPlatformNativeInterface::nativeResourceForBackingStore(const QByteArray &resource, QBackingStore *backingStore) | - |
83 | { | - |
84 | Q_UNUSED(resource); | - |
85 | Q_UNUSED(backingStore); | - |
86 | return 0; | - |
87 | } | - |
88 | | - |
89 | #ifndef QT_NO_CURSOR | - |
90 | void *QPlatformNativeInterface::nativeResourceForCursor(const QByteArray &resource, const QCursor &cursor) | - |
91 | { | - |
92 | Q_UNUSED(resource); | - |
93 | Q_UNUSED(cursor); | - |
94 | return Q_NULLPTR never executed: return nullptr; ;never executed: return nullptr; | 0 |
95 | } | - |
96 | #endif | - |
97 | | - |
98 | QPlatformNativeInterface::NativeResourceForIntegrationFunction QPlatformNativeInterface::nativeResourceFunctionForIntegration(const QByteArray &resource) | - |
99 | { | - |
100 | Q_UNUSED(resource); | - |
101 | return 0; | - |
102 | } | - |
103 | | - |
104 | QPlatformNativeInterface::NativeResourceForContextFunction QPlatformNativeInterface::nativeResourceFunctionForContext(const QByteArray &resource) | - |
105 | { | - |
106 | Q_UNUSED(resource); | - |
107 | return 0; | - |
108 | } | - |
109 | | - |
110 | QPlatformNativeInterface::NativeResourceForScreenFunction QPlatformNativeInterface::nativeResourceFunctionForScreen(const QByteArray &resource) | - |
111 | { | - |
112 | Q_UNUSED(resource); | - |
113 | return 0; | - |
114 | } | - |
115 | | - |
116 | QPlatformNativeInterface::NativeResourceForWindowFunction QPlatformNativeInterface::nativeResourceFunctionForWindow(const QByteArray &resource) | - |
117 | { | - |
118 | Q_UNUSED(resource); | - |
119 | return 0; | - |
120 | } | - |
121 | | - |
122 | QPlatformNativeInterface::NativeResourceForBackingStoreFunction QPlatformNativeInterface::nativeResourceFunctionForBackingStore(const QByteArray &resource) | - |
123 | { | - |
124 | Q_UNUSED(resource); | - |
125 | return 0; | - |
126 | } | - |
127 | | - |
128 | QFunctionPointer QPlatformNativeInterface::platformFunction(const QByteArray &function) const | - |
129 | { | - |
130 | Q_UNUSED(function); | - |
131 | return Q_NULLPTR; | - |
132 | } | - |
133 | | - |
134 | | - |
135 | | - |
136 | | - |
137 | QVariantMap QPlatformNativeInterface::windowProperties(QPlatformWindow *window) const | - |
138 | { | - |
139 | Q_UNUSED(window) | - |
140 | return QVariantMap(); | - |
141 | } | - |
142 | | - |
143 | | - |
144 | | - |
145 | | - |
146 | | - |
147 | | - |
148 | QVariant QPlatformNativeInterface::windowProperty(QPlatformWindow *window, const QString &name) const | - |
149 | { | - |
150 | Q_UNUSED(window); | - |
151 | Q_UNUSED(name); | - |
152 | return QVariant(); | - |
153 | } | - |
154 | | - |
155 | | - |
156 | | - |
157 | | - |
158 | QVariant QPlatformNativeInterface::windowProperty(QPlatformWindow *window, const QString &name, const QVariant &defaultValue) const | - |
159 | { | - |
160 | Q_UNUSED(window); | - |
161 | Q_UNUSED(name); | - |
162 | Q_UNUSED(defaultValue); | - |
163 | return QVariant(); | - |
164 | } | - |
165 | | - |
166 | | - |
167 | | - |
168 | | - |
169 | void QPlatformNativeInterface::setWindowProperty(QPlatformWindow *window, const QString &name, const QVariant &value) | - |
170 | { | - |
171 | Q_UNUSED(window); | - |
172 | Q_UNUSED(name); | - |
173 | Q_UNUSED(value); | - |
174 | } | - |
175 | | - |
176 | QT_END_NAMESPACE | - |
| | |