mirror of
https://github.com/arsenetar/dupeguru.git
synced 2024-10-31 22:05:58 +00:00
50 lines
1.7 KiB
Objective-C
50 lines
1.7 KiB
Objective-C
/*
|
|
Copyright 2013 Hardcoded Software (http://www.hardcoded.net)
|
|
|
|
This software is licensed under the "BSD" License as described in the "LICENSE" file,
|
|
which should be included with this package. The terms are also available at
|
|
http://www.hardcoded.net/licenses/bsd_license
|
|
*/
|
|
|
|
#import <Cocoa/Cocoa.h>
|
|
#import <Python.h>
|
|
#import <wchar.h>
|
|
#import <locale.h>
|
|
#import "AppDelegate.h"
|
|
#import "MainMenu_UI.h"
|
|
|
|
int main(int argc, char *argv[])
|
|
{
|
|
NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
|
|
/* We have to set the locate to UTF8 for mbstowcs() to correctly convert non-ascii chars in paths */
|
|
setlocale(LC_ALL, "en_US.UTF-8");
|
|
NSString *respath = [[NSBundle mainBundle] resourcePath];
|
|
NSString *mainpy = [respath stringByAppendingPathComponent:@"dg_cocoa.py"];
|
|
wchar_t wPythonPath[PATH_MAX+1];
|
|
NSString *pypath = [respath stringByAppendingPathComponent:@"py"];
|
|
mbstowcs(wPythonPath, [pypath fileSystemRepresentation], PATH_MAX+1);
|
|
Py_SetPath(wPythonPath);
|
|
Py_SetPythonHome(wPythonPath);
|
|
Py_Initialize();
|
|
PyEval_InitThreads();
|
|
PyGILState_STATE gilState = PyGILState_Ensure();
|
|
FILE* fp = fopen([mainpy UTF8String], "r");
|
|
PyRun_SimpleFile(fp, [mainpy UTF8String]);
|
|
fclose(fp);
|
|
PyGILState_Release(gilState);
|
|
if (gilState == PyGILState_LOCKED) {
|
|
PyThreadState_Swap(NULL);
|
|
PyEval_ReleaseLock();
|
|
}
|
|
|
|
[NSApplication sharedApplication];
|
|
AppDelegate *appDelegate = [[AppDelegate alloc] init];
|
|
[NSApp setDelegate:appDelegate];
|
|
[NSApp setMainMenu:createMainMenu_UI(appDelegate)];
|
|
[appDelegate finalizeInit];
|
|
[pool release];
|
|
[NSApp run];
|
|
Py_Finalize();
|
|
return 0;
|
|
}
|