author | koda |
Sat, 14 Nov 2015 03:00:41 +0100 | |
branch | sdl2transition |
changeset 11377 | ee86941e2ade |
parent 11046 | 47a8c19ecb60 |
child 12268 | 2eedf9e0cd6d |
permissions | -rw-r--r-- |
2261 | 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 |
11046 | 3 |
* Copyright (c) 2004-2015 Andrey Korotaev <unC0Rr@gmail.com> |
5095
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 |
10108
c68cf030eded
update FSF address. note: two sdl include files (by Sam Lantinga) still have the old FSF address in their copyright - but I ain't gonna touch their copyright headers
sheepluva
parents:
9998
diff
changeset
|
16 |
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA |
2261 | 17 |
*/ |
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 | 21 |
#include "CocoaInitializer.h" |
22 |
||
23 |
#include <AppKit/AppKit.h> |
|
24 |
#include <Cocoa/Cocoa.h> |
|
25 |
#include <QtDebug> |
|
26 |
||
3697 | 27 |
class CocoaInitializer::Private |
2261 | 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 | 31 |
}; |
32 |
||
33 |
CocoaInitializer::CocoaInitializer() |
|
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(); |
8064 | 36 |
c->pool = [[NSAutoreleasePool alloc] init]; |
5095
15dd764b728c
fix autorelease pools not being set (issue 209) and format code a little
koda
parents:
3697
diff
changeset
|
37 |
NSApplicationLoad(); |
2261 | 38 |
} |
39 |
||
40 |
CocoaInitializer::~CocoaInitializer() |
|
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 | 44 |
} |