QTfrontend/CocoaInitializer.mm
author nemo
Mon, 12 Sep 2011 19:30:18 -0400
changeset 5883 a6d764786905
parent 5095 15dd764b728c
child 6952 7f70f37bbf08
permissions -rw-r--r--
Disable GL SetAttributes for Windows due to many testers with problems. This restores .15 behaviour. If we can find willing testers, perhaps we can narrow down which attribute was the problem. Also reenable F12 bind for Windows.
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2261
57e99c908e7c a lot of stuff:
koda
parents:
diff changeset
     1
/*
5095
15dd764b728c fix autorelease pools not being set (issue 209) and format code a little
koda
parents: 3697
diff changeset
     2
 * Hedgewars, a free turn based strategy game
15dd764b728c fix autorelease pools not being set (issue 209) and format code a little
koda
parents: 3697
diff changeset
     3
 * Copyright (c) 2005-2011 Andrey Korotaev <unC0Rr@gmail.com>
15dd764b728c fix autorelease pools not being set (issue 209) and format code a little
koda
parents: 3697
diff changeset
     4
 *
15dd764b728c fix autorelease pools not being set (issue 209) and format code a little
koda
parents: 3697
diff changeset
     5
 * This program is free software; you can redistribute it and/or modify
15dd764b728c fix autorelease pools not being set (issue 209) and format code a little
koda
parents: 3697
diff changeset
     6
 * it under the terms of the GNU General Public License as published by
15dd764b728c fix autorelease pools not being set (issue 209) and format code a little
koda
parents: 3697
diff changeset
     7
 * the Free Software Foundation; version 2 of the License
15dd764b728c fix autorelease pools not being set (issue 209) and format code a little
koda
parents: 3697
diff changeset
     8
 *
15dd764b728c fix autorelease pools not being set (issue 209) and format code a little
koda
parents: 3697
diff changeset
     9
 * This program is distributed in the hope that it will be useful,
15dd764b728c fix autorelease pools not being set (issue 209) and format code a little
koda
parents: 3697
diff changeset
    10
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15dd764b728c fix autorelease pools not being set (issue 209) and format code a little
koda
parents: 3697
diff changeset
    11
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15dd764b728c fix autorelease pools not being set (issue 209) and format code a little
koda
parents: 3697
diff changeset
    12
 * GNU General Public License for more details.
15dd764b728c fix autorelease pools not being set (issue 209) and format code a little
koda
parents: 3697
diff changeset
    13
 *
15dd764b728c fix autorelease pools not being set (issue 209) and format code a little
koda
parents: 3697
diff changeset
    14
 * You should have received a copy of the GNU General Public License
15dd764b728c fix autorelease pools not being set (issue 209) and format code a little
koda
parents: 3697
diff changeset
    15
 * along with this program; if not, write to the Free Software
15dd764b728c fix autorelease pools not being set (issue 209) and format code a little
koda
parents: 3697
diff changeset
    16
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
2261
57e99c908e7c a lot of stuff:
koda
parents:
diff changeset
    17
 */
57e99c908e7c a lot of stuff:
koda
parents:
diff changeset
    18
5095
15dd764b728c fix autorelease pools not being set (issue 209) and format code a little
koda
parents: 3697
diff changeset
    19
// see original example here http://el-tramo.be/blog/mixing-cocoa-and-qt
15dd764b728c fix autorelease pools not being set (issue 209) and format code a little
koda
parents: 3697
diff changeset
    20
2261
57e99c908e7c a lot of stuff:
koda
parents:
diff changeset
    21
#include "CocoaInitializer.h"
57e99c908e7c a lot of stuff:
koda
parents:
diff changeset
    22
57e99c908e7c a lot of stuff:
koda
parents:
diff changeset
    23
#include <AppKit/AppKit.h>
57e99c908e7c a lot of stuff:
koda
parents:
diff changeset
    24
#include <Cocoa/Cocoa.h>
57e99c908e7c a lot of stuff:
koda
parents:
diff changeset
    25
#include <QtDebug>
57e99c908e7c a lot of stuff:
koda
parents:
diff changeset
    26
3697
d5b30d6373fc remove trailing spaces from end of line
koda
parents: 2400
diff changeset
    27
class CocoaInitializer::Private
2261
57e99c908e7c a lot of stuff:
koda
parents:
diff changeset
    28
{
5095
15dd764b728c fix autorelease pools not being set (issue 209) and format code a little
koda
parents: 3697
diff changeset
    29
    public:
15dd764b728c fix autorelease pools not being set (issue 209) and format code a little
koda
parents: 3697
diff changeset
    30
        NSAutoreleasePool* pool;
2261
57e99c908e7c a lot of stuff:
koda
parents:
diff changeset
    31
};
57e99c908e7c a lot of stuff:
koda
parents:
diff changeset
    32
57e99c908e7c a lot of stuff:
koda
parents:
diff changeset
    33
CocoaInitializer::CocoaInitializer()
57e99c908e7c a lot of stuff:
koda
parents:
diff changeset
    34
{
5095
15dd764b728c fix autorelease pools not being set (issue 209) and format code a little
koda
parents: 3697
diff changeset
    35
    c = new CocoaInitializer::Private();
15dd764b728c fix autorelease pools not being set (issue 209) and format code a little
koda
parents: 3697
diff changeset
    36
    NSApplicationLoad();
15dd764b728c fix autorelease pools not being set (issue 209) and format code a little
koda
parents: 3697
diff changeset
    37
    c->pool = [[NSAutoreleasePool alloc] init];
2261
57e99c908e7c a lot of stuff:
koda
parents:
diff changeset
    38
}
57e99c908e7c a lot of stuff:
koda
parents:
diff changeset
    39
57e99c908e7c a lot of stuff:
koda
parents:
diff changeset
    40
CocoaInitializer::~CocoaInitializer()
57e99c908e7c a lot of stuff:
koda
parents:
diff changeset
    41
{
5095
15dd764b728c fix autorelease pools not being set (issue 209) and format code a little
koda
parents: 3697
diff changeset
    42
    [c->pool release];
15dd764b728c fix autorelease pools not being set (issue 209) and format code a little
koda
parents: 3697
diff changeset
    43
    delete c;
2261
57e99c908e7c a lot of stuff:
koda
parents:
diff changeset
    44
}