diff options
author | das <das> | 2006-04-11 10:23:19 (GMT) |
---|---|---|
committer | das <das> | 2006-04-11 10:23:19 (GMT) |
commit | fe655994fef60e520c091e7d5d7d705a62eac6d4 (patch) | |
tree | 634b2fd8f027c0c5888deb8685494f36b0ea51fe | |
parent | 0b2e5414581ab039ffccbce58cff46fa8946291d (diff) | |
download | tk-fe655994fef60e520c091e7d5d7d705a62eac6d4.zip tk-fe655994fef60e520c091e7d5d7d705a62eac6d4.tar.gz tk-fe655994fef60e520c091e7d5d7d705a62eac6d4.tar.bz2 |
* changes: added latest aqua bug fixes.
* macosx/tkMacOSXCarbonEvents.c: handle kEventCommandUpdateStatus
* macosx/tkMacOSXEvent.c: carbon event to dynamically enable
the 'Preferences' app menu item when proc [::tk::mac::ShowPreferences]
is defined. [Bug 700316]
* macosx/tkMacOSXHLEvents.c: call ::tk::mac::* procs for all
* macosx/tkMacOSXWindowEvent.c: registered appleevents [FR 1105284],
implement print applevent handling, style/whitespace cleanup.
* macosx/tkMacOSXDraw.c (TkMacOSXInitCGDrawing): prevent multiple init.
* macosx/tkMacOSXFont.c: remove #ifdef'd text measuring codepaths now
* macosx/tkMacOSXInit.c: known to be incorrect, cleanup obsolete text
* macosx/README: antialiasing control code, document ATSUI
text antialiasing changes.
-rw-r--r-- | ChangeLog | 18 | ||||
-rw-r--r-- | changes | 17 |
2 files changed, 34 insertions, 1 deletions
@@ -1,5 +1,23 @@ 2006-04-11 Daniel Steffen <das@users.sourceforge.net> + * changes: added latest aqua bug fixes. + + * macosx/tkMacOSXCarbonEvents.c: handle kEventCommandUpdateStatus + * macosx/tkMacOSXEvent.c: carbon event to dynamically enable + the 'Preferences' app menu item when proc [::tk::mac::ShowPreferences] + is defined. [Bug 700316] + + * macosx/tkMacOSXHLEvents.c: call ::tk::mac::* procs for all + * macosx/tkMacOSXWindowEvent.c: registered appleevents [FR 1105284], + implement print applevent handling, style/whitespace cleanup. + + * macosx/tkMacOSXDraw.c (TkMacOSXInitCGDrawing): prevent multiple init. + + * macosx/tkMacOSXFont.c: remove #ifdef'd text measuring codepaths now + * macosx/tkMacOSXInit.c: known to be incorrect, cleanup obsolete text + * macosx/README: antialiasing control code, document ATSUI + text antialiasing changes. + * macosx/tkMacOSXInt.h: Implemented 'zoomed' window state * macosx/tkMacOSXWindowEvent.c: handling for TkAqua, via titlebar * macosx/tkMacOSXWm.c: widget clicks as well as [wm state]. @@ -2,7 +2,7 @@ This file summarizes all changes made to Tk since version 1.0 was released on March 13, 1991. Changes that aren't backward compatible are marked specially. -RCS: @(#) $Id: changes,v 1.94 2006/03/29 16:37:28 dgp Exp $ +RCS: @(#) $Id: changes,v 1.95 2006/04/11 10:23:20 das Exp $ 3/16/91 (bug fix) Modified tkWindow.c to remove Tk's Tcl commands from the interpreter when the main window is deleted (otherwise there will @@ -6156,6 +6156,21 @@ Max OSX universal binaries support (steffen) 2006-03-29 (platform support)[917322] tolerate X servers that do not accept the color names "Black" and "White" (porter) +2006-04-06 (bug fix)[1455241] Aqua: [wm attributes -titlepath] fix (steffen) + +2006-04-07 (bug fix)[934524] Aqua: background window dragging/growing (steffen) + +2006-04-09 (bug fix)[1467004] Aqua: [wm resizable] fix (steffen) + +2006-04-09 (bug fix)[1450800] Aqua: allow empty toplevel names (steffen) + +2006-04-11 (bug fix)[1073456] Aqua: implement toplevel zoom (steffen) + +2006-04-11 (bug fix)[700316] Aqua: enable 'Preferences' app menu item (steffen) + +2006-04-11 (enhancement)[1105284] Aqua: call ::tk::mac::* procs for all +registered applevents (steffen) + Documentation improvements [1224983,1247835,1151523,1357575,1083838] ---- Released 8.5a4, March 30, 2006 --- See ChangeLog for details --- |