2011-12-06 11:59:21 +00:00
|
|
|
/****************************************************************************
|
|
|
|
**
|
2016-01-15 12:36:27 +00:00
|
|
|
** Copyright (C) 2016 The Qt Company Ltd.
|
|
|
|
** Contact: https://www.qt.io/licensing/
|
2011-12-06 11:59:21 +00:00
|
|
|
**
|
|
|
|
** This file is part of the test suite of the Qt Toolkit.
|
|
|
|
**
|
2016-01-15 12:36:27 +00:00
|
|
|
** $QT_BEGIN_LICENSE:GPL-EXCEPT$
|
2012-09-19 12:28:29 +00:00
|
|
|
** Commercial License Usage
|
|
|
|
** Licensees holding valid commercial Qt licenses may use this file in
|
|
|
|
** accordance with the commercial license agreement provided with the
|
|
|
|
** Software or, alternatively, in accordance with the terms contained in
|
2015-01-28 08:44:43 +00:00
|
|
|
** a written agreement between you and The Qt Company. For licensing terms
|
2016-01-15 12:36:27 +00:00
|
|
|
** and conditions see https://www.qt.io/terms-conditions. For further
|
|
|
|
** information use the contact form at https://www.qt.io/contact-us.
|
2012-09-19 12:28:29 +00:00
|
|
|
**
|
2016-01-15 12:36:27 +00:00
|
|
|
** GNU General Public License Usage
|
|
|
|
** Alternatively, this file may be used under the terms of the GNU
|
|
|
|
** General Public License version 3 as published by the Free Software
|
|
|
|
** Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT
|
|
|
|
** included in the packaging of this file. Please review the following
|
|
|
|
** information to ensure the GNU General Public License requirements will
|
|
|
|
** be met: https://www.gnu.org/licenses/gpl-3.0.html.
|
2011-12-06 11:59:21 +00:00
|
|
|
**
|
|
|
|
** $QT_END_LICENSE$
|
|
|
|
**
|
|
|
|
****************************************************************************/
|
|
|
|
|
2015-01-27 13:13:39 +00:00
|
|
|
#include "rasterwindow.h"
|
2011-12-06 11:59:21 +00:00
|
|
|
|
2015-01-27 13:13:39 +00:00
|
|
|
#include <QtGui>
|
2011-12-06 11:59:21 +00:00
|
|
|
#include <QtWidgets/QtWidgets>
|
|
|
|
|
2015-08-26 08:48:34 +00:00
|
|
|
#include <AppKit/AppKit.h>
|
2011-12-06 11:59:21 +00:00
|
|
|
|
2017-08-30 17:05:39 +00:00
|
|
|
|
|
|
|
@interface ContentView : NSView
|
|
|
|
@end
|
|
|
|
|
|
|
|
@implementation ContentView
|
|
|
|
- (void)drawRect:(NSRect)dirtyRect {
|
|
|
|
[[NSColor whiteColor] setFill];
|
|
|
|
NSRectFill(dirtyRect);
|
|
|
|
}
|
|
|
|
@end
|
|
|
|
|
2015-01-27 13:13:39 +00:00
|
|
|
@interface AppDelegate : NSObject <NSApplicationDelegate> {
|
|
|
|
QGuiApplication *m_app;
|
|
|
|
QWindow *m_window;
|
2011-12-06 11:59:21 +00:00
|
|
|
}
|
2015-01-27 13:13:39 +00:00
|
|
|
- (AppDelegate *) initWithArgc:(int)argc argv:(const char **)argv;
|
|
|
|
- (void) applicationWillFinishLaunching: (NSNotification *)notification;
|
|
|
|
- (void)applicationWillTerminate:(NSNotification *)notification;
|
2011-12-06 11:59:21 +00:00
|
|
|
@end
|
|
|
|
|
|
|
|
|
2015-01-27 13:13:39 +00:00
|
|
|
@implementation AppDelegate
|
|
|
|
- (AppDelegate *) initWithArgc:(int)argc argv:(const char **)argv
|
2011-12-06 11:59:21 +00:00
|
|
|
{
|
2015-01-27 13:13:39 +00:00
|
|
|
m_app = new QGuiApplication(argc, const_cast<char **>(argv));
|
2011-12-06 11:59:21 +00:00
|
|
|
return self;
|
|
|
|
}
|
|
|
|
|
2015-01-27 13:13:39 +00:00
|
|
|
- (void) applicationWillFinishLaunching: (NSNotification *)notification
|
2011-12-06 11:59:21 +00:00
|
|
|
{
|
2015-01-27 13:13:39 +00:00
|
|
|
Q_UNUSED(notification);
|
2011-12-06 11:59:21 +00:00
|
|
|
|
2015-01-27 13:13:39 +00:00
|
|
|
// Create the NSWindow
|
2011-12-06 11:59:21 +00:00
|
|
|
NSRect frame = NSMakeRect(500, 500, 500, 500);
|
|
|
|
NSWindow* window = [[NSWindow alloc] initWithContentRect:frame
|
|
|
|
styleMask:NSTitledWindowMask | NSClosableWindowMask | NSMiniaturizableWindowMask | NSResizableWindowMask
|
|
|
|
backing:NSBackingStoreBuffered
|
|
|
|
defer:NO];
|
|
|
|
|
|
|
|
NSString *title = @"This the NSWindow window";
|
|
|
|
[window setTitle:title];
|
|
|
|
[window setBackgroundColor:[NSColor blueColor]];
|
|
|
|
|
2017-08-30 17:05:39 +00:00
|
|
|
window.contentView = [[[ContentView alloc] initWithFrame:frame] autorelease];
|
|
|
|
|
|
|
|
// Create the QWindow, add its NSView to the content view
|
|
|
|
m_window = new RasterWindow;
|
|
|
|
m_window->setObjectName("RasterWindow");
|
|
|
|
m_window->setGeometry(QRect(0, 0, 300, 300));
|
|
|
|
|
|
|
|
QWindow *childWindow = new RasterWindow;
|
|
|
|
childWindow->setObjectName("RasterWindowChild");
|
|
|
|
childWindow->setParent(m_window);
|
|
|
|
childWindow->setGeometry(50, 50, 100, 100);
|
|
|
|
|
|
|
|
[window.contentView addSubview:reinterpret_cast<NSView *>(m_window->winId())];
|
2015-01-27 13:13:39 +00:00
|
|
|
|
|
|
|
// Show the NSWindow
|
2011-12-06 11:59:21 +00:00
|
|
|
[window makeKeyAndOrderFront:NSApp];
|
|
|
|
}
|
|
|
|
|
2015-01-27 13:13:39 +00:00
|
|
|
- (void)applicationWillTerminate:(NSNotification *)notification
|
2011-12-06 11:59:21 +00:00
|
|
|
{
|
2015-01-27 13:13:39 +00:00
|
|
|
Q_UNUSED(notification);
|
|
|
|
delete m_window;
|
|
|
|
delete m_app;
|
|
|
|
}
|
2011-12-06 11:59:21 +00:00
|
|
|
|
2015-01-27 13:13:39 +00:00
|
|
|
@end
|
2011-12-06 11:59:21 +00:00
|
|
|
|
2015-01-27 13:13:39 +00:00
|
|
|
int main(int argc, const char *argv[])
|
|
|
|
{
|
|
|
|
// Create NSApplicaiton with delgate
|
|
|
|
NSApplication *app =[NSApplication sharedApplication];
|
|
|
|
app.delegate = [[AppDelegate alloc] initWithArgc:argc argv:argv];
|
|
|
|
return NSApplicationMain (argc, argv);
|
2011-12-06 11:59:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|