summaryrefslogtreecommitdiffstats
path: root/Lib/plat-mac/EasyDialogs.py
Commit message (Collapse)AuthorAgeFilesLines
* changed 8-space indentation to 4Just van Rossum2003-06-211-711/+711
|
* 'Progress' doesn't exists, causing 'from EasyDialogs import *' to failJust van Rossum2003-05-201-1/+1
|
* SF patch #701494: more apply removalsRaymond Hettinger2003-04-061-741/+741
|
* Allow floating point values in ProgressBar.Jack Jansen2003-03-241-0/+2
|
* Call AEInteractWithUser() before bringing up any of the dialogs (with theJack Jansen2003-03-031-1/+13
| | | | | | exception of the ProgressBar, which I think is okay to show in the background). This is a prerequisitite for the fix of #684975.
* Getting rid of macfs.Jack Jansen2003-02-211-3/+3
|
* Made AskFile* dialogs movable-modal by default, by providing a dummyJack Jansen2003-02-071-10/+26
| | | | | | | eventProc (which simply drops all events on the floor). Also added a method SetDefaultEventProc through which frameworks can set a global event handler (which can still be overridden on a per-call basis with the eventProc argument).
* FSRef and EasyDialogs pathname support was pretty much broken in ↵Jack Jansen2003-01-261-12/+16
| | | | MacPython-OS9. Fixed.
* Tuples and lists don't have a copy() method (yet?).Jack Jansen2003-01-211-1/+1
|
* Spell out the arguments to AskFileForOpen and friends, so help() gives usefulJack Jansen2003-01-211-45/+100
| | | | help.
* Use new file dialogs in GetArgv()Jack Jansen2003-01-211-11/+10
|
* Fixed the first two bugs in the new file dialogs (found by Just):Jack Jansen2003-01-171-1/+2
| | | | | - AskFileForSave didn't work for string return values - filterProc didn't work.
* Added methods AskFileForOpen(), AskFileForSave() and AskFolder(). TheseJack Jansen2003-01-171-2/+154
| | | | | | | are going to replace StandardGetFile() and friends. Main differences are that these allow you to ask for specific datatypes to be returned (FSSpec, FSRef, string, unicode or subtypes thereof) and that they provide access to underlying features of Navigation Services through keyword arguments.
* Moved most of Mac/Lib hierarchy to Lib/plat-mac: it can be used bothJack Jansen2002-12-301-0/+598
in MacPython-OS9 and MacPython-OSX (or the equivalent unix Python on Mac OS X). The only items remaining in Mac/Lib are modules that are meaningful only for MacPython-OS9 (CFM stuff, MacPython preferences in resources, etc).