summaryrefslogtreecommitdiffstats
path: root/Mac
Commit message (Collapse)AuthorAgeFilesLines
* RegeneratedJack Jansen1997-08-1513-14/+14
|
* Added support for WCTabHandle, AuxWinHandle, PixPatHandle: no reasonJack Jansen1997-08-153-5/+59
| | | | for blacklisting them.
* Added #include <string.h> for memcpy()Jack Jansen1997-08-152-0/+2
|
* Added support for GDHandle, CTabHandle, ITabHandle and CCrsrHandle: noJack Jansen1997-08-153-4/+348
| | | | reason they were blacklisted, we can handle them as generic Handles.
* Added GetAuxiliaryControlRecord and SetControlColor, there was no goodJack Jansen1997-08-153-2/+39
| | | | reason they were excluded.
* Made AEDesc_{New,Convert} globalJack Jansen1997-08-152-8/+8
|
* mkalias() now has an optional third parameter to create relativeJack Jansen1997-08-081-2/+7
| | | | aliases (Just)
* - Added classes to support class/property generation by gensuitemoduleJack Jansen1997-08-083-17/+111
| | | | - Fixed Property class: selector is a 'type', not an 'enum'
* Added (dummy) PyOS_FiniInterruptsJack Jansen1997-08-081-0/+5
|
* Adapted for 1.5a3: Py_SupressPrintingFlag is gone, andJack Jansen1997-08-081-21/+9
| | | | Py_SetProgramName replaces Py_GetProgramName
* New version number, new tk resources, new error numbers, new GUSIJack Jansen1997-08-087-4316/+4819
|
* Don't define ENOENT when compiling with MSLJack Jansen1997-08-081-2/+0
|
* CW11 projects replaced by CW Pro 1 projects, and all cfm68k/ppcJack Jansen1997-08-0875-16936/+9494
| | | | projects unified (as much as possible: PythonCore is still separate).
* Modified for CW Pro 1 projects. Convention used: .mu files are oldJack Jansen1997-08-083-56/+70
| | | | | | | project files, which have to be cleaned up before checking in, .prj files are CW Pro 1 projects (which are always clean). Prj files are still binhexed, even though they only have a data fork (and, hence, could be checked in in binary mode).
* Generate class, property and comparison code (finally!). The resultingJack Jansen1997-08-081-41/+201
| | | | | | code isn't ideal yet: xxx.Window(1).Paragraph(3).font will only work if all the classes and properties are declared in the same suite, but at least font(Paragraph(3, Window(1))) always works.
* Final set of CW11 projects, before switch to CW Pro 1.Jack Jansen1997-07-2835-9518/+9931
|
* Mods for user mainloop event handlingJack Jansen1997-06-201-2/+3
|
* Added dopendingevents callJack Jansen1997-06-201-0/+31
| | | | Added asyncevents call to enable asynchronous event handling
* Allow specifying own resources for all dialogsJack Jansen1997-06-201-7/+15
| | | | Allow changing labels on yesnocancel dialog
* Module to buffer stdout/stderr until stdin is read. Useful forJack Jansen1997-06-201-0/+110
| | | | | windowing programs, together with option to keep console window closed until needed.
* RegeneratedJack Jansen1997-06-203-3/+3
|
* added SetEventHandlerJack Jansen1997-06-201-12/+25
|
* Adapted to new event handling. It is now also possible to abort out ofJack Jansen1997-06-202-2/+12
| | | | an AESend with command-. (unless specifically disabled, of course).
* Added PyMac_SetEventHandler which allows you to replace complete eventJack Jansen1997-06-201-43/+71
| | | | | | handling in inner loop with python code. Also move (previously machine independent) PyErr_CheckSignals here, so we can propagate exceptions in event handling code.
* Added NewAliasMinimalFromFullPath(), and allow alias.Resolve() to returnJack Jansen1997-06-161-1/+28
| | | | an FSSpec to a non-existing file.
* Make imports faster on the Mac, byJack Jansen1997-06-122-8/+106
| | | | | | | | - Remembering whether sys.path components refer to files or folders, - Using mac-specific code to check for file existence, in stead of trying to fopen() each possible file. These mods need an accompanying mod to import.c.
* Added prototype for PyMac_RestoreMenuBarJack Jansen1997-06-121-0/+1
|
* Replaced MacOS.EnableAppSwitch with MacOS.SchedParamsJack Jansen1997-06-122-5/+5
|
* Added optional preload arg to some routines (which creates reloadedJack Jansen1997-06-121-5/+9
| | | | resources when set)
* Replaced MacOS.EnableAppswitch by MacOS.SchedParamsJack Jansen1997-06-124-6/+6
|
* - Restore SIOUX menubar just before exiting, if the console window is keptJack Jansen1997-06-122-21/+27
| | | | | open (so the user can quit with cmd-Q, print, etc) - Removed a few unused routines
* Added zlibJack Jansen1997-06-031-0/+2
|
* Added USE_ZLIB to nonshared config filesJack Jansen1997-06-033-0/+3
|
* Removed SetScheduleTimesJack Jansen1997-06-031-26/+66
| | | | | Added SchedParams Added docstrings for most routines
* Added zlib (optional on USE_ZLIB)Jack Jansen1997-06-031-0/+6
|
* Removed old scheduler parameterizing calls and replaced with somethingJack Jansen1997-06-032-102/+125
| | | | a bit easier to use and understand
* Removed SetScheduleTimes and PyMac_DoYieldEnabledJack Jansen1997-06-031-6/+13
| | | | | | Added [GS]etSchedParams Added parameter to PyMac_HandleEvent (safe to run python code at this point) Removed various cruft
* Documented (slightly) the USE_CACHE_ALIGNED define, for the standaloneJack Jansen1997-05-292-2/+13
| | | | distribution
* Updated for 1.5a2 distributionJack Jansen1997-05-291-24/+17
|
* Projects for 1.5a2 distritbuionJack Jansen1997-05-2928-3179/+3249
|
* Version number and such for 1.5a2 distributionJack Jansen1997-05-294-1332/+1331
|
* Changed release note structure:Jack Jansen1997-05-288-762/+663
| | | | | - Relnotes contains current release notes - HISTORY contains all old release notes
* Added a range of resource numbers reserved for BruceJack Jansen1997-05-281-0/+3
|
* Removed references to StdClib and PLStringFuncs, rebuilt everythingJack Jansen1997-05-2330-12711/+12686
|
* Nothing importantJack Jansen1997-05-233-30/+30
|
* Changed version string and preferences filename to 1.5a2.Jack Jansen1997-05-234-919/+925
|
* RenamedJack Jansen1997-05-231-1/+1
|
* Added keys() and mapping interface to shared-library objects, allowingJack Jansen1997-05-231-2/+103
| | | | iteration over all symbols exported
* - Added Py_GetProgramFullPathJack Jansen1997-05-232-8/+59
| | | | | | | - Added PyMac_StopGUSISpin and have it called at exit time (fixes crash when exiting with sockets open) - Added PLstr... funcs needed by gusi: those provided by StdCLib are broken under cfm68k
* Added PyMac_StopGUSISpinJack Jansen1997-05-231-5/+6
|