- a3a5050 Silence DeprecationWarnings from uses of has_key and <> in plat-mac. by Mark Dickinson · 15 years ago
- a6864e0 fix test_py3kwarns by Benjamin Peterson · 17 years ago
- 2368193 Add warnings to and deprecated all those Mac modules by Benjamin Peterson · 17 years ago
- 5b63acd #2503 make singletons compared with "is" not == or != by Benjamin Peterson · 17 years ago
- 182b5ac Whitespace normalization, via reindent.py. by Tim Peters · 21 years ago
- 70a6b49 Replace backticks with repr() or "%r" by Walter Dörwald · 21 years ago
- 35b50e2 changed 8-space indentation to 4 by Just van Rossum · 22 years ago
- ff41c48 SF patch #701494: more apply removals by Raymond Hettinger · 22 years ago
- f07518a support unicode in menu items by Just van Rossum · 22 years ago
- 7460965 quashed another case of the 32-bit warning. by Jack Jansen · 22 years ago
- 60087fb Moved most of Mac/Lib hierarchy to Lib/plat-mac: it can be used both by Jack Jansen · 22 years ago[Renamed from Mac/Lib/FrameWork.py]
- 362c7cd Lots of minor tweaks for the pep252 checkins, mainly because Qd by Jack Jansen · 22 years ago
- 2575022 Reverted previous change, I was confused. by Jack Jansen · 23 years ago
- bc60354 Import Carbon.AH, not Carbon.Help by Jack Jansen · 23 years ago
- 4e39949 Initialize self._helpmenu earlier, so we can use gethelpmenu() while by Jack Jansen · 23 years ago
- f21b706 Added support for the help menu. Application.gethelpmenu() will return it. by Jack Jansen · 23 years ago
- 4014401 Added minimal support for floating windows. by Just van Rossum · 23 years ago
- a4adacb Changes by Donovan Preston (and a few minor ones by me) to make IDE run under by Jack Jansen · 23 years ago
- d9c9b57 Don't barf when an AppleEvent was not handled. It's ok to ignore. by Just van Rossum · 23 years ago
- 52306a7 The new menu initialization code would also add the SIOUX menus if a (frozen) Python program had installed its own menubar previously. We now guard against this, with a bit of a hack: FrameWork uses the same Menu ID as Sioux, and the init code checks that the text in the menu is "About SIOUX" before replacing it. by Jack Jansen · 23 years ago
- 5a6fdcd Import the MacOS toolbox modules from the Carbon package. by Jack Jansen · 24 years ago
- cbed91b Merging appropriate 2.1.1 fixes back into the main trunk. by Jack Jansen · 24 years ago
- 6b498de Handle the apple menu differently under Carbon. by Jack Jansen · 24 years ago
- e5c9474 Default waittime in the eventloop is now None. At low level it will then be set to GetCaretTime(). by Jack Jansen · 24 years ago
- ed24cd2 DialogWindows now have a self.dlg in addition to self.wid. by Jack Jansen · 24 years ago
- 01a2d9e Use FSpCreateResFile() in stead of CreateResFile(). by Jack Jansen · 24 years ago
- afd0aa6 Replace {Enable,Disable,Check}Item with their carbon-compatible equivalents {Enable,Disable,Check}MenuItem. by Jack Jansen · 24 years ago
- 7302340 Sigh... First test before committing. InvalWindowRect and friends are window object methods. Fixed. by Jack Jansen · 24 years ago
- d829e9e Replaced InvalRect and friends with the Carbon-compliant InvalWindowRect. by Jack Jansen · 24 years ago
- fd9925a Use MacOS.OutputSeen() on menuselections. Removed KeepConsole code again. This solution is better: it treats a menu selection in the same way as input to stdin (i.e. as an ack of the output that went before). by Jack Jansen · 25 years ago
- f2bd9ee Use MacOS.KeepConsole to always exit if the program calls FrameWork._quit(). Overridable with a class variable keepconsole. by Jack Jansen · 25 years ago
- 34d11f0 Fixed multi-arg appends. by Jack Jansen · 25 years ago
- c15e43a Fixed menu glyph stuff. Use MenuEvent in stead of MenuKey. by Jack Jansen · 25 years ago
- 1a5eb04 Fixed buglet in Application.do_suspendresume(), it took the wrong flag to determine suspend/resume -- jvr by Just van Rossum · 25 years ago
- 13681b7 If a menu shortcut is a tuple in stead of a char it is a tuple (modifierkeys, char [, glyph]). by Jack Jansen · 25 years ago
- 0c3e4b6 Default schedparams set to (0,0): no event-intervention by Python mainloop. This by Jack Jansen · 25 years ago
- 5763e07 cleaned up ugly hack related to activate events and suspend/resume -- jvr by Just van Rossum · 26 years ago
- 341d1fe For submenus remember the parent and parent index, so we can grey out our by Jack Jansen · 27 years ago
- 5c44027 Added a delete() method to menu entries. Only the last entry of a menu by Jack Jansen · 27 years ago
- 41e825a For ControlWindow there is a new method do_rawcontrolhit(), which gets by Jack Jansen · 27 years ago
- bb6193c Added a PopupMenu class. by Jack Jansen · 27 years ago
- 7b56aad Break circular reference on menus upon cleanup by Jack Jansen · 27 years ago
- d080edd Added dopendingevents call by Jack Jansen · 28 years ago
- 3368cb7 Replaced MacOS.EnableAppSwitch with MacOS.SchedParams by Jack Jansen · 28 years ago
- c75e1d0 Added Application.cleanup method which asks all windows to close by Jack Jansen · 28 years ago
- b1667ef Menu callbacks can be strings, in which case they will be looked up in by Jack Jansen · 29 years ago
- 647535d - Use a flag (self.quitting) as preferred method of exiting mainloop by Jack Jansen · 29 years ago
- 4634130 Added setwatchcursor() and setarrowcursor() functions by Jack Jansen · 29 years ago
- ded835c Mods by Just: by Jack Jansen · 29 years ago
- 0f6dc5b Added MenuItem methods setstyle(), seticon(), setmark() by Jack Jansen · 29 years ago
- c4eec9f - Confine window moves to screen boundaries by Jack Jansen · 29 years ago
- 7bfc875 Fixed ScrolledWindow to disable scrollbars if everything is visible. by Jack Jansen · 29 years ago
- e353215 Added ScrolledWindow (a window with one or two scrollbars) by Jack Jansen · 29 years ago
- cef2c59 Added enable(onoff) method to menus and menu items by Jack Jansen · 29 years ago
- ef51d13 Removed addpack calls by Jack Jansen · 29 years ago
- db9ff36 Added checkmenu() method (to checkmark an entry) and delete() method by Jack Jansen · 29 years ago
- c8a9949 Various fixes/enhancements, thanks to Ivan and Just: by Jack Jansen · 29 years ago
- 6f47bf4 Minor bugfix in keyboard input handling by Jack Jansen · 29 years ago
- da38f2d Added 2 missing SetPort calls by Jack Jansen · 30 years ago
- 3818678 Added idle() method, called when no events are available. by Jack Jansen · 30 years ago
- 13dc4f7 Fixed dialog-window event handling by Jack Jansen · 30 years ago
- 7e0da90 Made separate window class (and subclasses for special windows like by Jack Jansen · 30 years ago
- 7a58336 Various fixes: missing imports, missing calls to by Jack Jansen · 30 years ago
- e4b4038 Various toolbox routines have gotten new names. by Jack Jansen · 30 years ago
- 8f4b6ad two new modules for the Mac toolbox by Guido van Rossum · 30 years ago