blob: d3287f4ee19aa170d3aef6852eaa8a54ade04cc3 [file] [log] [blame]
Fred Drakec817e271998-08-10 18:40:22 +00001\section{\module{MacOS} ---
Fred Drakef6863c11999-03-02 16:37:17 +00002 Access to MacOS interpreter features}
3
Fred Drakefe7f3bc1998-07-23 17:55:31 +00004\declaremodule{builtin}{MacOS}
Fred Drakef6863c11999-03-02 16:37:17 +00005 \platform{Mac}
Fred Drakefe7f3bc1998-07-23 17:55:31 +00006\modulesynopsis{Access to MacOS specific interpreter features.}
7
Jack Jansenebed45f1995-08-14 13:40:05 +00008
Jack Jansenebed45f1995-08-14 13:40:05 +00009This module provides access to MacOS specific functionality in the
Fred Drake61885921998-04-03 07:16:46 +000010Python interpreter, such as how the interpreter eventloop functions
Jack Jansenebed45f1995-08-14 13:40:05 +000011and the like. Use with care.
12
13Note the capitalisation of the module name, this is a historical
Fred Drake61885921998-04-03 07:16:46 +000014artifact.
Jack Jansenebed45f1995-08-14 13:40:05 +000015
16\begin{excdesc}{Error}
17This exception is raised on MacOS generated errors, either from
18functions in this module or from other mac-specific modules like the
19toolbox interfaces. The arguments are the integer error code (the
Fred Drake61885921998-04-03 07:16:46 +000020\cdata{OSErr} value) and a textual description of the error code.
Guido van Rossum7e42cab1996-10-15 14:37:31 +000021Symbolic names for all known error codes are defined in the standard
Fred Drake61885921998-04-03 07:16:46 +000022module \module{macerrors}\refstmodindex{macerrors}.
Jack Jansenebed45f1995-08-14 13:40:05 +000023\end{excdesc}
24
Guido van Rossume229d861997-08-18 15:14:26 +000025\begin{funcdesc}{SetEventHandler}{handler}
26In the inner interpreter loop Python will occasionally check for events,
Fred Drake61885921998-04-03 07:16:46 +000027unless disabled with \function{ScheduleParams()}. With this function you
Guido van Rossume229d861997-08-18 15:14:26 +000028can pass a Python event-handler function that will be called if an event
29is available. The event is passed as parameter and the function should return
30non-zero if the event has been fully processed, otherwise event processing
31continues (by passing the event to the console window package, for instance).
Jack Jansenebed45f1995-08-14 13:40:05 +000032
Fred Drake61885921998-04-03 07:16:46 +000033Call \function{SetEventHandler()} without a parameter to clear the
34event handler. Setting an event handler while one is already set is an
35error.
Jack Jansenebed45f1995-08-14 13:40:05 +000036\end{funcdesc}
37
Fred Drake61885921998-04-03 07:16:46 +000038\begin{funcdesc}{SchedParams}{\optional{doint\optional{, evtmask\optional{,
39 besocial\optional{, interval\optional{,
40 bgyield}}}}}}
Guido van Rossume229d861997-08-18 15:14:26 +000041Influence the interpreter inner loop event handling. \var{Interval}
42specifies how often (in seconds, floating point) the interpreter
43should enter the event processing code. When true, \var{doint} causes
Fred Drake61885921998-04-03 07:16:46 +000044interrupt (command-dot) checking to be done. \var{evtmask} tells the
Guido van Rossume229d861997-08-18 15:14:26 +000045interpreter to do event processing for events in the mask (redraws,
Fred Drake289f97d1997-08-22 13:51:31 +000046mouseclicks to switch to other applications, etc). The \var{besocial}
47flag gives other processes a chance to run. They are granted minimal
Guido van Rossume229d861997-08-18 15:14:26 +000048runtime when Python is in the foreground and \var{bgyield} seconds per
49\var{interval} when Python runs in the background.
Jack Jansenebed45f1995-08-14 13:40:05 +000050
Guido van Rossume229d861997-08-18 15:14:26 +000051All parameters are optional, and default to the current value. The return
52value of this function is a tuple with the old values of these options.
53Initial defaults are that all processing is enabled, checking is done every
54quarter second and the CPU is given up for a quarter second when in the
55background.
Jack Jansenebed45f1995-08-14 13:40:05 +000056\end{funcdesc}
57
58\begin{funcdesc}{HandleEvent}{ev}
Fred Drake61885921998-04-03 07:16:46 +000059Pass the event record \var{ev} back to the Python event loop, or
Jack Jansenebed45f1995-08-14 13:40:05 +000060possibly to the handler for the \code{sys.stdout} window (based on the
Fred Drake61885921998-04-03 07:16:46 +000061compiler used to build Python). This allows Python programs that do
Jack Jansenebed45f1995-08-14 13:40:05 +000062their own event handling to still have some command-period and
63window-switching capability.
Guido van Rossume229d861997-08-18 15:14:26 +000064
65If you attempt to call this function from an event handler set through
Fred Drake61885921998-04-03 07:16:46 +000066\function{SetEventHandler()} you will get an exception.
Jack Jansenebed45f1995-08-14 13:40:05 +000067\end{funcdesc}
68
69\begin{funcdesc}{GetErrorString}{errno}
70Return the textual description of MacOS error code \var{errno}.
71\end{funcdesc}
Guido van Rossum66774a91996-07-21 02:20:58 +000072
73\begin{funcdesc}{splash}{resid}
74This function will put a splash window
75on-screen, with the contents of the DLOG resource specified by
Fred Drake61885921998-04-03 07:16:46 +000076\var{resid}. Calling with a zero argument will remove the splash
Guido van Rossum7e42cab1996-10-15 14:37:31 +000077screen. This function is useful if you want an applet to post a splash screen
Guido van Rossum66774a91996-07-21 02:20:58 +000078early in initialization without first having to load numerous
79extension modules.
80\end{funcdesc}
81
Fred Drake671fe9d1997-12-29 18:53:31 +000082\begin{funcdesc}{DebugStr}{message \optional{, object}}
Guido van Rossum7e42cab1996-10-15 14:37:31 +000083Drop to the low-level debugger with message \var{message}. The
84optional \var{object} argument is not used, but can easily be
85inspected from the debugger.
86
87Note that you should use this function with extreme care: if no
88low-level debugger like MacsBug is installed this call will crash your
89system. It is intended mainly for developers of Python extension
90modules.
91\end{funcdesc}
92
Fred Drake671fe9d1997-12-29 18:53:31 +000093\begin{funcdesc}{openrf}{name \optional{, mode}}
Guido van Rossum66774a91996-07-21 02:20:58 +000094Open the resource fork of a file. Arguments are the same as for the
Fred Drake61885921998-04-03 07:16:46 +000095built-in function \function{open()}. The object returned has file-like
96semantics, but it is not a Python file object, so there may be subtle
Guido van Rossum66774a91996-07-21 02:20:58 +000097differences.
98\end{funcdesc}