Cocoa: Load the standard app menu.
[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
50 #include <QtPlatformSupport/private/qbasicunixfontdatabase_p.h>
51
52 QT_BEGIN_NAMESPACE
53
54 QCocoaScreen::QCocoaScreen(int screenIndex)
55     :QPlatformScreen()
56 {
57     m_screen = [[NSScreen screens] objectAtIndex:screenIndex];
58     NSRect rect = [m_screen frame];
59     m_geometry = QRect(rect.origin.x,rect.origin.y,rect.size.width,rect.size.height);
60
61     m_format = QImage::Format_ARGB32;
62
63     m_depth = NSBitsPerPixelFromDepth([m_screen depth]);
64
65     const int dpi = 72;
66     const qreal inch = 25.4;
67     m_physicalSize = QSize(qRound(m_geometry.width() * inch / dpi), qRound(m_geometry.height() *inch / dpi));
68 }
69
70 QCocoaScreen::~QCocoaScreen()
71 {
72 }
73
74 QCocoaIntegration::QCocoaIntegration()
75     : mFontDb(new QBasicUnixFontDatabase())
76     , mEventDispatcher(new QCocoaEventDispatcher())
77 {
78     mPool = new QCocoaAutoReleasePool;
79
80     //Make sure we have a nsapplication :)
81     [NSApplication sharedApplication];
82 //    [[OurApplication alloc] init];
83
84     // Move the application window to front to avoid launching behind the terminal.
85     // Ignoring other apps is neccessary (we must ignore the terminal), but makes
86     // Qt apps play slightly less nice with other apps when lanching from Finder
87     // (See the activateIgnoringOtherApps docs.)
88     [[NSApplication sharedApplication] activateIgnoringOtherApps : YES];
89
90     QT_MANGLE_NAMESPACE(QCocoaMenuLoader) *qtMenuLoader = [[QT_MANGLE_NAMESPACE(QCocoaMenuLoader) alloc] init];
91     qt_mac_loadMenuNib(qtMenuLoader);
92     [[NSApplication sharedApplication] setMenu:[qtMenuLoader menu]];
93
94     NSArray *screens = [NSScreen screens];
95     for (uint i = 0; i < [screens count]; i++) {
96         QCocoaScreen *screen = new QCocoaScreen(i);
97         screenAdded(screen);
98     }
99 }
100
101 QCocoaIntegration::~QCocoaIntegration()
102 {
103     delete mPool;
104 }
105
106 bool QCocoaIntegration::hasCapability(QPlatformIntegration::Capability cap) const
107 {
108     switch (cap) {
109     case ThreadedPixmaps: return true;
110     case OpenGL : return true;
111     case ThreadedOpenGL : return true;
112     default: return QPlatformIntegration::hasCapability(cap);
113     }
114 }
115
116
117
118 QPlatformWindow *QCocoaIntegration::createPlatformWindow(QWindow *window) const
119 {
120     return new QCocoaWindow(window);
121 }
122
123 QPlatformOpenGLContext *QCocoaIntegration::createPlatformOpenGLContext(QOpenGLContext *context) const
124 {
125     return new QCocoaGLContext(context->format(), context->shareHandle());
126 }
127
128 QPlatformBackingStore *QCocoaIntegration::createPlatformBackingStore(QWindow *window) const
129 {
130     return new QCocoaBackingStore(window);
131 }
132
133 QAbstractEventDispatcher *QCocoaIntegration::guiThreadEventDispatcher() const
134 {
135     return mEventDispatcher;
136 }
137
138 QPlatformFontDatabase *QCocoaIntegration::fontDatabase() const
139 {
140     return mFontDb;
141 }
142
143 QPlatformNativeInterface *QCocoaIntegration::nativeInterface() const
144 {
145     return new QCocoaNativeInterface();
146 }
147
148 QT_END_NAMESPACE