Fred Drake | 3a0351c | 1998-04-04 07:23:21 +0000 | [diff] [blame] | 1 | \section{Built-in Module \module{MacOS}} |
Guido van Rossum | e47da0a | 1997-07-17 16:34:52 +0000 | [diff] [blame] | 2 | \label{module-MacOS} |
Jack Jansen | ebed45f | 1995-08-14 13:40:05 +0000 | [diff] [blame] | 3 | \bimodindex{MacOS} |
| 4 | |
Jack Jansen | ebed45f | 1995-08-14 13:40:05 +0000 | [diff] [blame] | 5 | |
| 6 | This module provides access to MacOS specific functionality in the |
Fred Drake | 6188592 | 1998-04-03 07:16:46 +0000 | [diff] [blame] | 7 | Python interpreter, such as how the interpreter eventloop functions |
Jack Jansen | ebed45f | 1995-08-14 13:40:05 +0000 | [diff] [blame] | 8 | and the like. Use with care. |
| 9 | |
| 10 | Note the capitalisation of the module name, this is a historical |
Fred Drake | 6188592 | 1998-04-03 07:16:46 +0000 | [diff] [blame] | 11 | artifact. |
Jack Jansen | ebed45f | 1995-08-14 13:40:05 +0000 | [diff] [blame] | 12 | |
| 13 | \begin{excdesc}{Error} |
| 14 | This exception is raised on MacOS generated errors, either from |
| 15 | functions in this module or from other mac-specific modules like the |
| 16 | toolbox interfaces. The arguments are the integer error code (the |
Fred Drake | 6188592 | 1998-04-03 07:16:46 +0000 | [diff] [blame] | 17 | \cdata{OSErr} value) and a textual description of the error code. |
Guido van Rossum | 7e42cab | 1996-10-15 14:37:31 +0000 | [diff] [blame] | 18 | Symbolic names for all known error codes are defined in the standard |
Fred Drake | 6188592 | 1998-04-03 07:16:46 +0000 | [diff] [blame] | 19 | module \module{macerrors}\refstmodindex{macerrors}. |
Jack Jansen | ebed45f | 1995-08-14 13:40:05 +0000 | [diff] [blame] | 20 | \end{excdesc} |
| 21 | |
Guido van Rossum | e229d86 | 1997-08-18 15:14:26 +0000 | [diff] [blame] | 22 | \begin{funcdesc}{SetEventHandler}{handler} |
| 23 | In the inner interpreter loop Python will occasionally check for events, |
Fred Drake | 6188592 | 1998-04-03 07:16:46 +0000 | [diff] [blame] | 24 | unless disabled with \function{ScheduleParams()}. With this function you |
Guido van Rossum | e229d86 | 1997-08-18 15:14:26 +0000 | [diff] [blame] | 25 | can pass a Python event-handler function that will be called if an event |
| 26 | is available. The event is passed as parameter and the function should return |
| 27 | non-zero if the event has been fully processed, otherwise event processing |
| 28 | continues (by passing the event to the console window package, for instance). |
Jack Jansen | ebed45f | 1995-08-14 13:40:05 +0000 | [diff] [blame] | 29 | |
Fred Drake | 6188592 | 1998-04-03 07:16:46 +0000 | [diff] [blame] | 30 | Call \function{SetEventHandler()} without a parameter to clear the |
| 31 | event handler. Setting an event handler while one is already set is an |
| 32 | error. |
Jack Jansen | ebed45f | 1995-08-14 13:40:05 +0000 | [diff] [blame] | 33 | \end{funcdesc} |
| 34 | |
Fred Drake | 6188592 | 1998-04-03 07:16:46 +0000 | [diff] [blame] | 35 | \begin{funcdesc}{SchedParams}{\optional{doint\optional{, evtmask\optional{, |
| 36 | besocial\optional{, interval\optional{, |
| 37 | bgyield}}}}}} |
Guido van Rossum | e229d86 | 1997-08-18 15:14:26 +0000 | [diff] [blame] | 38 | Influence the interpreter inner loop event handling. \var{Interval} |
| 39 | specifies how often (in seconds, floating point) the interpreter |
| 40 | should enter the event processing code. When true, \var{doint} causes |
Fred Drake | 6188592 | 1998-04-03 07:16:46 +0000 | [diff] [blame] | 41 | interrupt (command-dot) checking to be done. \var{evtmask} tells the |
Guido van Rossum | e229d86 | 1997-08-18 15:14:26 +0000 | [diff] [blame] | 42 | interpreter to do event processing for events in the mask (redraws, |
Fred Drake | 289f97d | 1997-08-22 13:51:31 +0000 | [diff] [blame] | 43 | mouseclicks to switch to other applications, etc). The \var{besocial} |
| 44 | flag gives other processes a chance to run. They are granted minimal |
Guido van Rossum | e229d86 | 1997-08-18 15:14:26 +0000 | [diff] [blame] | 45 | runtime when Python is in the foreground and \var{bgyield} seconds per |
| 46 | \var{interval} when Python runs in the background. |
Jack Jansen | ebed45f | 1995-08-14 13:40:05 +0000 | [diff] [blame] | 47 | |
Guido van Rossum | e229d86 | 1997-08-18 15:14:26 +0000 | [diff] [blame] | 48 | All parameters are optional, and default to the current value. The return |
| 49 | value of this function is a tuple with the old values of these options. |
| 50 | Initial defaults are that all processing is enabled, checking is done every |
| 51 | quarter second and the CPU is given up for a quarter second when in the |
| 52 | background. |
Jack Jansen | ebed45f | 1995-08-14 13:40:05 +0000 | [diff] [blame] | 53 | \end{funcdesc} |
| 54 | |
| 55 | \begin{funcdesc}{HandleEvent}{ev} |
Fred Drake | 6188592 | 1998-04-03 07:16:46 +0000 | [diff] [blame] | 56 | Pass the event record \var{ev} back to the Python event loop, or |
Jack Jansen | ebed45f | 1995-08-14 13:40:05 +0000 | [diff] [blame] | 57 | possibly to the handler for the \code{sys.stdout} window (based on the |
Fred Drake | 6188592 | 1998-04-03 07:16:46 +0000 | [diff] [blame] | 58 | compiler used to build Python). This allows Python programs that do |
Jack Jansen | ebed45f | 1995-08-14 13:40:05 +0000 | [diff] [blame] | 59 | their own event handling to still have some command-period and |
| 60 | window-switching capability. |
Guido van Rossum | e229d86 | 1997-08-18 15:14:26 +0000 | [diff] [blame] | 61 | |
| 62 | If you attempt to call this function from an event handler set through |
Fred Drake | 6188592 | 1998-04-03 07:16:46 +0000 | [diff] [blame] | 63 | \function{SetEventHandler()} you will get an exception. |
Jack Jansen | ebed45f | 1995-08-14 13:40:05 +0000 | [diff] [blame] | 64 | \end{funcdesc} |
| 65 | |
| 66 | \begin{funcdesc}{GetErrorString}{errno} |
| 67 | Return the textual description of MacOS error code \var{errno}. |
| 68 | \end{funcdesc} |
Guido van Rossum | 66774a9 | 1996-07-21 02:20:58 +0000 | [diff] [blame] | 69 | |
| 70 | \begin{funcdesc}{splash}{resid} |
| 71 | This function will put a splash window |
| 72 | on-screen, with the contents of the DLOG resource specified by |
Fred Drake | 6188592 | 1998-04-03 07:16:46 +0000 | [diff] [blame] | 73 | \var{resid}. Calling with a zero argument will remove the splash |
Guido van Rossum | 7e42cab | 1996-10-15 14:37:31 +0000 | [diff] [blame] | 74 | screen. This function is useful if you want an applet to post a splash screen |
Guido van Rossum | 66774a9 | 1996-07-21 02:20:58 +0000 | [diff] [blame] | 75 | early in initialization without first having to load numerous |
| 76 | extension modules. |
| 77 | \end{funcdesc} |
| 78 | |
Fred Drake | 671fe9d | 1997-12-29 18:53:31 +0000 | [diff] [blame] | 79 | \begin{funcdesc}{DebugStr}{message \optional{, object}} |
Guido van Rossum | 7e42cab | 1996-10-15 14:37:31 +0000 | [diff] [blame] | 80 | Drop to the low-level debugger with message \var{message}. The |
| 81 | optional \var{object} argument is not used, but can easily be |
| 82 | inspected from the debugger. |
| 83 | |
| 84 | Note that you should use this function with extreme care: if no |
| 85 | low-level debugger like MacsBug is installed this call will crash your |
| 86 | system. It is intended mainly for developers of Python extension |
| 87 | modules. |
| 88 | \end{funcdesc} |
| 89 | |
Fred Drake | 671fe9d | 1997-12-29 18:53:31 +0000 | [diff] [blame] | 90 | \begin{funcdesc}{openrf}{name \optional{, mode}} |
Guido van Rossum | 66774a9 | 1996-07-21 02:20:58 +0000 | [diff] [blame] | 91 | Open the resource fork of a file. Arguments are the same as for the |
Fred Drake | 6188592 | 1998-04-03 07:16:46 +0000 | [diff] [blame] | 92 | built-in function \function{open()}. The object returned has file-like |
| 93 | semantics, but it is not a Python file object, so there may be subtle |
Guido van Rossum | 66774a9 | 1996-07-21 02:20:58 +0000 | [diff] [blame] | 94 | differences. |
| 95 | \end{funcdesc} |