Remove deprecated inputItem and inputWindow from QInputMethod
[profile/ivi/qtbase.git] / src / gui / kernel / qplatformnativeinterface.cpp
1 /****************************************************************************
2 **
3 ** Copyright (C) 2012 Nokia Corporation and/or its subsidiary(-ies).
4 ** Contact: http://www.qt-project.org/
5 **
6 ** This file is part of the QtGui module of the Qt Toolkit.
7 **
8 ** $QT_BEGIN_LICENSE:LGPL$
9 ** GNU Lesser General Public License Usage
10 ** This file may be used under the terms of the GNU Lesser General Public
11 ** License version 2.1 as published by the Free Software Foundation and
12 ** appearing in the file LICENSE.LGPL included in the packaging of this
13 ** file. Please review the following information to ensure the GNU Lesser
14 ** General Public License version 2.1 requirements will be met:
15 ** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
16 **
17 ** In addition, as a special exception, Nokia gives you certain additional
18 ** rights. These rights are described in the Nokia Qt LGPL Exception
19 ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
20 **
21 ** GNU General Public License Usage
22 ** Alternatively, this file may be used under the terms of the GNU General
23 ** Public License version 3.0 as published by the Free Software Foundation
24 ** and appearing in the file LICENSE.GPL included in the packaging of this
25 ** file. Please review the following information to ensure the GNU General
26 ** Public License version 3.0 requirements will be met:
27 ** http://www.gnu.org/copyleft/gpl.html.
28 **
29 ** Other Usage
30 ** Alternatively, this file may be used in accordance with the terms and
31 ** conditions contained in a signed written agreement between you and Nokia.
32 **
33 **
34 **
35 **
36 **
37 **
38 ** $QT_END_LICENSE$
39 **
40 ****************************************************************************/
41
42 #include "qplatformnativeinterface.h"
43
44 QT_BEGIN_NAMESPACE
45
46 /*!
47     \class QPlatformNativeInterface
48     \since 5.0
49     \internal
50     \preliminary
51     \ingroup qpa
52
53     \brief The QPlatformNativeInterface class provides an abstraction for retrieving native
54     resource handles.
55  */
56
57 void *QPlatformNativeInterface::nativeResourceForIntegration(const QByteArray &resource)
58 {
59     Q_UNUSED(resource);
60     return 0;
61 }
62 void *QPlatformNativeInterface::nativeResourceForWindow(const QByteArray &resource, QWindow *window)
63 {
64     Q_UNUSED(resource);
65     Q_UNUSED(window);
66     return 0;
67 }
68
69 void *QPlatformNativeInterface::nativeResourceForContext(const QByteArray &resource, QOpenGLContext *context)
70 {
71     Q_UNUSED(resource);
72     Q_UNUSED(context);
73     return 0;
74 }
75
76 void * QPlatformNativeInterface::nativeResourceForBackingStore(const QByteArray &resource, QBackingStore *backingStore)
77 {
78     Q_UNUSED(resource);
79     Q_UNUSED(backingStore);
80     return 0;
81 }
82
83 QPlatformNativeInterface::NativeResourceForIntegrationFunction QPlatformNativeInterface::nativeResourceFunctionForIntegration(const QByteArray &resource)
84 {
85     Q_UNUSED(resource);
86     return 0;
87 }
88
89 QPlatformNativeInterface::NativeResourceForContextFunction QPlatformNativeInterface::nativeResourceFunctionForContext(const QByteArray &resource)
90 {
91     Q_UNUSED(resource);
92     return 0;
93 }
94
95 QPlatformNativeInterface::NativeResourceForWindowFunction QPlatformNativeInterface::nativeResourceFunctionForWindow(const QByteArray &resource)
96 {
97     Q_UNUSED(resource);
98     return 0;
99 }
100
101 QPlatformNativeInterface::NativeResourceForBackingStoreFunction QPlatformNativeInterface::nativeResourceFunctionForBackingStore(const QByteArray &resource)
102 {
103     Q_UNUSED(resource);
104     return 0;
105 }
106
107 /*!
108     Contains generic window properties that the platform may utilize.
109 */
110 QVariantMap QPlatformNativeInterface::windowProperties(QPlatformWindow *window) const
111 {
112     Q_UNUSED(window)
113     return QVariantMap();
114 }
115
116 /*!
117     Returns a window property with \a name.
118
119     If the property does not exist, returns a default-constructed value.
120 */
121 QVariant QPlatformNativeInterface::windowProperty(QPlatformWindow *window, const QString &name) const
122 {
123     Q_UNUSED(window);
124     Q_UNUSED(name);
125     return QVariant();
126 }
127
128 /*!
129     Returns a window property with \a name. If the value does not exist, defaultValue is returned.
130 */
131 QVariant QPlatformNativeInterface::windowProperty(QPlatformWindow *window, const QString &name, const QVariant &defaultValue) const
132 {
133     Q_UNUSED(window);
134     Q_UNUSED(name);
135     Q_UNUSED(defaultValue);
136     return QVariant();
137 }
138
139 /*!
140     Sets a window property with \a name to \a value.
141 */
142 void QPlatformNativeInterface::setWindowProperty(QPlatformWindow *window, const QString &name, const QVariant &value)
143 {
144     Q_UNUSED(window);
145     Q_UNUSED(name);
146     Q_UNUSED(value);
147 }
148
149 QT_END_NAMESPACE