f0b1bd330a7d3cdb4f022cbb220ebd9bc3fda43e
[profile/ivi/qtbase.git] / src / plugins / platforms / cocoa / qcocoanativeinterface.mm
1 /****************************************************************************
2 **
3 ** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies).
4 ** Contact: http://www.qt-project.org/legal
5 **
6 ** This file is part of the plugins of the Qt Toolkit.
7 **
8 ** $QT_BEGIN_LICENSE:LGPL$
9 ** Commercial License Usage
10 ** Licensees holding valid commercial Qt licenses may use this file in
11 ** accordance with the commercial license agreement provided with the
12 ** Software or, alternatively, in accordance with the terms contained in
13 ** a written agreement between you and Digia.  For licensing terms and
14 ** conditions see http://qt.digia.com/licensing.  For further information
15 ** use the contact form at http://qt.digia.com/contact-us.
16 **
17 ** GNU Lesser General Public License Usage
18 ** Alternatively, this file may be used under the terms of the GNU Lesser
19 ** General Public License version 2.1 as published by the Free Software
20 ** Foundation and appearing in the file LICENSE.LGPL included in the
21 ** packaging of this file.  Please review the following information to
22 ** ensure the GNU Lesser General Public License version 2.1 requirements
23 ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
24 **
25 ** In addition, as a special exception, Digia gives you certain additional
26 ** rights.  These rights are described in the Digia Qt LGPL Exception
27 ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
28 **
29 ** GNU General Public License Usage
30 ** Alternatively, this file may be used under the terms of the GNU
31 ** General Public License version 3.0 as published by the Free Software
32 ** Foundation and appearing in the file LICENSE.GPL included in the
33 ** packaging of this file.  Please review the following information to
34 ** ensure the GNU General Public License version 3.0 requirements will be
35 ** met: http://www.gnu.org/copyleft/gpl.html.
36 **
37 **
38 ** $QT_END_LICENSE$
39 **
40 ****************************************************************************/
41
42 #include "qcocoanativeinterface.h"
43 #include "qcocoaglcontext.h"
44 #include "qcocoawindow.h"
45 #include "qcocoamenubar.h"
46
47 #include <qbytearray.h>
48 #include <qwindow.h>
49 #include <qpa/qplatformwindow.h>
50 #include "qsurfaceformat.h"
51 #include <qpa/qplatformopenglcontext.h>
52 #include "qopenglcontext.h"
53 #include "qguiapplication.h"
54 #include <qdebug.h>
55
56 #ifndef QT_NO_WIDGETS
57 #include "qcocoaprintersupport.h"
58 #include "qprintengine_mac_p.h"
59 #include <qpa/qplatformprintersupport.h>
60 #endif
61
62 QT_BEGIN_NAMESPACE
63
64 QCocoaNativeInterface::QCocoaNativeInterface()
65 {
66 }
67
68 void *QCocoaNativeInterface::nativeResourceForContext(const QByteArray &resourceString, QOpenGLContext *context)
69 {
70     if (!context)
71         return 0;
72     if (resourceString.toLower() == "nsopenglcontext")
73         return nsOpenGLContextForContext(context);
74     if (resourceString.toLower() == "cglcontextobj")
75         return cglContextForContext(context);
76
77     return 0;
78 }
79
80 void *QCocoaNativeInterface::nativeResourceForWindow(const QByteArray &resourceString, QWindow *window)
81 {
82     if (!window->handle()) {
83         qWarning("QCocoaNativeInterface::nativeResourceForWindow: Native window has not been created.");
84         return 0;
85     }
86
87     if (resourceString == "nsopenglcontext") {
88         return static_cast<QCocoaWindow *>(window->handle())->currentContext()->nsOpenGLContext();
89     } else if (resourceString == "nsview") {
90         return static_cast<QCocoaWindow *>(window->handle())->m_contentView;
91     } else if (resourceString == "nswindow") {
92         return static_cast<QCocoaWindow *>(window->handle())->m_nsWindow;
93     }
94     return 0;
95 }
96
97 QPlatformPrinterSupport *QCocoaNativeInterface::createPlatformPrinterSupport()
98 {
99 #ifndef QT_NO_WIDGETS
100     return new QCocoaPrinterSupport();
101 #else
102     qFatal("Printing is not supported when Qt is configured with -no-widgets");
103     return 0;
104 #endif
105 }
106
107 void *QCocoaNativeInterface::NSPrintInfoForPrintEngine(QPrintEngine *printEngine)
108 {
109 #ifndef QT_NO_WIDGETS
110     QMacPrintEngine *macPrintEngine = static_cast<QMacPrintEngine *>(printEngine);
111     return macPrintEngine->d_func()->printInfo;
112 #else
113     qFatal("Printing is not supported when Qt is configured with -no-widgets");
114     return 0;
115 #endif
116 }
117
118 void QCocoaNativeInterface::onAppFocusWindowChanged(QWindow *window)
119 {
120     Q_UNUSED(window);
121     QCocoaMenuBar::updateMenuBarImmediately();
122 }
123
124 void *QCocoaNativeInterface::cglContextForContext(QOpenGLContext* context)
125 {
126     NSOpenGLContext *nsOpenGLContext = static_cast<NSOpenGLContext*>(nsOpenGLContextForContext(context));
127     if (nsOpenGLContext)
128         return [nsOpenGLContext CGLContextObj];
129     return 0;
130 }
131
132 void *QCocoaNativeInterface::nsOpenGLContextForContext(QOpenGLContext* context)
133 {
134     if (context) {
135         QCocoaGLContext *cocoaGLContext = static_cast<QCocoaGLContext *>(context->handle());
136         if (cocoaGLContext) {
137             return cocoaGLContext->nsOpenGLContext();
138         }
139     }
140     return 0;
141 }
142
143 QT_END_NAMESPACE