Guido van Rossum | b340466 | 1995-01-22 18:36:13 +0000 | [diff] [blame] | 1 | /*********************************************************** |
| 2 | Copyright 1991-1995 by Stichting Mathematisch Centrum, Amsterdam, |
| 3 | The Netherlands. |
| 4 | |
| 5 | All Rights Reserved |
| 6 | |
| 7 | Permission to use, copy, modify, and distribute this software and its |
| 8 | documentation for any purpose and without fee is hereby granted, |
| 9 | provided that the above copyright notice appear in all copies and that |
| 10 | both that copyright notice and this permission notice appear in |
| 11 | supporting documentation, and that the names of Stichting Mathematisch |
| 12 | Centrum or CWI not be used in advertising or publicity pertaining to |
| 13 | distribution of the software without specific, written prior permission. |
| 14 | |
| 15 | STICHTING MATHEMATISCH CENTRUM DISCLAIMS ALL WARRANTIES WITH REGARD TO |
| 16 | THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND |
| 17 | FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH CENTRUM BE LIABLE |
| 18 | FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
| 19 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN |
| 20 | ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT |
| 21 | OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
| 22 | |
| 23 | ******************************************************************/ |
| 24 | |
Guido van Rossum | becdbec | 1995-02-14 01:27:24 +0000 | [diff] [blame] | 25 | #ifndef SystemSevenOrLater |
| 26 | #define SystemSevenOrLater 1 |
| 27 | #endif |
| 28 | |
Jack Jansen | 5f65309 | 1995-01-18 13:53:49 +0000 | [diff] [blame] | 29 | #include <Types.h> |
Guido van Rossum | b340466 | 1995-01-22 18:36:13 +0000 | [diff] [blame] | 30 | #include <Files.h> |
Guido van Rossum | cf27c2d | 1995-01-25 23:06:44 +0000 | [diff] [blame] | 31 | #include <Events.h> |
Jack Jansen | 32486f5 | 1995-08-14 12:36:37 +0000 | [diff] [blame] | 32 | #include <StandardFile.h> |
Jack Jansen | 5f65309 | 1995-01-18 13:53:49 +0000 | [diff] [blame] | 33 | |
Guido van Rossum | becdbec | 1995-02-14 01:27:24 +0000 | [diff] [blame] | 34 | #ifdef GENERATINGCFM /* Defined to 0 or 1 in Universal headers */ |
| 35 | #define HAVE_UNIVERSAL_HEADERS |
| 36 | #endif |
| 37 | |
Jack Jansen | f74f63a | 1995-06-27 13:18:14 +0000 | [diff] [blame] | 38 | #ifdef SYMANTEC__CFM68K__ |
Guido van Rossum | f71a9a9 | 1995-02-18 14:59:48 +0000 | [diff] [blame] | 39 | #pragma lib_export on |
| 40 | #endif |
Guido van Rossum | b340466 | 1995-01-22 18:36:13 +0000 | [diff] [blame] | 41 | |
Jack Jansen | 378815c | 1996-03-06 16:21:34 +0000 | [diff] [blame] | 42 | #ifdef USE_GUSI |
| 43 | void PyMac_FixGUSIcd Py_PROTO((void)); /* Workaround for GUSI chdir() call */ |
| 44 | #endif |
| 45 | |
Guido van Rossum | f71a9a9 | 1995-02-18 14:59:48 +0000 | [diff] [blame] | 46 | char *PyMac_StrError(int); /* strerror with mac errors */ |
| 47 | |
| 48 | extern int PyMac_DoYieldEnabled; /* Don't do eventloop when false */ |
Jack Jansen | ee23d6e | 1995-01-27 14:43:25 +0000 | [diff] [blame] | 49 | |
Guido van Rossum | cf27c2d | 1995-01-25 23:06:44 +0000 | [diff] [blame] | 50 | extern PyObject *PyMac_OSErrException; /* Exception for OSErr */ |
| 51 | PyObject *PyMac_GetOSErrException(void); /* Initialize & return it */ |
Guido van Rossum | b340466 | 1995-01-22 18:36:13 +0000 | [diff] [blame] | 52 | |
Guido van Rossum | f71a9a9 | 1995-02-18 14:59:48 +0000 | [diff] [blame] | 53 | int PyMac_Idle Py_PROTO((void)); /* Idle routine */ |
| 54 | void PyMac_Yield Py_PROTO((void)); /* optional idle routine for mainloop */ |
| 55 | void PyMac_SetYield Py_PROTO((long, long, long, long)); /* Set timeouts */ |
Guido van Rossum | cf27c2d | 1995-01-25 23:06:44 +0000 | [diff] [blame] | 56 | PyObject *PyErr_Mac(PyObject *, int); /* Exception with a mac error */ |
Jack Jansen | a76382a | 1995-02-02 14:25:56 +0000 | [diff] [blame] | 57 | PyObject *PyMac_Error(OSErr); /* Uses PyMac_GetOSErrException */ |
Guido van Rossum | f71a9a9 | 1995-02-18 14:59:48 +0000 | [diff] [blame] | 58 | void PyMac_HandleEvent Py_PROTO((EventRecord *)); /* Handle one event, if possible */ |
Guido van Rossum | b340466 | 1995-01-22 18:36:13 +0000 | [diff] [blame] | 59 | |
Guido van Rossum | cf27c2d | 1995-01-25 23:06:44 +0000 | [diff] [blame] | 60 | int PyMac_Idle(void); /* Idle routine */ |
Guido van Rossum | b340466 | 1995-01-22 18:36:13 +0000 | [diff] [blame] | 61 | |
Jack Jansen | 74162f3 | 1995-02-15 22:58:33 +0000 | [diff] [blame] | 62 | int PyMac_FindResourceModule(char *, char *); /* Test for 'PYC ' resource in a file */ |
| 63 | PyObject * PyMac_LoadResourceModule(char *, char *); /* Load 'PYC ' resource from file */ |
| 64 | |
Jack Jansen | 32486f5 | 1995-08-14 12:36:37 +0000 | [diff] [blame] | 65 | int PyMac_GetDirectory(FSSpec *dirfss, char *prompt); /* Ask user for a directory */ |
| 66 | void PyMac_PromptGetFile(short numTypes, ConstSFTypeListPtr typeList, |
| 67 | StandardFileReply *reply, char *prompt); /* Ask user for file, with prompt */ |
Jack Jansen | 3ec804a | 1995-02-20 15:56:10 +0000 | [diff] [blame] | 68 | |
Guido van Rossum | cf27c2d | 1995-01-25 23:06:44 +0000 | [diff] [blame] | 69 | int PyMac_GetOSType(PyObject *, OSType *); /* argument parser for OSType */ |
| 70 | PyObject *PyMac_BuildOSType(OSType); /* Convert OSType to PyObject */ |
Guido van Rossum | b340466 | 1995-01-22 18:36:13 +0000 | [diff] [blame] | 71 | |
Guido van Rossum | cf27c2d | 1995-01-25 23:06:44 +0000 | [diff] [blame] | 72 | int PyMac_GetStr255(PyObject *, Str255); /* argument parser for Str255 */ |
| 73 | PyObject *PyMac_BuildStr255(Str255); /* Convert Str255 to PyObject */ |
| 74 | |
| 75 | int PyMac_GetFSSpec(PyObject *, FSSpec *); /* argument parser for FSSpec */ |
| 76 | PyObject *PyMac_BuildFSSpec(FSSpec *); /* Convert FSSpec to PyObject */ |
| 77 | |
| 78 | int PyMac_GetRect(PyObject *, Rect *); /* argument parser for Rect */ |
| 79 | PyObject *PyMac_BuildRect(Rect *); /* Convert Rect to PyObject */ |
| 80 | |
| 81 | int PyMac_GetPoint(PyObject *, Point *); /* argument parser for Point */ |
| 82 | PyObject *PyMac_BuildPoint(Point); /* Convert Point to PyObject */ |
| 83 | |
| 84 | int PyMac_GetEventRecord(PyObject *, EventRecord *); /* argument parser for EventRecord */ |
| 85 | PyObject *PyMac_BuildEventRecord(EventRecord *); /* Convert EventRecord to PyObject */ |
Guido van Rossum | f71a9a9 | 1995-02-18 14:59:48 +0000 | [diff] [blame] | 86 | |
Jack Jansen | fa4d5d0 | 1995-11-15 15:19:29 +0000 | [diff] [blame] | 87 | int PyMac_GetFixed(PyObject *, Fixed *); /* argument parser for Fixed */ |
| 88 | PyObject *PyMac_BuildFixed(Fixed); /* Convert Fixed to PyObject */ |
Guido van Rossum | f71a9a9 | 1995-02-18 14:59:48 +0000 | [diff] [blame] | 89 | void PyMac_InitApplet(void); /* Initialize and run an Applet */ |