summaryrefslogtreecommitdiffstats
path: root/Mac/Modules/carbonevt/CarbonEvtsupport.py
Commit message (Collapse)AuthorAgeFilesLines
* Kill execfile(), use exec() insteadNeal Norwitz2007-08-121-1/+1
|
* Whitespace normalization, via reindent.py.Tim Peters2004-07-181-88/+88
|
* Got rid of macglue.h, replacing it by pymactoolbox.h where relevant.Jack Jansen2003-11-201-55/+1
| | | | Cleaned up various things in the toolbox modules.
* Getting rid of WITHOUT_FRAMEWORKS and ACCESSOR_CALLS_ARE_FUNCTIONS:Jack Jansen2003-11-191-4/+0
| | | | MacOS9isms.
* - Various tweaks to shut up compiler warnings.Jack Jansen2002-12-231-2/+2
| | | | | - Regenerated with the correct calls to PyType_Ready and the correct deallocator calls.
* Added PEP253 support to most Carbon modules. This isn't complete yet:Jack Jansen2002-12-031-2/+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-2/+5
| | | | | | | | | | | | | | | | 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.
* Today's Carbon Toolbox addition: CarbonEvt.TrackMouseLocation() and friends.Just van Rossum2002-01-081-0/+5
|
* fixed SetEventParameter() signature: removed unneccesary length arg.Just van Rossum2002-01-031-0/+6
|
* Patch #494553 by Donovan Preston: initial implementationJust van Rossum2001-12-181-2/+42
| | | | for GetEventParameter().
* Made event callbacks more rubust: keep an actual reference to theJust van Rossum2001-12-141-7/+62
| | | | python callback, and do RemoveEventHandler() upon deallocation.
* Added proper error checking in event callback handlerJust van Rossum2001-12-121-12/+25
|
* Exposed quite a few more calls.Just van Rossum2001-12-121-19/+30
|
* Fixed to the extend that it now builds in CW6, and actually worksJust van Rossum2001-12-111-11/+20
| | | | a little.
* Correctly builds the C module now.Jack Jansen2001-11-051-5/+4
|
* Fixed broken newlines and changed module name. Still untested.Jack Jansen2001-11-051-21/+11
|
* Carbon Event Manager module donated by Donovan Preston. Checked in as I ↵Jack Jansen2001-11-051-0/+241
received them (except for namechange), these will not work as-is, that'll be fixed in a later checkin.