summaryrefslogtreecommitdiffstats
path: root/Mac/Tools/IDE/PythonIDE.py
blob: 5ebe97afe29229fb63f05f5c3887bba5dfbcf1f1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
# copyright 1996-2001 Just van Rossum, Letterror. just@letterror.com

# keep this (__main__) as clean as possible, since we are using 
# it like the "normal" interpreter.

__version__ = '1.0.1'


def init():
	import MacOS
	MacOS.EnableAppswitch(-1)
	
	from Carbon import Qd, QuickDraw
	Qd.SetCursor(Qd.GetCursor(QuickDraw.watchCursor).data)
	
	import macresource
	import sys, os
	macresource.need('DITL', 468, "PythonIDE.rsrc")
	widgetresfile = os.path.join(sys.exec_prefix, ":Mac:Tools:IDE:Widgets.rsrc")
	refno = macresource.need('CURS', 468, widgetresfile)
	if refno:
		# We're not a fullblown application
		ide_path = os.path.join(sys.exec_prefix, ":Mac:Tools:IDE")
	else:
		# We are a fully frozen application
		ide_path = sys.argv[0]
	if ide_path not in sys.path:
		sys.path.insert(0, ide_path)


init()
del init

import PythonIDEMain