2001-06-19 18:37:33 -03:00
|
|
|
# copyright 1996-2001 Just van Rossum, Letterror. just@letterror.com
|
1999-01-30 18:39:17 -04:00
|
|
|
|
|
|
|
# keep this (__main__) as clean as possible, since we are using
|
|
|
|
# it like the "normal" interpreter.
|
|
|
|
|
2001-06-19 18:37:33 -03:00
|
|
|
__version__ = '1.0.1'
|
2002-01-21 19:00:52 -04:00
|
|
|
import sys
|
|
|
|
import os
|
1999-01-30 18:39:17 -04:00
|
|
|
|
|
|
|
def init():
|
|
|
|
import MacOS
|
2002-01-21 19:00:52 -04:00
|
|
|
if hasattr(MacOS, 'EnableAppswitch'):
|
|
|
|
MacOS.EnableAppswitch(-1)
|
1999-01-30 18:39:17 -04:00
|
|
|
|
2001-08-25 09:15:04 -03:00
|
|
|
from Carbon import Qd, QuickDraw
|
1999-01-30 18:39:17 -04:00
|
|
|
Qd.SetCursor(Qd.GetCursor(QuickDraw.watchCursor).data)
|
|
|
|
|
2001-08-27 18:41:23 -03:00
|
|
|
import macresource
|
2001-08-25 09:15:04 -03:00
|
|
|
import sys, os
|
2001-08-27 18:41:23 -03:00
|
|
|
macresource.need('DITL', 468, "PythonIDE.rsrc")
|
2002-01-21 19:00:52 -04:00
|
|
|
widgetrespathsegs = [sys.exec_prefix, "Mac", "Tools", "IDE", "Widgets.rsrc"]
|
|
|
|
widgetresfile = os.path.join(*widgetrespathsegs)
|
2002-11-18 11:29:02 -04:00
|
|
|
if not os.path.exists(widgetresfile):
|
|
|
|
widgetrespathsegs = [os.pardir, "Tools", "IDE", "Widgets.rsrc"]
|
|
|
|
widgetresfile = os.path.join(*widgetrespathsegs)
|
2001-08-27 18:41:23 -03:00
|
|
|
refno = macresource.need('CURS', 468, widgetresfile)
|
2002-08-30 22:22:37 -03:00
|
|
|
if os.environ.has_key('PYTHONIDEPATH'):
|
|
|
|
# For development set this environment variable
|
|
|
|
ide_path = os.environ['PYTHONIDEPATH']
|
|
|
|
elif refno:
|
2001-08-27 18:41:23 -03:00
|
|
|
# We're not a fullblown application
|
2002-01-21 19:00:52 -04:00
|
|
|
idepathsegs = [sys.exec_prefix, "Mac", "Tools", "IDE"]
|
|
|
|
ide_path = os.path.join(*idepathsegs)
|
2002-11-18 11:29:02 -04:00
|
|
|
if not os.path.exists(ide_path):
|
|
|
|
idepathsegs = [os.pardir, "Tools", "IDE"]
|
|
|
|
for p in sys.path:
|
|
|
|
ide_path = os.path.join(*([p]+idepathsegs))
|
|
|
|
if os.path.exists(ide_path):
|
|
|
|
break
|
|
|
|
|
1999-01-30 18:39:17 -04:00
|
|
|
else:
|
2001-08-27 18:41:23 -03:00
|
|
|
# We are a fully frozen application
|
|
|
|
ide_path = sys.argv[0]
|
1999-01-31 19:17:56 -04:00
|
|
|
if ide_path not in sys.path:
|
|
|
|
sys.path.insert(0, ide_path)
|
1999-01-30 18:39:17 -04:00
|
|
|
|
|
|
|
|
|
|
|
init()
|
|
|
|
del init
|
|
|
|
|
|
|
|
import PythonIDEMain
|