e3e204226f9ae9458383221060b9a458b4a8a72b
[profile/ivi/qtbase.git] / src / plugins / platforms / cocoa / qcocoaintegration.mm
1 /****************************************************************************
2 **
3 ** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies).
4 ** All rights reserved.
5 ** Contact: Nokia Corporation (qt-info@nokia.com)
6 **
7 ** This file is part of the plugins of the Qt Toolkit.
8 **
9 ** $QT_BEGIN_LICENSE:LGPL$
10 ** GNU Lesser General Public License Usage
11 ** This file may be used under the terms of the GNU Lesser General Public
12 ** License version 2.1 as published by the Free Software Foundation and
13 ** appearing in the file LICENSE.LGPL included in the packaging of this
14 ** file. Please review the following information to ensure the GNU Lesser
15 ** General Public License version 2.1 requirements will be met:
16 ** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
17 **
18 ** In addition, as a special exception, Nokia gives you certain additional
19 ** rights. These rights are described in the Nokia Qt LGPL Exception
20 ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
21 **
22 ** GNU General Public License Usage
23 ** Alternatively, this file may be used under the terms of the GNU General
24 ** Public License version 3.0 as published by the Free Software Foundation
25 ** and appearing in the file LICENSE.GPL included in the packaging of this
26 ** file. Please review the following information to ensure the GNU General
27 ** Public License version 3.0 requirements will be met:
28 ** http://www.gnu.org/copyleft/gpl.html.
29 **
30 ** Other Usage
31 ** Alternatively, this file may be used in accordance with the terms and
32 ** conditions contained in a signed written agreement between you and Nokia.
33 **
34 **
35 **
36 **
37 **
38 ** $QT_END_LICENSE$
39 **
40 ****************************************************************************/
41
42 #include "qcocoaintegration.h"
43
44 #include "qcocoawindow.h"
45 #include "qcocoabackingstore.h"
46 #include "qcocoanativeinterface.h"
47 #include "qcocoamenuloader.h"
48 #include "qcocoaeventdispatcher.h"
49 #include "qcocoahelpers.h"
50 #include "qcocoaapplication.h"
51 #include "qcocoaapplicationdelegate.h"
52 #include "qmenu_mac.h"
53
54 #include <QtCore/qcoreapplication.h>
55
56 #include <QtPlatformSupport/private/qbasicunixfontdatabase_p.h>
57
58 QT_BEGIN_NAMESPACE
59
60 QCocoaScreen::QCocoaScreen(int screenIndex)
61     :QPlatformScreen()
62 {
63     m_screen = [[NSScreen screens] objectAtIndex:screenIndex];
64     NSRect rect = [m_screen frame];
65     m_geometry = QRect(rect.origin.x,rect.origin.y,rect.size.width,rect.size.height);
66
67     m_format = QImage::Format_ARGB32;
68
69     m_depth = NSBitsPerPixelFromDepth([m_screen depth]);
70
71     const int dpi = 72;
72     const qreal inch = 25.4;
73     m_physicalSize = QSize(qRound(m_geometry.width() * inch / dpi), qRound(m_geometry.height() *inch / dpi));
74 }
75
76 QCocoaScreen::~QCocoaScreen()
77 {
78 }
79
80 QCocoaIntegration::QCocoaIntegration()
81     : mFontDb(new QBasicUnixFontDatabase())
82     , mEventDispatcher(new QCocoaEventDispatcher())
83 {
84     mPool = new QCocoaAutoReleasePool;
85
86     QNSApplication *cocoaApplication = [QNSApplication sharedApplication];
87
88     // Applications launched from plain executables (without an app
89     // bundle) are "background" applications that does not take keybaord
90     // focus or have a dock icon or task switcher entry. Qt Gui apps generally
91     // wants to be foreground applications so change the process type. (But
92     // see the function implementation for exceptions.)
93     qt_mac_transformProccessToForegroundApplication();
94
95     // Move the application window to front to avoid launching behind the terminal.
96     // Ignoring other apps is neccessary (we must ignore the terminal), but makes
97     // Qt apps play slightly less nice with other apps when lanching from Finder
98     // (See the activateIgnoringOtherApps docs.)
99     [cocoaApplication activateIgnoringOtherApps : YES];
100
101     // ### For AA_MacPluginApplication we don't want to load the menu nib.
102     // Qt 4 also does not set the application delegate, so that behavior
103     // is matched here.
104     if (!QCoreApplication::testAttribute(Qt::AA_MacPluginApplication)) {
105
106         // Set app delegate, link to the current delegate (if any)
107         QT_MANGLE_NAMESPACE(QCocoaApplicationDelegate) *newDelegate = [QT_MANGLE_NAMESPACE(QCocoaApplicationDelegate) sharedDelegate];
108         [newDelegate setReflectionDelegate:[cocoaApplication delegate]];
109         [cocoaApplication setDelegate:newDelegate];
110
111         // Load the application menu. This menu contains Preferences, Hide, Quit.
112         QT_MANGLE_NAMESPACE(QCocoaMenuLoader) *qtMenuLoader = [[QT_MANGLE_NAMESPACE(QCocoaMenuLoader) alloc] init];
113         qt_mac_loadMenuNib(qtMenuLoader);
114         [cocoaApplication setMenu:[qtMenuLoader menu]];
115         [newDelegate setMenuLoader:qtMenuLoader];
116     }
117
118     NSArray *screens = [NSScreen screens];
119     for (uint i = 0; i < [screens count]; i++) {
120         QCocoaScreen *screen = new QCocoaScreen(i);
121         screenAdded(screen);
122     }
123 }
124
125 QCocoaIntegration::~QCocoaIntegration()
126 {
127     delete mPool;
128 }
129
130 bool QCocoaIntegration::hasCapability(QPlatformIntegration::Capability cap) const
131 {
132     switch (cap) {
133     case ThreadedPixmaps: return true;
134     case OpenGL : return true;
135     case ThreadedOpenGL : return true;
136     default: return QPlatformIntegration::hasCapability(cap);
137     }
138 }
139
140
141
142 QPlatformWindow *QCocoaIntegration::createPlatformWindow(QWindow *window) const
143 {
144     return new QCocoaWindow(window);
145 }
146
147 QPlatformOpenGLContext *QCocoaIntegration::createPlatformOpenGLContext(QOpenGLContext *context) const
148 {
149     return new QCocoaGLContext(context->format(), context->shareHandle());
150 }
151
152 QPlatformBackingStore *QCocoaIntegration::createPlatformBackingStore(QWindow *window) const
153 {
154     return new QCocoaBackingStore(window);
155 }
156
157 QAbstractEventDispatcher *QCocoaIntegration::guiThreadEventDispatcher() const
158 {
159     return mEventDispatcher;
160 }
161
162 QPlatformFontDatabase *QCocoaIntegration::fontDatabase() const
163 {
164     return mFontDb;
165 }
166
167 QPlatformMenu *QCocoaIntegration::createPlatformMenu(QMenu *menu) const
168 {
169     // return new QCocoaMenu(menu);
170     return 0;
171 }
172
173 QPlatformMenuBar *QCocoaIntegration::createPlatformMenuBar(QMenuBar *menuBar) const
174 {
175     //return new QCocoaMenuBar(menuBar);
176     return 0;
177 }
178
179 QPlatformNativeInterface *QCocoaIntegration::nativeInterface() const
180 {
181     return new QCocoaNativeInterface();
182 }
183
184 QT_END_NAMESPACE