summaryrefslogtreecommitdiffstats
path: root/Mac/Modules/qt/qtsupport.py
Commit message (Collapse)AuthorAgeFilesLines
* This patch fixes issue 1254695 (wrong argument type conversion in Carbon.Qt)Ronald Oussoren2009-03-301-13/+16
|
* Whitespace normalization, via reindent.py.Tim Peters2004-07-181-89/+88
|
* More cases of input parameters passed by reference without const.Jack Jansen2004-01-111-0/+1
|
* Added support for APIs in QuickTimeMusic.h. This one is a bit dodgy:Jack Jansen2004-01-111-0/+24
| | | | | the header file seems to be hand-written and missing the "const" keywords for input parameters passed by reference.
* Allow passing NULL pointers by passing None. This also works for theJack Jansen2004-01-041-56/+35
| | | | | | | | factory functions, so you can call quicktime functions that are implemented as methods on NULL too. Still don't allow quicktime functions to return NULL pointers, though: I think this always signals an error condition.
* Added interfaces for most of the stuff in QuickTimeComponents.h.Jack Jansen2004-01-031-1/+41
|
* Added support for ImageCompression.h APIs.Jack Jansen2004-01-021-0/+8
|
* Updated for QuickTime 6.0, Universal Header 3.4.2.Jack Jansen2004-01-021-0/+11
|
* Getting rid of WITHOUT_FRAMEWORKS and ACCESSOR_CALLS_ARE_FUNCTIONS:Jack Jansen2003-11-191-5/+0
| | | | MacOS9isms.
* Added PEP253 support to most Carbon modules. This isn't complete yet:Jack Jansen2002-12-031-6/+6
| | | | | | 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-6/+6
| | | | | | | | | | | | | | | | 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.
* Weaklink most toolbox modules, improving backward compatibility. Modules ↵Jack Jansen2002-03-251-2/+2
| | | | | | will no longer fail to load if a single routine is missing on the curent OS version, in stead calling the missing routine will raise an exception. Should finally fix 531398. 2.2.1 candidate.
* 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-18/+21
| | | | 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/+42
| | | | | | 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.
* More toolbox modules adapted to Universal Headers 3.3.2.Jack Jansen2000-12-121-0/+5
|
* pymactoolbox.h contains protoypes for all externally visible toolbox moduleJack Jansen2000-07-141-19/+0
| | | | | functions. Include it in stead of duplicating the declarations everywhere. Also cleaned up toolbox module exports, and got rid of resNotFound error.
* Changed all (hopefully) uses of unsigned 16 bit value to use H format ↵Jack Jansen2000-07-071-3/+3
| | | | specifier, now that h is signed-only.
* Added a method GetMediaNextInterestingTimeOnly, which is like ↵Jack Jansen2000-03-171-0/+13
| | | | GetMediaNextInterestingTime without asking for the duration (which is, according to qt docs, expensive).
* Allow None as TimeBase value in TimeValue records (becomes NULL in C structure,Jack Jansen2000-03-061-5/+13
| | | | used for delta-t values by quicktime).
* Removed availabe() method again: even on PPC it sometimes returns 1 whileJack Jansen1999-08-231-15/+0
| | | | quicktime isn't available. Use gestalt in stead for this functionality.
* Added available() method, which checks whether quicktime is installed at all (byJack Jansen1999-08-041-0/+15
| | | | testing whether EnterMovies points to an actual routine or is a null pointer).
* - Added a function MoviesTask, which is the same as the method butJack Jansen1998-07-221-1/+9
| | | | | with a null movie (giving time to all active movies) - Made the graphics world parameter to SetMovieGWorld optional.
* Added support for the horribly complex TimeRecord, so we can positionJack Jansen1998-04-231-4/+33
| | | | | | movies, etc. TimeBase objects have also been slightly modified for this (for instance: the DisposeTimeBase call shouldn't be done in the __del__ routine, the timebase might belong to someone else).
* Re-generated from new (3.1) universal headersJack Jansen1998-04-211-1/+7
|
* Enabled resID input/output parameter to NewMovieFromFile. This changesJack Jansen1997-04-091-0/+2
| | | | | the Python interface, unfortunately. Added a few calls that were blacklisted for no apparent reason.
* - Changed GestaltEqu.h to Gestalt.hJack Jansen1997-02-241-0/+1
| | | | | | | | - Changed FragLoader.h to CodeFragments.h - Removed Desk.h - Regenerated bgen modules from new universal headers - Changed some of the s# in PyArg_ParseTuple to m# (unfortunately: this should have been a different commit)
* It now actually works. Also, MovieInWindow and VerySimplePlayerJack Jansen1995-12-091-5/+46
| | | | example programs translated to python and added.
* still untested (but it compiles)Jack Jansen1995-11-301-12/+116
|
* QuickTime support (not yet functional)Jack Jansen1995-11-301-0/+79