Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Methods {Get,Set}ControlData that know about data types passed for the various | Jack Jansen | 1999-12-13 | 1 | -0/+32 |
| | | | | | 4-char codes. The table which maps codes to datatypes is still pretty empty, I'll fill it as I need entries (or maybe someone wants to spend a nice day filling it?). | ||||
* | Fixed the password dialog to use a password control. | Jack Jansen | 1999-12-13 | 1 | -0/+0 |
| | | | | Aligned all sizes and such the HIG standards (I think). | ||||
* | Updated Message, question, YNC and progress dialogs for Appearance. Password | Jack Jansen | 1999-12-12 | 2 | -47/+33 |
| | | | | | remains to be done, and maybe we should convert everything to movablemodal too and make things like question look nicer. | ||||
* | In places where a ResObj is expected for PyArg_Parse and the object passed ↵ | Jack Jansen | 1999-12-12 | 2 | -10/+53 |
| | | | | | | in isn't but it does have an as_Resource method use that. This makes life a lot easier for appearance portability (and was needed anyway). | ||||
* | Regenerated toolbox modules with CW Pro 5.2, which has MacOS 8.6 and ↵ | Jack Jansen | 1999-12-12 | 31 | -1/+144 |
| | | | | | | Appearance 1.1 support, and added workaround for non-existing calls for 68K. Static 68K Python still has a tk problem. | ||||
* | Regenerated with CW Pro 5.2, which has MacOS 8.6 and Appearance 1.1 support. | Jack Jansen | 1999-12-12 | 47 | -498/+4048 |
| | |||||
* | Dummy functions which return unimpErr for lots of toolbox calls that are ↵ | Jack Jansen | 1999-12-12 | 1 | -0/+290 |
| | | | | | | unavailable for 68K. This way we don't have to disable thm in bgen, so we can still use them on PPC. | ||||
* | Oops, PLstring funcs should be "pascal". Funny this never caused problems ↵ | Jack Jansen | 1999-12-12 | 1 | -3/+9 |
| | | | | before... | ||||
* | New appearance mgr support. This appears (no pun intended) to have some ↵ | Jack Jansen | 1999-12-10 | 3 | -1/+631 |
| | | | | problems that I'll fix tonight, so don't check it out. | ||||
* | Changed appearance-dialogs to new WDEF values. Also undid silly change of | Jack Jansen | 1999-12-09 | 1 | -0/+0 |
| | | | | button types in those dialogs. | ||||
* | Regenerated, and manually massaged (sigh): there can now be comments after ↵ | Jack Jansen | 1999-12-09 | 1 | -3/+45 |
| | | | | enum defs, and bgen doesn't understand this yet. | ||||
* | Fixed a linebreak I forgot, added docstrings, (temporarily) blacklisted a ↵ | Jack Jansen | 1999-12-09 | 3 | -17/+147 |
| | | | | few routines that seem to be missing in my CW Pro 5.1. | ||||
* | Added USE_APPEARANCE flag. | Jack Jansen | 1999-12-09 | 3 | -0/+3 |
| | |||||
* | Changes by Corran Webster to support {Get,Set}ControlData and | Jack Jansen | 1999-12-09 | 2 | -12/+132 |
| | | | | HandleControlClick. Untested. | ||||
* | Minimal test of Dlg.SetControlData by Corran Webster: draw a default | Jack Jansen | 1999-12-09 | 1 | -0/+13 |
| | | | | ring around a button. Mainly here so I can transfer it home:-) | ||||
* | First bits and pieces of appearance support: an init routine, a global flag ↵ | Jack Jansen | 1999-12-07 | 6 | -13/+45 |
| | | | | | | PyMac_AppearanceCompliant (exported thru MacOS). If USE_APPEARANCE is off the code is disabled (but the variables are still there, set to 0). | ||||
* | Set the finder "is shared" bit, by request of Joe Strout. It seems this ↵ | Jack Jansen | 1999-12-03 | 1 | -1/+1 |
| | | | | | | allows multiple simultaneous copies to be run from a server, and Applets shouldn't write their datafork so it appears safe. | ||||
* | Allow for 12 arguments max, in stead of 8. Untested. | Jack Jansen | 1999-12-03 | 1 | -6/+9 |
| | |||||
* | Default schedparams set to (0,0): no event-intervention by Python mainloop. This | Jack Jansen | 1999-12-03 | 1 | -2/+2 |
| | | | | | was always meant to be the default, and the new example-2 was pretty critical of this. | ||||
* | Standalone.html is long obsolete. Added description of BuildApplication | Jack Jansen | 1999-12-03 | 3 | -89/+59 |
| | | | | process to freezing.html. | ||||
* | New examples by Tony Ingraldi, using dns-lookup in stead of the funny interslip | Jack Jansen | 1999-12-03 | 12 | -333/+241 |
| | | | | module. | ||||
* | Give a warning if system-wide sys.argv processing is off (because then we | Jack Jansen | 1999-12-02 | 1 | -1/+4 |
| | | | | | may have missed an applet being dropped on us). This may fix the obscure bug Tony Ingraldi was experiencing. | ||||
* | Added HAVE_LIMITS_H, MAVE_MEMMOVE, HAVE_STRERROR, HAVE_LOCALE_H | Jack Jansen | 1999-11-05 | 1 | -1/+5 |
| | | | | | since we have these in the current CW release (and probably already had them quite some time, but never added the defines). | ||||
* | Changes to ProgressBar: | Jack Jansen | 1999-11-05 | 1 | -4/+10 |
| | | | | | - Don't crash if max=0 - set() now has an optional max parameter, to set the maximum value. | ||||
* | Typo fixed in docstring; removed unneccesary import. (jvr) | Just van Rossum | 1999-11-04 | 1 | -2/+1 |
| | |||||
* | Adapted to new macmudulefinder.process() API. (jvr) | Just van Rossum | 1999-11-04 | 2 | -8/+18 |
| | |||||
* | - changed the API of process() so it will return a list of missing modules ↵ | Just van Rossum | 1999-11-04 | 1 | -6/+8 |
| | | | | | | | instead of raising an exception. - minor cleanups (jvr) | ||||
* | - windowbounds() now works with multiple screens (window position prefs!) | Just van Rossum | 1999-10-30 | 1 | -5/+12 |
| | | | | | - Minor tab behavior tweak -- jvr | ||||
* | Very minor little things... -- jvr | Just van Rossum | 1999-10-30 | 1 | -4/+13 |
| | |||||
* | New __version__ number (1.0!) -- jvr | Just van Rossum | 1999-10-30 | 2 | -1/+1 |
| | |||||
* | Minor indentation cleanup -- jvr | Just van Rossum | 1999-10-30 | 1 | -1/+1 |
| | |||||
* | String values will now always be shown with quotes, so one can see the ↵ | Just van Rossum | 1999-10-30 | 1 | -3/+1 |
| | | | | difference between the value 2 and the value '2'. -- jvr | ||||
* | MrC also needs BAD_STATIC_FORWARD define. | Jack Jansen | 1999-10-26 | 1 | -0/+3 |
| | |||||
* | AskString always set the dialog id to 257. Fixed. | Jack Jansen | 1999-10-05 | 1 | -1/+0 |
| | |||||
* | Optionally bracket all external declarations of init functions with "ifndef"s. | Jack Jansen | 1999-10-01 | 2 | -4/+4 |
| | |||||
* | vec_longjmp added to list of "forbidden" functions in .exp file. | Jack Jansen | 1999-09-30 | 1 | -1/+1 |
| | |||||
* | CW Pro 5 projects. | Jack Jansen | 1999-09-30 | 33 | -49/+68 |
| | |||||
* | Added module "ce" to list of modules known not to exist on the mac. | Jack Jansen | 1999-09-30 | 1 | -1/+1 |
| | |||||
* | Bigger buffer size for C profiler (if profiling is enabled). | Jack Jansen | 1999-09-30 | 1 | -1/+1 |
| | |||||
* | Optimization: don't try to get a tabsize resource if we know the file | Jack Jansen | 1999-09-30 | 1 | -0/+3 |
| | | | | doesn't have one (stdin and such), OpenRF appears to be an expensive call. | ||||
* | Regenerated, no significant diferences. | Jack Jansen | 1999-09-30 | 1 | -0/+12 |
| | |||||
* | Make macglue.h C++ compatible. | Jack Jansen | 1999-09-30 | 1 | -0/+7 |
| | |||||
* | Distribution files for 1.5.1c1. | Jack Jansen | 1999-09-30 | 5 | -68/+114 |
| | |||||
* | 1.5.2c1 version. | Jack Jansen | 1999-09-30 | 1 | -1/+1 |
| | |||||
* | Initial checkin of IDE scripts. (jvr) | Just van Rossum | 1999-09-26 | 19 | -0/+334 |
| | |||||
* | Added support for global default font settings. (jvr) | Just van Rossum | 1999-09-26 | 2 | -23/+33 |
| | |||||
* | 1) added "typingcasesens" keyword arg to constructor, and support for case ↵ | Just van Rossum | 1999-09-26 | 1 | -8/+20 |
| | | | | | | | sensitive typing in lists. 2) minor cleanups (jvr) | ||||
* | added do_setwindowfont() menu callback: brings up a font selection dialog. (jvr) | Just van Rossum | 1999-09-26 | 1 | -1/+9 |
| | |||||
* | added getdefaultfont() function. Returns default font settings. (jvr) | Just van Rossum | 1999-09-26 | 1 | -0/+6 |
| | |||||
* | 1 - added "set default window font" menu | Just van Rossum | 1999-09-26 | 1 | -2/+7 |
| | | | | | 2 - updated scripts folder location (jvr) |