summaryrefslogtreecommitdiffstats
path: root/Mac
Commit message (Collapse)AuthorAgeFilesLines
* Used an adapted MethodGenerator to generate methods too for functions that ↵Jack Jansen2001-07-173-326/+300
| | | | have the object as the second arg after a first CFAllocatorRef arg (which we pass as NULL always anyway).
* Typo in the classic mlte build line.Jack Jansen2001-07-161-1/+1
|
* The TNXDraw gworld argument is optional.Jack Jansen2001-07-163-2/+35
|
* It now works under Carbon. Under Classic the scrollbars don't showJack Jansen2001-07-161-104/+15
| | | | up, for reasons unknown.
* Minimal text editor using MLTE (code based on wed.py, the waste demo).Jack Jansen2001-07-141-0/+464
| | | | | It's sort-of starting to work, but there's still problems with redraws and with resizing the window.
* Various small fixes. The demo now starts to limp along.Jack Jansen2001-07-143-2/+36
|
* The constants for MLTE.Jack Jansen2001-07-141-0/+164
|
* Fixed the mis-guessed parameters and added support for a few optional ↵Jack Jansen2001-07-133-20/+143
| | | | parameter types. There's a good chance that this is usable now (but there's no test code yet).
* Added Mlte module (which, to my surprise, is available for classic ppc as well).Jack Jansen2001-07-132-1/+5
|
* First stab at an interface to the Multi Language Text Editor. It compiles ↵Jack Jansen2001-07-133-0/+1528
| | | | and imports, but that's about all. Apple didn't put const in front of their input-only by-reference args, so that needs fixing first.
* Fixed another case of the PyArg_Parse 'h' semantic change problem, sigh...Jack Jansen2001-07-121-1/+1
|
* - fixed some re usage, partly so it'll still work when re uses pre insteadJust van Rossum2001-07-104-43/+38
| | | | | of sre, and partly fixing re -> regex porting oversights - fixed PyFontify.py so it actually *works* again..
* Implemented minimal FSRef support, plus conversion between FSRefs, FSSpecs ↵Jack Jansen2001-07-083-74/+282
| | | | | | | | and pathnames where applicable. PyMac_GetFSSpec and PyMac_BuildFSSpec have moved to macfsmodule from macglue. These mods are untested on OSX.
* - minor cleanup, removed bogus commentsJust van Rossum2001-07-051-9/+13
| | | | | - make method reload handle __private attrs correctly - fixed whole word search
* don't crash when encountering bad marshal dataJust van Rossum2001-07-051-1/+2
|
* Do conversion of CFStrings to/from unicode.unknown2001-07-042-43/+255
|
* Set the default 8-bit encoding based on the system script and language.unknown2001-07-041-0/+2
|
* Don't promise mac-japanese encoding as we don't have a codec for it.unknown2001-07-041-1/+4
| | | | Return a reasonable name for the general macos exception (MacOS.Error).
* Added the new unicode defines. Not really tested yet, but Python compiles ↵Jack Jansen2001-07-021-0/+9
| | | | again at least.
* - Use weaklink generators so we can support OSX-only calls without crashing ↵Jack Jansen2001-07-012-5/+41
| | | | | | on OS9. - Convert CFString to/from Python strings. Currently always MacRoman, to be fixed later (as is unicode support). Python->CFString conversion is automatic.
* Added CFURL support, and got base chaining to really work.Jack Jansen2001-06-283-46/+547
|
* CFArray, CFData and CFDictonary are now covered, but mainly opaque.Jack Jansen2001-06-273-9/+2372
| | | | CFStrings are in better shape, but Unicode support and automatic conversion to/from Python strings remains to be done.
* Added CF module build and project generation (carbon only).Jack Jansen2001-06-262-0/+5
|
* First small step towards bgen-generated CoreFoundation. there is hardly any ↵Jack Jansen2001-06-263-0/+666
| | | | real functionality yet, but method chains seem to work, and so do Retain/Release semantics.
* Added a note about recompiling OSAm before distributing.Jack Jansen2001-06-261-0/+1
|
* Fixed typo in doc string.Just van Rossum2001-06-261-1/+1
|
* Fixed bug that prevented shared libs that are submodules of aJust van Rossum2001-06-261-1/+1
| | | | package to be loaded from a PYD resource.
* WaitNextEvent short vs. unsigned short fix.Jack Jansen2001-06-251-1/+1
|
* Changed the order of the buttons for EasyDialogs.AskYesNoCancel() from the ↵Just van Rossum2001-06-221-0/+0
| | | | unusual [cancel, no, yes] to the more standard [no, cancel, yes].
* don't blow up when the charno SyntaxError value is NoneJust van Rossum2001-06-211-1/+3
|
* repaired expandselection and uncomment breakageJust van Rossum2001-06-211-4/+5
|
* Added support for the gc module (!).Just van Rossum2001-06-211-0/+6
|
* Got rid of a silly #if.Jack Jansen2001-06-201-1/+1
|
* Don't use extern when we mean staticforward (OSX gcc is picky about it).Jack Jansen2001-06-203-24/+5
| | | | Blacklist SendControlMessage: it's signature has changed between Universal Headers 3.3 and 3.4.
* {Is,Set}AntiAliasedTextEnabled don't exist on MacOS 8.5.5 and earlier. For ↵Jack Jansen2001-06-202-36/+5
| | | | now: cop out and blacklist them.
* ANSIfied function headers to shut up compiler warnings on OSX/Mach-o.Jack Jansen2001-06-204-4/+4
|
* Added a const to shut up a compiler warning.Jack Jansen2001-06-202-2/+2
|
* Reversed the order of the checks for None or a Dialog where a Window is ↵Jack Jansen2001-06-202-22/+8
| | | | expected so it doesn't crash under OSX/Mach-o.
* Removed some unused routines under Carbon. They caused compile errors with UH34.Jack Jansen2001-06-201-0/+3
|
* Adapted to Universal Headers 3.4: new refcontype and use UPP names in stead ↵Jack Jansen2001-06-202-3/+18
| | | | of Proc names for callback creation.
* Adapted for Universal Headers 3.4: refcon type has changed (sigh) and use ↵Jack Jansen2001-06-201-6/+12
| | | | modern (UPP in stead of Proc) names for callback object creation.
* Override bdb's canonic() method with a no-op: with bdb's version we couldn't ↵Just van Rossum2001-06-201-0/+5
| | | | edit breakpoints in file-less ("Untitled" script windows). Besides, we did't need it as we always use full path names anyway.
* made 7-bit-clean.Just van Rossum2001-06-191-2/+2
|
* Some long overdue maintainance. Made all IDE sources 7-bit-clean, to avoid ↵Just van Rossum2001-06-1914-84/+86
| | | | any further encoding conversion troubles.
* Got rid of mactoolboxglue.cJack Jansen2001-06-131-0/+0
|
* Fixed an error in the signature of the QdRGB converter routines.Jack Jansen2001-06-132-4/+4
|
* When reading from stdin (with the dialog box) use any partial line onJack Jansen2001-05-261-1/+8
| | | | stdout as the prompt. This makes raw_input() and print "xxx", ; sys.stdin.readline() work a bit more palatable.
* One more macroman<->latin1 conversion victim.Jack Jansen2001-05-231-19/+19
|
* Updated to reflect the current state of config.h.in.Jack Jansen2001-05-231-7/+10
|
* removed a routine that has moved to macglue.cJack Jansen2001-05-221-21/+0
|