summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* * doc/colors.n: document new Mac OS X system colors.das2007-04-294-10/+192
| | | | | | * doc/cursors.n: document new Mac OS X native cursors. * doc/font.n: document new Mac OS X 'menu' system font. * doc/wm.n: document new Mac OS X [wm attributes].
* * unix/Makefile.in (dist): copy license.terms to dist macosx dir.das2007-04-293-12/+15
| | | | | | * unix/configure.in: install license.terms into Tk.framework; fix tk debug build detection. * unix/configure: autoconf-2.13
* * library/bgerror.tcl: on aqua, use moveable alert resp. modal dialogdas2007-04-294-9/+29
| | | | | | | | * library/dialog.tcl: window class and corresponding system background pattern; fix button padding. * library/tearoff.tcl: correct aqua menu bar height; vertically offset * library/tk.tcl: aqua tearoff floating window to match menu.
* * library/demos/menu.tcl: on aqua, use custom MDEF and tearoffs;das2007-04-293-12/+16
| | | | | | * library/demos/menubu.tcl: correct menubutton toplevel name. * library/demos/puzzle.tcl: fix button size & padding for aqua.
* * generic/tkCanvas.c: allow -selectforeground option to be None; adddas2007-04-299-51/+149
| | | | | | | | | | | | | | | | * generic/tkCanvText.c: fallback to fgColor when selFgColor is None * generic/tkEntry.c: (new default on aqua to match native L&F). * generic/tkListbox.c: * generic/tkText.c: * generic/tkCanvas.c: add support for bypassing all of Tk's double * generic/tkEntry.c: buffered drawing into intermediate pixmaps * generic/tkFrame.c: (via TK_NO_DOUBLE_BUFFERING #define), it is * generic/tkListbox.c: unnecessary & wasteful on aqua where all * generic/tkPanedWindow.c: drawing is already double-buffered by the * generic/tkTextDisp.c: window server. (Use of this on other * unix/tkUnixScale.c: platforms would only require implementation of TkpClipDrawableToRect()).
* * generic/tkMain.c (Tk_MainEx): replicate macosx-specific code fromdas2007-03-075-10/+41
| | | | | | | | | | | | | TkpInit() that ensures the console window appears when wish is started from the OS X Finder (i.e. with stdin == /dev/null), jeffh's 2006-11-24 change rendered the corresponding code in TkpInit() ineffective in wish because Tk_MainEx() sets tcl_interactive before calling TkpInit(). * macosx/tkMacOSXDebug.c (TkMacOSXGetNamedDebugSymbol): add fix for libraries loaded with a DYLD_IMAGE_SUFFIX. * unix/tcl.m4 (Darwin): s/CFLAGS/CPPFLAGS/ in macosx-version-min check. * unix/configure: autoconf-2.13
* * unix/tcl.m4: use SHLIB_SUFFIX=".so" on HP-UX ia64 arch.hobbs2007-02-193-169/+185
| | | | * unix/configure: autoconf-2.13
* * library/tkfbox.tcl (::tk::IconList_Goto): avoid goto issues inhobbs2007-02-191-3/+3
| | | | empty dirs. [Bug 1662959]
* * unix/configure.in: add caching to -pipe check.das2007-02-043-234/+245
| | | | * unix/configure: autoconf-2.13
* * win/Makefile.in (install-private-headers): added targethobbs2007-01-302-1/+27
|
* renamed SC_COMMANDS_PRE to SC_CONFIG_COMMANDS_PRE for parity with AC 2.5xdas2007-01-261-3/+3
|
* previous commit omitted some changes from the HEADdas2007-01-252-180/+178
|
* comment typodas2007-01-251-1/+1
|
* * unix/tcl.m4: integrate CPPFLAGS into CFLAGS as late as possibledas2007-01-254-148/+195
| | | | | | | | * unix/configure.in: and move (rather than duplicate) -isysroot flags from CFLAGS to CPPFLAGS to avoid errors about multiple -isysroot flags from some older gcc builds. * unix/configure: autoconf-2.13
* * unix/tcl.m4: ensure CPPFLAGS env var is used when set. [Bug 1586861]das2007-01-193-174/+197
| | | | | | | | (Darwin): add -isysroot and -mmacosx-version-min flags to CPPFLAGS when present in CFLAGS to avoid discrepancies between what headers configure sees during preprocessing tests and compiling tests. * unix/configure: autoconf-2.13
* whitespacedas2007-01-192-5/+5
|
* Fix [Bug 1522467] using fix similar to that used in Tcl recently.dkf2006-12-222-24/+33
|
* Spanish always uses "Guardar" to mean "Save" in the computer sense. [Bug ↵dkf2006-12-223-8/+9
| | | | 1111213]
* (TkpDisplayButton): lint init. [Bug 1618604]hobbs2006-12-192-2/+6
|
* * unix/tcl.m4 (Darwin): --enable-64bit: verify linking with 64bit -archdas2006-12-193-149/+237
| | | | | flag succeeds before enabling 64bit build. * unix/configure: autoconf-2.13
* typodas2006-12-081-2/+2
|
* * generic/tkListbox.c (ConfigureListboxItem): ListboxWorldChangedhobbs2006-12-042-5/+15
| | | | not needed - just call EventuallyRedrawRange. [Bug 1608046] (rezic)
* * doc/wm.n, tests/winWm.test:hobbs2006-12-014-48/+154
| | | | * win/tkWinWm.c: add -transparentcolor attribute for Windows.
* * macosx/tkMacOSXDialog.c (Tk_MessageBoxObjCmd): fix inability to usedas2006-12-012-1/+10
| | | | | buttons with standard Escape key binding as -default button (reported on tcl-mac by Hans-Christoph Steiner).
* * tcl.m4 (Linux): --enable-64bit support. [Patch 1597389], [Bug 1230558]das2006-11-263-151/+203
| | | | * configure: autoconf-2.13
* * macosx/tkMacOSXInit.c (TkpInit): only set tcl_interactive 1 ifhobbs2006-11-242-19/+32
| | | | | it isn't already defined. Allows embedders to set it to 0 to prevent the console appearing on OS X. [Bug 1487701]
* * unix/tkUnixMenu.c (DrawMenuUnderline): bound Tcl_UtfAtIndex usagehobbs2006-11-244-22/+43
| | | | * tests/menu.test (menu-36.1): [Bug 1599877]
* * win/tkWinMenu.c (TkWinHandleMenuEvent, DrawMenuUnderline):hobbs2006-11-242-41/+53
| | | | handle unichar underlining correctly and safely. [Bug 1599877]
* comment typodas2006-11-021-2/+2
|
* * macosx/tkMacOSXWindowEvent.c (GenerateUpdateEvent): fix handling ofdas2006-11-022-31/+44
| | | | | | Carbon Update events: the QuickDraw window update region was being ignored and all child TkWindows were sent an Expose XEvent even when they did not need to be redrawn. [Patch 1589226]
* * macosx/tkMacOSXDebug.c: add TkMacOSX prefix to leftover macosx-privatedas2006-10-319-53/+70
| | | | | | | | | | * macosx/tkMacOSXDebug.h: global symbols without Tk prefix; ifdef out * macosx/tkMacOSXEmbed.c: currently unused debug procs. * macosx/tkMacOSXEvent.c: * macosx/tkMacOSXInt.h: * macosx/tkMacOSXCarbonEvents.c: * macosx/tkMacOSXSubwindows.c: * macosx/tkMacOSXWm.c:
* sync whitespace with HEADdas2006-10-311-301/+301
|
* Fix bug #1582769 build with VC2003 and correct i386 arch.patthoyts2006-10-312-3/+10
|
* * README: Bump version number to 8.4.15dgp2006-10-238-14/+25
| | | | | | | | | | * generic/tk.h: * unix/configure.in: * unix/tk.spec: * win/configure.in: * unix/configure: autoconf-2.13 * win/configure:
* advance 8.4.14 tagdgp2006-10-181-2/+2
|
* Ensure builds with VC6 without Platform SDK and pickup MACHINE from environmentpatthoyts2006-10-183-13/+25
| | | | to make life easier on Windows non-x86 platforms.
* * generic/tkPanedWindow.c: Cleaned up some code flagged by adgp2006-10-175-10/+17
| | | | | | * generic/tkText.c: `make checkexports` test. * generic/tkText.h * generic/tkTextTag.c:
* Set release date.dgp2006-10-161-2/+2
|
* * macosx/Makefile: don't redo prebinding of non-prebound binaires.das2006-10-162-4/+9
|
* whitespacedas2006-10-161-5/+5
|
* * macosx/README: document CG antialiasing limit changes.das2006-10-162-11/+11
|
* * changes: updates for 8.4.14 release.das2006-10-167-561/+581
| | | | | | | | | | | | | * macosx/tkMacOSXDraw.c: fix numerous issues in CG and QD drawing procs so that they now match X11 drawing much more closely [Bug 1558051]; use Tiger ellipse drawing API when available; fix comments & whitespace. * macosx/tkMacOSXInit.c: set default linewidth limit for CG antialiasing to 0 as thin horizontal/vertical lines look good now. * generic/tkCanvLine.c (ConfigureLine): on TkAqua, pass outline * generic/tkCanvPoly.c (ConfigurePolygon): linewidth in gc even for * generic/tkRectOval.c (ConfigureRectOval): fills (as it controls AA).
* * changes: changes updated for 8.4.14 release.dgp2006-10-102-2/+19
|
* Remove the /RTCc flagpatthoyts2006-10-062-7/+3
|
* * unix/tkUnixFont.c (Ucs2beToUtfProc, UtfToUcs2beProc):hobbs2006-10-052-35/+56
| | | | | | (TkpFontPkgInit, encodingAliases): Correct alignment issues in encoding conversion. Call ucs-2be "unicode" on big-endian systems. [Bug 1122671]
* * win/makefile.vc: Support MSVC8 and AMD64 target. Also try usingpatthoyts2006-09-264-115/+344
| | | | | * win/rules.vc: sed to generate the manifest (cross-compile cannot * win/nmakehlp.c: execute tclsh). If no sed, use the tclsh exe.
* * generic/tkConsole.c: Complete reversal of the changes of Sep 22.andreas_kupries2006-09-258-21/+35
| | | | | | | | | | | | | | * generic/tkMain.c: For compat reason the Tcl core will not change * generic/tkWindow.c: the registered version to include the patchlevel, * library/tk.tcl: making the changes to Tk unnecessary. * unix/configure: * unix/Makefile.in: * unix/tcl.m4: * win/configure: * win/Makefile.in: * win/makefile.vc: * win/rules.vc: * win/tcl.m4:
* * generic/tkConsole.c: TIP #268 update regarding registered packageandreas_kupries2006-09-2213-262/+285
| | | | | | | | | | | | | | * generic/tkMain.c: version, now using full patchlevel instead of * generic/tkWindow.c: major.minor * library/tk.tcl: * unix/configure: * unix/Makefile.in: * unix/tcl.m4: * win/configure: * win/Makefile.in: * win/makefile.vc: * win/rules.vc: * win/tcl.m4:
* Fix [Bug 1562528]dkf2006-09-222-10/+15
|
* * win/tkWinMenu.c (TkpPostMenu): disable menu animation in menushobbs2006-09-212-4/+26
| | | | with images to avoid clipping bug. [Bug 1329198]