summaryrefslogtreecommitdiffstats
path: root/Mac/Modules/qd/Qdmodule.c
Commit message (Collapse)AuthorAgeFilesLines
* Renamed.Jack Jansen2001-08-231-5687/+0
|
* ANSIfied function headers to shut up compiler warnings on OSX/Mach-o.Jack Jansen2001-06-201-1/+1
|
* Fixed an error in the signature of the QdRGB converter routines.Jack Jansen2001-06-131-2/+2
|
* Lots more Carbon/Carbon.h includes, new UPP routine names, function ↵Jack Jansen2001-05-221-881/+305
| | | | 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/+34
| | | | | | 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.
* QDFlushPortBuffer() has an optional region argument.Jack Jansen2001-02-061-1/+1
|
* Accept Dialogs and Windows where Grafports are expected (such as in SetPort) ↵Jack Jansen2001-02-021-2/+8
| | | | and do a MacOSX compatible cast. Bit of a hack, but good enough for now.
* New internal function BMObj_NewCopied() which copies the BitMap. Used to get ↵Jack Jansen2001-01-301-5/+23
| | | | the screenBits bitmap.
* Accessor functions for regions and such expect an existing region as ↵Jack Jansen2001-01-291-7/+23
| | | | | | parameter. Fixed for grafport attribute access. Got GetPortBitMapForCopyBits() and port.portBits to work.
* Blacklisted (for the time being) the functions that have a component ↵Jack Jansen2001-01-241-100/+0
| | | | argument. Don't want to drag the Cm module into the core set too.
* Implemented direct attribute access for Carbon builds and accessor functions ↵Jack Jansen2001-01-241-4/+1323
| | | | for non-carbon builds.
* Test for TARGET_API_MAC_CARBON with #if in stead of #ifdef.Jack Jansen2000-07-141-2/+2
|
* pymactoolbox.h contains protoypes for all externally visible toolbox moduleJack Jansen2000-07-141-37/+1
| | | | | functions. Include it in stead of duplicating the declarations everywhere. Also cleaned up toolbox module exports, and got rid of resNotFound error.
* Under carbon use the GetQDGlobalxxx methods to implement Qd.qd.member access.Jack Jansen2000-06-201-0/+42
|
* Made the core toolbox modules carbon-compatible using the new greylist ↵Jack Jansen2000-06-021-0/+4
| | | | | | feature of bgen: non-carbon methods are still included in non-carbon MacPython. The issue of backward compatibility of Python code is still open. Macmodule and macosmodule have also been carbonified. Some functionality is still missing there.
* Added methods getdata() and putdata() to obtain the data in a bitmap.Jack Jansen2000-03-031-0/+38
|
* Regenerated with CW Pro 5.2, which has MacOS 8.6 and Appearance 1.1 support.Jack Jansen1999-12-121-0/+36
|
* Argument type for SetPort was wrong (WindowPtr in stead of GrafPtr).Jack Jansen1998-04-271-3/+3
|
* Grmpf, a lot more routines have gotten a "Mac" prefix for theirJack Jansen1998-04-241-6/+529
| | | | | | declaration, probably so the universal headers are useable on windows/unix too. Have to think of a more definite workaround later, for now we manually declare the old names in the *edit.py files.
* SetPort was missing, and the defs file needs the FOUR_CHAR_CODE define.Jack Jansen1998-04-231-0/+34
|
* Re-generated from new (3.1) universal headersJack Jansen1998-04-211-108/+108
|
* Regenerated because of confusion with Style/StyleParameter andJack Jansen1998-02-251-4/+4
| | | | Char/CharParameter
* Regenerated from Universal Headers 3.0.1. Some new calls areJack Jansen1998-02-201-8/+44
| | | | | | 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.
* Export type objects to PythonJack Jansen1997-09-201-0/+12
|
* Added support for GDHandle, CTabHandle, ITabHandle and CCrsrHandle: noJack Jansen1997-08-151-0/+339
| | | | reason they were blacklisted, we can handle them as generic Handles.
* - Changed GestaltEqu.h to Gestalt.hJack Jansen1997-02-241-1/+0
| | | | | | | | - 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)
* Added _id attribute to GrafPort objects (real id of grafport, numeric)Jack Jansen1996-05-081-3/+3
|
* Fixed access to Quickdraw globals. Unfortunately, they now have to beJack Jansen1996-01-291-20/+79
| | | | accessed as Qd.qd.xxxx
* Added rgbFgColor and a few other members of CGrafPortJack Jansen1996-01-151-6/+16
|
* - Added FontInfo supportJack Jansen1996-01-111-13/+91
| | | | - Added (read-)access to members of [C]GrafPort object
* Fixed GetPen and SetPt argumentsJack Jansen1996-01-081-6/+4
|
* Added support for PenState and Patterns (and the accompanying qdJack Jansen1996-01-061-0/+302
| | | | globals)
* Added support for cursors, and a way to get at the qd global 'arrow'Jack Jansen1996-01-051-0/+37
|
* - Added color window/pixmap supportJack Jansen1995-12-121-6/+45
| | | | | - Added support for obtaining pixmap data - Added OptResObj_* routines for optional handles
* Added support for RGB objects (tuples in python)Jack Jansen1995-12-091-0/+261
|
* BitMap object support (only lightly tested)Jack Jansen1995-11-161-0/+294
|
* Added (minimal) support for a GrafPort typeJack Jansen1995-11-151-57/+93
|
* - Fixed handling of InsetRect, OffsetRect, MapRectJack Jansen1995-11-141-6/+123
| | | | | - Added support for PatHandle, CursHandle - Regenerated from new universal headers.
* Generated anewJack Jansen1995-08-171-0/+1
|
* Trying again to check it in. Changes to:Jack Jansen1995-06-061-279/+245
| | | | | | - Use Universal Headers as input - Change addpack calls to not depend on Guido's disklayout - Checkge testprograms to use new names for some functions
* first cut at the whole quickdraw.h header file ...Guido van Rossum1995-03-191-26/+2603
|
* Committed a more or less working version.Guido van Rossum1995-01-301-0/+168