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