summaryrefslogtreecommitdiffstats
path: root/Mac/Modules/list/listsupport.py
Commit message (Collapse)AuthorAgeFilesLines
* Remove the Mac modulesBenjamin Peterson2008-05-121-255/+0
|
* Convert raise statements in Mac/.Collin Winter2007-08-221-1/+1
|
* Kill execfile(), use exec() insteadNeal Norwitz2007-08-121-1/+1
|
* Whitespace normalization, via reindent.py.Tim Peters2004-07-181-92/+91
|
* Getting rid of WITHOUT_FRAMEWORKS and ACCESSOR_CALLS_ARE_FUNCTIONS:Jack Jansen2003-11-191-29/+0
| | | | MacOS9isms.
* Getting rid of pre-Carbon (MacOS8) support. All code depending onJack Jansen2002-12-121-60/+0
| | | | | | TARGET_API_MAC_OS8 (or !TARGET_API_MAC_CARBON) is gone. Also some TARGET_API_MAC_OSX conditional code is gone, because it is no longer used on OSX-only Python (only in MacPython-OS9).
* Added PEP253 support to most Carbon modules. This isn't complete yet:Jack Jansen2002-12-031-1/+2
| | | | | | some of the more compilcated cases (CF, Res) haven't been done yet. Also, various types should inherit from each other (anything with an as_Resource method should be a Resource subtype, the CF types should become one family).
* Converted the Carbon modules to use PEP252-style objects, withJack Jansen2002-11-291-41/+17
| | | | | | | | | | | | | | | | descriptors in stead of manual getattr hooks to get at attributes of the objects. For Qd I have in stead gotten rid of most of the attribute access in favor of the carbon-style accessor methods (with the exception of visRgn, to be done later), and of the Carbon.Qd.qd global object, for which accessor functions are also available. For List I have fixed the fact that various methods were incorrectly generated as functions. CF is untouched: PEP252 doesn't allow "poor-mans-inheritance" with basechain, so it will have to wait for PEP253 support.
* Adapted for Universal Headers 3.4Jack Jansen2001-12-161-0/+1
|
* added acces to the cellSize field, rewrote setattr codeJust van Rossum2001-11-051-12/+16
|
* More List Manager interfacing:Just van Rossum2001-11-051-7/+173
| | | | | | | - CreateCustomList(): write LDEF's in Python! (carbon + classic) - list.LGetCellDataLocation() (Jack: what's with this _WIN32/pywintoolbox.h stuff?)
* Shut up many more gcc warnings.Jack Jansen2001-09-051-1/+2
|
* The MacOS toolbox modules have acquired an _ in front of their name. Normal ↵Jack Jansen2001-08-231-2/+2
| | | | usage is through a wrapper module (without underscore) which lives in the Carbon package.
* Lots more Carbon/Carbon.h includes, new UPP routine names, function ↵Jack Jansen2001-05-221-8/+8
| | | | prototypes. Most toolbox modules now compile, link and import in MacOSX-MachO python.
* First step in porting MacPython modules to OSX/unix: break all references ↵Jack Jansen2001-05-171-0/+14
| | | | | | between modules except for the obj_New() and obj_Convert() routines, the PyArg_Parse and Py_BuildValue helpers. And these can now be vectored through glue routines (by defining USE_TOOLBOX_OBJECT_GLUE) which will do the necessary imports, whereupon the module's init routine will tell the glue routine about the real conversion routine address and everything is fine again.
* Adapted to Universal Headers 3.3.2. More to follow.Jack Jansen2000-12-101-0/+30
|
* List objects obtained through as_List(resource) are not auto-disposed uponJack Jansen2000-01-131-2/+23
| | | | Python object freeing.
* Unified handle-conversion scheme toJack Jansen1999-12-231-2/+12
| | | | | | | handle = Ctl.as_Resource(ctl) ctl = Ctl.as_Control(handle) and similarly for List, Menu, TE. The old handle.as_Control() methods are still there for backward compatability.
* Regenerated from Universal Headers 3.0.1. Some new calls areJack Jansen1998-02-201-2/+2
| | | | | | blacklisted, because they are not available in classic 68k programs, and bgen doesn't have a way to put #ifdef/#endif in the generated code. For now we only implement calls that work on all three models.
* Added access to selFlags and listFlags members (both read and write)Jack Jansen1996-07-261-0/+38
|
* Replaced various dummy updateRegions by real argumentsJack Jansen1996-04-101-2/+1
|
* Interface to the Mac List Manager.Jack Jansen1995-08-141-0/+84