summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* * macosx/tkMacOSXWm.c (TkWmMapWindow, InitialWindowBounds): fix use ofdas2006-04-2813-126/+185
| | | | | | | | | | | | | | | | | | | | | | | | | | | potentially stale window position in initial configure event on first map of a window. [Bug 1476443] (TkMacOSXWindowOffset): use modern GetWindowStructureWidths API. * macosx/tkMacOSXInt.h: * macosx/tkMacOSXMouseEvent.c (TkGenerateButtonEventForXPointer): new internal function to generate button events for current pointer directly, without requiring prior call to XQueryPointer(). * macosx/tkMacOSXMouseEvent.c (XQueryPointer): implement return of window-local pointer position. * macosx/tkMacOSXInt.h: use improvements above to avoid calls to * macosx/tkMacOSXKeyEvent.c: GlobalToLocal() when the current port might * macosx/tkMacOSXMenu.c: not be set correctly. May fix [Bug 1243318] * macosx/tkMacOSXMenus.c: * macosx/tkMacOSXScale.c: * macosx/tkMacOSXScrlbr.c: * tkAboutDlg.r: update copyright. * macosx/tkMacOSXDebug.h: sync #includes with core-8-4-branch. * macosx/tkMacOSXEvent.h: * macosx/tkMacOSXFont.h:
* * changes: Updates for next RCcore_8_5_a4dgp2006-04-262-4/+12
|
* Stop crashes when bad font names received from XServer. [Bug 1475865]dkf2006-04-252-4/+26
|
* scrollbar.test fixes for TkAquavincentdarley2006-04-232-3/+15
|
* fix warningsdas2006-04-222-9/+7
|
* fix tests for TkAquavincentdarley2006-04-182-2/+58
|
* fix tests for TkAquavincentdarley2006-04-183-2/+10
|
* fix to get correct error messagevincentdarley2006-04-181-11/+11
|
* fix to embed.test failuresvincentdarley2006-04-182-1/+21
|
* typodgp2006-04-171-2/+2
|
* fix make html errordas2006-04-121-3/+3
|
* fix to 'embedded' targets & cosmetic fix to 'install' targetsdas2006-04-121-3/+8
|
* * generic/tkWindow.c (Tk_NameToWindow): Allow NULL interp topspjuth2006-04-114-22/+208
| | | | | | | | Tk_NameToWindow. This fixes TkGetWindowFromObj which promises to handle NULL but didn't. * generic/tkGrid.c: Fixed handling of out of bounds row or column. * tests/grid.test: [Bug 1432666]
* * unix/Makefile.in: Updated `make dist` target to be sure thedgp2006-04-112-1/+8
| | | | | message catalogs for the widget demo get packaged into the source code distribution. [Bug 1466509]
* * macosx/tkMacOSXDialog.c (Tk_MessageBoxObjCmd): added standard Escapedas2006-04-113-752/+766
| | | | key binding for msgbox cancel buttons [Patch 1193614], whitespace.
* * changes: added latest aqua bug fixes.das2006-04-112-1/+34
| | | | | | | | | | | | | | | | | | * 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/tkMacOSXCarbonEvents.c: handle kEventCommandUpdateStatusdas2006-04-112-16/+40
| | | | | | * 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 alldas2006-04-112-104/+213
| | | | | * macosx/tkMacOSXWindowEvent.c: registered appleevents [FR 1105284], implement print applevent handling, style/whitespace cleanup.
* * macosx/tkMacOSXDraw.c (TkMacOSXInitCGDrawing): prevent multiple init.das2006-04-111-7/+7
|
* * macosx/tkMacOSXFont.c: remove #ifdef'd text measuring codepaths nowdas2006-04-113-165/+32
| | | | | | * 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 statedas2006-04-115-84/+137
| | | | | | * macosx/tkMacOSXWindowEvent.c: handling for TkAqua, via titlebar * macosx/tkMacOSXWm.c: widget clicks as well as [wm state]. * doc/wm.n: [Bug 1073456]
* typos, whitespacedas2006-04-112-5/+5
|
* Fix [1467938]dkf2006-04-102-7/+17
|
* 2006-04-10 Benjamin Riefenstahl <b.riefenstahl@turtle-trading.net>cc_benny2006-04-101-0/+10
| | | | | | | | | | * macosx/tkMacOSXFont.c (MeasureStringWidth): Use implementation based on ATSUGetGlyphBounds (TK_MAC_USE_GETGLYPHBOUNDS), so we can use kATSUseFractionalOrigins. This in turn corrects bug #1461650. * (InitFont): Use "." and "W" instead of "i" and "w" to determine the "-fixed" attribute. This prevents "Apple Chancery" from being classified as fixed. * (InitFontFamilies): Only get the font families once.
* * (MeasureStringWidth): Use implementation based oncc_benny2006-04-101-53/+61
| | | | | | | | | | | | ATSUGetGlyphBounds (TK_MAC_USE_GETGLYPHBOUNDS), so we can use kATSUseFractionalOrigins. This in turn corrects bug #1461650. * (TK_MAC_DEBUG_FONTS): Fix use this throughout: Don't use TK_MAC_DEBUG; avoid empty "if" blocks in non-debug mode. * (InitFont): Use "." and "W" instead of "i" and "w" to determine the "-fixed" attribute. This prevents "Apple Chancery" from being classified as fixed. * (InitFontFamilies): Only get the font families once.
* * macosx/tkMacOSXWm.c (TkSetWMName, TkMacOSXMakeRealWindowExist):das2006-04-102-15/+10
| | | | | allow empty name for toplevels, remove bogus initial window name. [Bug 1450800]
* added ref to bug 934524das2006-04-101-2/+3
|
* * macosx/tkMacOSXWm.c (WmResizableCmd): propagate window attributedas2006-04-092-6/+21
| | | | changes to Carbon window manager. [FR 1467004]
* move tagdgp2006-04-071-2/+2
|
* * macosx/tkMacOSXMouseEvent.c (TkMacOSXProcessMouseEvent): fix returndas2006-04-073-81/+107
| | | | | | | | | values, implement window dragging & growing in background (with Command key down) and by fronting clicks, use correct button & modifier state API when application is in background (also in TkMacOSXButtonKeyState). * macosx/tkMacOSXWm.c (TkMacOSXGrowToplevel): ensure QD port is set correctly before using API relying on it.
* add support for proxy icon dragging and titlepath menuvincentdarley2006-04-061-2/+2
|
* add support for proxy icon dragging and titlepath menuvincentdarley2006-04-062-1/+25
|
* * macosx/tkMacOSXWm.c (WmAttributesCmd, WmIconbitmapCmd): fix errorsdas2006-04-065-46/+86
| | | | | | | | | | in setting/removing window proxy icons via [wm attributes -titlepath] and [wm iconbitmap], use HIWindow API on Tiger or later. [Bug 1455241] * unix/tcl.m4: remove TCL_IO_TRACK_OS_FOR_DRIVER_WITH_BAD_BLOCKING define on Darwin. [Tcl Bug 1457515] * unix/configure: autoconf-2.59 * unix/tkConfig.h.in: autoheader-2.59
* see changeshobbs2006-04-051-0/+28
|
* * generic/tkWindow.c (Initialize): remove impotent use ofhobbs2006-04-051-3/+2
| | | | DeleteWindowsExitProc as a global exit handler.
* * generic/tkMenu.c (TkSetWindowMenuBar): remove extra TkMenuInithobbs2006-04-052-82/+105
| | | | | | | | | | call that caused finalization panic. [Bug 1456851] * win/tkWinMenu.c (FreeID, TkpNewMenu, MenuExitHandler) (MenuThreadExitHandler, TkpMenuInit, TkpMenuThreadInit): rework Windows menu init/finalization to better respect per-process and per-thread boundaries. [Bug 1456851] (TkWinMenuKeyObjCmd): Do not error when unknown window is passed in. [Bug 1236306]
* * win/tkWinX.c (TkWinXInit): init default keyboard charsethobbs2006-04-051-2/+15
| | | | correctly. [Bug 1374119] (pajas)
* * tests/textWind.test (textWind-10.6.1): prevent infinite updatehobbs2006-04-051-2/+3
| | | | loop in case of test failure
* * win/tkWinWm.c (WmProc): pass WM_QUERYENDSESSION message to Tk ashobbs2006-04-051-1/+17
| | | | WM_SAVE_YOURSELF wm protocol callback.
* * tests/grid.test: fix segfault on empty or "all" index listhobbs2006-04-052-28/+67
| | | | * generic/tkGrid.c (GridRowColumnConfigureCommand): [Bug 1422430]
* (wm-attributes-1.2.4): correct expected resulthobbs2006-04-051-2/+6
|
* Revised test to account for changed error messagedgp2006-04-051-3/+3
|
* fix to crash in test suite, with dump -commandvincentdarley2006-04-052-2/+9
|
* use standard Carbon Fixed <-> Int conversion macros instead of our owndas2006-04-052-24/+13
|
* * generic/tkOption.c (TkOptionDeadWindow): handlehobbs2006-03-302-2/+9
| | | | OptionThreadExitProc being called before DeleteWindowsExitProc.
* * win/Makefile.in: convert _NATIVE paths to use / to avoid ".\"hobbs2006-03-292-10/+15
| | | | path-as-escape issue.
* * changes: Updates for next RCdgp2006-03-292-4/+9
|
* * unix/tkUnixDefault.h: Changed "Black" to "#000000" and "White" todgp2006-03-292-3/+9
| | | | | "#ffffff" to work around the (broken?) X servers that do not accept those color names. [Bug 917433]
* * unix/tcl.m4, win/tcl.m4: []-quote AC_DEFUN functions.hobbs2006-03-283-38/+42
|
* further fixes to $text dump -commandvincentdarley2006-03-283-6/+70
|