~ubuntu-branches/ubuntu/raring/hedgewars/raring-backports

« back to all changes in this revision

Viewing changes to QTfrontend/util/platform/CocoaInitializer.mm

  • Committer: Package Import Robot
  • Author(s): Felix Geyer
  • Date: 2013-06-21 17:55:04 UTC
  • mfrom: (19.1.4 sid)
  • Revision ID: package-import@ubuntu.com-20130621175504-otv451gi461tj4bn
Tags: 0.9.19.3-1~ubuntu13.04.1
No-change backport to raring (LP: #1191816)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * Hedgewars, a free turn based strategy game
 
3
 * Copyright (c) 2004-2013 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
}