1. ff41c48 SF patch #701494: more apply removals by Raymond Hettinger · 21 years ago
  2. f07518a support unicode in menu items by Just van Rossum · 22 years ago
  3. 7460965 quashed another case of the 32-bit warning. by Jack Jansen · 22 years ago
  4. 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]
  5. 362c7cd Lots of minor tweaks for the pep252 checkins, mainly because Qd by Jack Jansen · 22 years ago
  6. 2575022 Reverted previous change, I was confused. by Jack Jansen · 22 years ago
  7. bc60354 Import Carbon.AH, not Carbon.Help by Jack Jansen · 22 years ago
  8. 4e39949 Initialize self._helpmenu earlier, so we can use gethelpmenu() while by Jack Jansen · 22 years ago
  9. f21b706 Added support for the help menu. Application.gethelpmenu() will return it. by Jack Jansen · 22 years ago
  10. 4014401 Added minimal support for floating windows. by Just van Rossum · 23 years ago
  11. a4adacb Changes by Donovan Preston (and a few minor ones by me) to make IDE run under by Jack Jansen · 23 years ago
  12. d9c9b57 Don't barf when an AppleEvent was not handled. It's ok to ignore. by Just van Rossum · 23 years ago
  13. 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
  14. 5a6fdcd Import the MacOS toolbox modules from the Carbon package. by Jack Jansen · 23 years ago
  15. cbed91b Merging appropriate 2.1.1 fixes back into the main trunk. by Jack Jansen · 23 years ago
  16. 6b498de Handle the apple menu differently under Carbon. by Jack Jansen · 23 years ago
  17. e5c9474 Default waittime in the eventloop is now None. At low level it will then be set to GetCaretTime(). by Jack Jansen · 23 years ago
  18. ed24cd2 DialogWindows now have a self.dlg in addition to self.wid. by Jack Jansen · 23 years ago
  19. 01a2d9e Use FSpCreateResFile() in stead of CreateResFile(). by Jack Jansen · 24 years ago
  20. afd0aa6 Replace {Enable,Disable,Check}Item with their carbon-compatible equivalents {Enable,Disable,Check}MenuItem. by Jack Jansen · 24 years ago
  21. 7302340 Sigh... First test before committing. InvalWindowRect and friends are window object methods. Fixed. by Jack Jansen · 24 years ago
  22. d829e9e Replaced InvalRect and friends with the Carbon-compliant InvalWindowRect. by Jack Jansen · 24 years ago
  23. 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 · 24 years ago
  24. f2bd9ee Use MacOS.KeepConsole to always exit if the program calls FrameWork._quit(). Overridable with a class variable keepconsole. by Jack Jansen · 24 years ago
  25. 34d11f0 Fixed multi-arg appends. by Jack Jansen · 24 years ago
  26. c15e43a Fixed menu glyph stuff. Use MenuEvent in stead of MenuKey. by Jack Jansen · 25 years ago
  27. 1a5eb04 Fixed buglet in Application.do_suspendresume(), it took the wrong flag to determine suspend/resume -- jvr by Just van Rossum · 25 years ago
  28. 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
  29. 0c3e4b6 Default schedparams set to (0,0): no event-intervention by Python mainloop. This by Jack Jansen · 25 years ago
  30. 5763e07 cleaned up ugly hack related to activate events and suspend/resume -- jvr by Just van Rossum · 26 years ago
  31. 341d1fe For submenus remember the parent and parent index, so we can grey out our by Jack Jansen · 26 years ago
  32. 5c44027 Added a delete() method to menu entries. Only the last entry of a menu by Jack Jansen · 26 years ago
  33. 41e825a For ControlWindow there is a new method do_rawcontrolhit(), which gets by Jack Jansen · 26 years ago
  34. bb6193c Added a PopupMenu class. by Jack Jansen · 26 years ago
  35. 7b56aad Break circular reference on menus upon cleanup by Jack Jansen · 26 years ago
  36. d080edd Added dopendingevents call by Jack Jansen · 27 years ago
  37. 3368cb7 Replaced MacOS.EnableAppSwitch with MacOS.SchedParams by Jack Jansen · 27 years ago
  38. c75e1d0 Added Application.cleanup method which asks all windows to close by Jack Jansen · 28 years ago
  39. b1667ef Menu callbacks can be strings, in which case they will be looked up in by Jack Jansen · 28 years ago
  40. 647535d - Use a flag (self.quitting) as preferred method of exiting mainloop by Jack Jansen · 28 years ago
  41. 4634130 Added setwatchcursor() and setarrowcursor() functions by Jack Jansen · 28 years ago
  42. ded835c Mods by Just: by Jack Jansen · 28 years ago
  43. 0f6dc5b Added MenuItem methods setstyle(), seticon(), setmark() by Jack Jansen · 28 years ago
  44. c4eec9f - Confine window moves to screen boundaries by Jack Jansen · 28 years ago
  45. 7bfc875 Fixed ScrolledWindow to disable scrollbars if everything is visible. by Jack Jansen · 28 years ago
  46. e353215 Added ScrolledWindow (a window with one or two scrollbars) by Jack Jansen · 28 years ago
  47. cef2c59 Added enable(onoff) method to menus and menu items by Jack Jansen · 28 years ago
  48. ef51d13 Removed addpack calls by Jack Jansen · 28 years ago
  49. db9ff36 Added checkmenu() method (to checkmark an entry) and delete() method by Jack Jansen · 28 years ago
  50. c8a9949 Various fixes/enhancements, thanks to Ivan and Just: by Jack Jansen · 29 years ago
  51. 6f47bf4 Minor bugfix in keyboard input handling by Jack Jansen · 29 years ago
  52. da38f2d Added 2 missing SetPort calls by Jack Jansen · 29 years ago
  53. 3818678 Added idle() method, called when no events are available. by Jack Jansen · 29 years ago
  54. 13dc4f7 Fixed dialog-window event handling by Jack Jansen · 29 years ago
  55. 7e0da90 Made separate window class (and subclasses for special windows like by Jack Jansen · 29 years ago
  56. 7a58336 Various fixes: missing imports, missing calls to by Jack Jansen · 29 years ago
  57. e4b4038 Various toolbox routines have gotten new names. by Jack Jansen · 29 years ago
  58. 8f4b6ad two new modules for the Mac toolbox by Guido van Rossum · 29 years ago