QTfrontend/CocoaInitializer.mm
changeset 8381 588a8e6e2041
parent 8380 0b375a3ceaa0
child 8382 67e257b98422
equal deleted inserted replaced
8380:0b375a3ceaa0 8381:588a8e6e2041
     1 /*
       
     2  * Hedgewars, a free turn based strategy game
       
     3  * Copyright (c) 2004-2012 Andrey Korotaev <unC0Rr@gmail.com>
       
     4  *
       
     5  * This program is free software; you can redistribute it and/or modify
       
     6  * it under the terms of the GNU General Public License as published by
       
     7  * the Free Software Foundation; version 2 of the License
       
     8  *
       
     9  * This program is distributed in the hope that it will be useful,
       
    10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
       
    11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
       
    12  * GNU General Public License for more details.
       
    13  *
       
    14  * You should have received a copy of the GNU General Public License
       
    15  * along with this program; if not, write to the Free Software
       
    16  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
       
    17  */
       
    18 
       
    19 // see original example here http://el-tramo.be/blog/mixing-cocoa-and-qt
       
    20 
       
    21 #include "CocoaInitializer.h"
       
    22 
       
    23 #include <AppKit/AppKit.h>
       
    24 #include <Cocoa/Cocoa.h>
       
    25 #include <QtDebug>
       
    26 
       
    27 class CocoaInitializer::Private
       
    28 {
       
    29     public:
       
    30         NSAutoreleasePool* pool;
       
    31 };
       
    32 
       
    33 CocoaInitializer::CocoaInitializer()
       
    34 {
       
    35     c = new CocoaInitializer::Private();
       
    36     c->pool = [[NSAutoreleasePool alloc] init];
       
    37     NSApplicationLoad();
       
    38 }
       
    39 
       
    40 CocoaInitializer::~CocoaInitializer()
       
    41 {
       
    42     [c->pool release];
       
    43     delete c;
       
    44 }