summaryrefslogtreecommitdiffstats
path: root/Mac/Python/macglue.c
Commit message (Collapse)AuthorAgeFilesLines
* Initial port to CodeWarrior CFM68K support (mainly by disablingJack Jansen1995-06-271-0/+4
| | | | unsupported features).
* Added code to obtain sys.path from a resourceJack Jansen1995-06-181-0/+97
| | | | | Removed code to update the preferences file, use EditPythonPrefs.py in stead (actually, code is still there if you define USE_MAC_MODPREFS)
* - The prefs file wasn't updated correctly if it already existed.Jack Jansen1995-04-241-5/+10
| | | | - Guido's r1.23 fix wrt PyMac_DoYieldEnabled had somehow gotten lost.
* Under MW also be more conservative about events to requestJack Jansen1995-02-271-11/+6
|
* return old value of PyMac_DoYieldEnabled; -1 means do not even check for ↵Guido van Rossum1995-02-261-1/+9
| | | | interrupts
* MAde a few things more orthogonal and did some cleanups:Jack Jansen1995-02-241-24/+32
| | | | | | | | - Applications now have their (minimal) main prrogram in macapplication.c and the rest of the init code in macglue.c. - A new define, USE_MAC_APPLET_SUPPORT, independent of USE_MAC_SHARED_LIB - chdir to script directory now done in PyMac_InitApplication.
* ported to MPW, moved main() hereGuido van Rossum1995-02-201-15/+31
|
* - Added PyMac_GetDirectory call which asks the user to select aJack Jansen1995-02-201-20/+79
| | | | | | | | directory. - No __main__ resource found message is now a dialog - Fixes wrt stdio window handling in applets. NB: these fixes require a new resource file.
* use PyMac_GetArgv (in macgetargv.c) for applet initsGuido van Rossum1995-02-191-17/+8
|
* added applet initialization;Guido van Rossum1995-02-181-12/+74
| | | | | fewer restrictions on loading modules from resources (+ fix!); macstrerror -> MacOS_StrError
* Added support for loading pyc code from a resource.Jack Jansen1995-02-151-0/+115
|
* ported to Think CGuido van Rossum1995-02-141-1/+2
|
* Changed PyMac_GetPythonDir to use a preferences file to store theJack Jansen1995-02-131-4/+46
| | | | alias resource. Also added a few comments.
* null-terminate the error string in macstrerrorGuido van Rossum1995-02-131-0/+1
|
* Added PyMac_GetPythonDir routine which obtains python home directoryJack Jansen1995-02-131-0/+75
| | | | | from an alias resource (or from the user). Note: this uses a dialog resource so there's an accompanying change in the resource file.
* Added HandleEvent method to macos, so python programs can hand backJack Jansen1995-02-021-12/+23
| | | | events they don't want to handle to stdio
* added <OSEvents.h> for Think CGuido van Rossum1995-01-301-0/+3
|
* - Moved interrupt code to macglue.cJack Jansen1995-01-271-21/+131
| | | | | | | - Added possibility to turn off mainloop event handling - Check interrupts even when not handling events - Be more carefulabout which events we want - Use different method to determine fg/bg
* reverse h/v in Point and RectGuido van Rossum1995-01-261-10/+12
|
* Added eventhandling in mainloop/busywait routine plus leaving someJack Jansen1995-01-261-18/+119
| | | | | cycles for background apps. MacOS has a new method to set the amount of time for bg apps.
* Some layout changes; added EventRecord Get/Build functions (as a tuple).Guido van Rossum1995-01-251-11/+96
|
* cosmetics: copyright, commentsGuido van Rossum1995-01-221-15/+33
|
* renamed Get routines to PyMac_Get; added macfs to config.cGuido van Rossum1995-01-211-6/+7
|
* modernized/rationalized, added PyMac_BuildOSTypeGuido van Rossum1995-01-181-4/+13
|
* - Moved some useful routines from macosmodule.c hereJack Jansen1995-01-181-5/+93
| | | | | - Added GetFSSpec (tuple-style), BuildFSSpec and Pstring (platform-independent correct conversion of C to Pascal strings)
* rename2 changesGuido van Rossum1995-01-121-1/+1
|
* New routines:Jack Jansen1994-12-141-0/+86
macstrerror - strerror which uses 'Estr' resource to convert numerical MacOS errors to strings. PyErr_Mac - Raise exception with MacOS error in string form. PyMac_Idle - better idle-loop routine, which allows the user to switch applications.