cpython/Mac/Tools/IDE/Splash.py

113 lines
2.8 KiB
Python
Raw Normal View History

from Carbon import Dlg
from Carbon import Res
1999-01-30 22:39:17 +00:00
splash = Dlg.GetNewDialog(468, -1)
splash.DrawDialog()
from Carbon import Qd, TE, Fm
1999-01-30 22:39:17 +00:00
from Carbon import Win
from Carbon.Fonts import *
from Carbon.QuickDraw import *
2001-11-02 19:30:21 +00:00
from Carbon.TextEdit import teJustCenter
1999-01-30 22:39:17 +00:00
import string
import sys
2001-11-02 19:30:21 +00:00
_about_width = 440
_about_height = 340
1999-01-30 22:39:17 +00:00
_keepsplashscreenopen = 0
abouttext1 = """The Python Integrated Development Environment for the Macintosh\xaa
1999-01-30 22:39:17 +00:00
Version: %s
Copyright 1997-2001 Just van Rossum, Letterror. <just@letterror.com>
1999-01-30 22:39:17 +00:00
Python %s
%s
See: <http://www.python.org/> for information and documentation."""
flauwekul = [ "Goodday, Bruce.",
"What's new?",
"Nudge, nudge, say no more!",
"No, no sir, it's not dead. It's resting.",
"Albatros!",
"It's . . .",
"Is your name not Bruce, then?",
1999-01-30 22:39:17 +00:00
"""But Mr F.G. Superman has a secret identity . . .
when trouble strikes at any time . . .
at any place . . . he is ready to become . . .
Bicycle Repair Man!"""
]
def skipdoublereturns(text):
return string.replace(text, '\n\n', '\n')
1999-01-30 22:39:17 +00:00
def nl2return(text):
return string.replace(text, '\n', '\r')
1999-01-30 22:39:17 +00:00
def UpdateSplash(drawdialog = 0, what = 0):
if drawdialog:
splash.DrawDialog()
drawtext(what)
splash.GetDialogWindow().ValidWindowRect(splash.GetDialogPort().portRect)
2001-03-15 14:35:33 +00:00
Qd.QDFlushPortBuffer(splash.GetDialogWindow().GetWindowPort(), None)
1999-01-30 22:39:17 +00:00
def drawtext(what = 0):
Qd.SetPort(splash)
fontID = Fm.GetFNum("Python-Sans")
if not fontID:
fontID = geneva
Qd.TextFont(fontID)
Qd.TextSize(9)
rect = (10, 115, _about_width - 10, _about_height - 30)
1999-01-30 22:39:17 +00:00
if not what:
import __main__
abouttxt = nl2return(abouttext1 % (
__main__.__version__, sys.version, skipdoublereturns(sys.copyright)))
1999-01-30 22:39:17 +00:00
else:
import random
abouttxt = nl2return(random.choice(flauwekul))
TE.TETextBox(abouttxt, rect, teJustCenter)
UpdateSplash(1)
def wait():
from Carbon import Evt
from Carbon import Events
1999-01-30 22:39:17 +00:00
global splash
try:
splash
except NameError:
return
Qd.InitCursor()
time = Evt.TickCount()
whattext = 0
drawtext(whattext)
1999-01-30 22:39:17 +00:00
while _keepsplashscreenopen:
2001-02-09 15:56:19 +00:00
ok, event = Evt.EventAvail(Events.highLevelEventMask)
1999-01-30 22:39:17 +00:00
if ok:
# got apple event, back to mainloop
break
2001-02-09 15:56:19 +00:00
ok, event = Evt.EventAvail(Events.mDownMask | Events.keyDownMask | Events.updateMask)
1999-01-30 22:39:17 +00:00
if ok:
2001-02-09 15:56:19 +00:00
ok, event = Evt.WaitNextEvent(Events.mDownMask | Events.keyDownMask | Events.updateMask, 30)
1999-01-30 22:39:17 +00:00
if ok:
(what, message, when, where, modifiers) = event
2001-02-09 15:56:19 +00:00
if what == Events.updateEvt:
1999-01-30 22:39:17 +00:00
if Win.WhichWindow(message) == splash:
UpdateSplash(1, whattext)
else:
break
if Evt.TickCount() - time > 360:
whattext = not whattext
drawtext(whattext)
time = Evt.TickCount()
del splash
1999-01-30 22:39:17 +00:00
def about():
global splash, splashresfile, _keepsplashscreenopen
_keepsplashscreenopen = 1
splash = Dlg.GetNewDialog(468, -1)
splash.DrawDialog()
wait()