summaryrefslogtreecommitdiffstats
path: root/ChangeLog
Commit message (Collapse)AuthorAgeFilesLines
* * macosx/tkMacOSXInit.c:das2005-05-141-0/+35
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * macosx/tkMacOSXNotify.c: introduction of new tcl notifier based on CFRunLoop allows replacement of the custom TkAqua notifier by a standard tcl event source. Removes requirement of threaded tcl core for TkAqua, allows to stub-link TkAqua against Tcl by removing use of the unstubbed TclInitNotifier & TclFinalizeNotifier. [Tcl Patch 1202052] * macosx/Wish.xcode/project.pbxproj: * macosx/Wish.pbproj/project.pbxproj: stub-link TkAqua: build with USE_TCL_STUBS and link against libtclstub instead of Tcl.framework, unexport libtclstub symbols from Tk to avoid duplicate symbol warnings when linking with both Tcl and Tk, fixes for gcc4.0 warnings. * macosx/Wish.xcode/project.pbxproj: sync with Wish.pbproj changes since 2004-11-19. NOTE: to use this project, need to uncomment the tclConfig.h settings at the top of tcl/unix/configure.in, autoconf and rebuild tcl ! * macosx/tkMacOSXBitmap.c: * macosx/tkMacOSXButton.c: * macosx/tkMacOSXDialog.c: * macosx/tkMacOSXFont.c: * macosx/tkMacOSXHLEvents.c: * macosx/tkMacOSXInit.c: * macosx/tkMacOSXKeyboard.c: * macosx/tkMacOSXMenu.c: * macosx/tkMacOSXMenubutton.c: * macosx/tkMacOSXWm.c: * macosx/tkMacOSXXStubs.c: fixed gcc 4.0 warnings. * unix/tcl.m4: sync with tcl * unix/configure: autoconf-2.59
* fix to two text widget bugsvincentdarley2005-05-131-0/+8
|
* * generic/tkTextDisp.c (GetXView): Improved numerical precisiondgp2005-05-101-0/+7
| | | | | | of calculation of [.t xview] return values. * tests/textDisp.test: Match greater precisions of [.t xview] and [.t yview] values in tests.
* * unix/configure: regenhobbs2005-05-071-0/+8
| | | | | | | * unix/configure.in: add AC_C_BIGENDIAN check and pkg-config xft checks to extend xft search. * unix/tcl.m4: correct Solaris 10 (5.10) check and add support for x86_64 Solaris cc builds.
* Fix [1191097], factor, and tidy up.dkf2005-04-281-0/+6
|
* * macosx/tkMacOSXNotify.c: sync with tclUnixNotfy.c changes sincedas2005-04-261-0/+20
| | | | | | | | | | | | | | | | | | | 2004-06-22, added compile time check for threaded tcl core, removed unthreaded code paths as they are never used anyway, fixed TkMacOSXAlertNotifier() implementation. * unix/Makefile.in: added TCL_STUB_LIB_FILE, needed for unexporting of symbols from libtclstub to avoid duplicate symbol warnings. * unix/tcl.m4 (Darwin): added configure checks for recently added linker flags -single_module and -search_paths_first to allow building with older tools (and on Mac OS X 10.1), use -single_module in SHLIB_LD and not just T{CL,K}_SHLIB_LD_EXTRAS, added unexporting from Tk of symbols from libtclstub to avoid duplicate symbol warnings, added PLAT_SRCS definition for Mac OS X, defined MODULE_SCOPE to __private_extern__. (SC_MISSING_POSIX_HEADERS): added caching of dirent.h check. * unix/configure: autoconf-2.59
* added an entry for the FontId.3 typo fixgeorgeps2005-04-221-0/+5
|
* Tk_MeasureChars: Use Tcl_UtfToUnichar() for lax UTF-8 parsingjenglish2005-04-191-0/+6
| | | | instead of strict parsing with FcUtf8ToUcs4() [fix/workaround for #1185640]
* fix to Home/End and display linesvincentdarley2005-04-181-0/+7
|
* * unix/tkUnixFont.c (FontMapLoadPage): reorder char[] decls tohobbs2005-04-141-0/+5
| | | | avoid possible segv. Minimal fix for [Bug 1122671]
* * library/tkfbox.tcl (::tk::dialog::file::): fix typeMenuLab ref.hobbs2005-04-121-0/+9
| | | | | | | | Add undoc'd ::tk::dialog::file::showHiddenBtn var (default 0) that will add a "Show Hidden" checkbutton to tk_get*File and tk_chooseDirectory if set to true. * library/choosedir.tcl (::tk::dialog::file::chooseDir::): fix cancelBtn ref, add hiddenBtn ref for "Show Hidden" button.
* * macosx/README: updated requirements for OS & developer tooldas2005-04-091-0/+3
| | | | versions + other small fixes/cleanup.
* * macosx/tkMacOSXEntry.c (ComputeIncDecParameters): manually definedas2005-04-091-0/+3
| | | | constants present only in 10.3 headers so that we can build on 10.2.
* * macosx/Wish.pbproj/project.pbxproj: fixed absolute path todas2005-04-091-0/+3
| | | | tkEntry.h that confused 10.2 PBX.
* * unix/tcl.m4 (Darwin): added -single_module linker flag todas2005-04-091-0/+6
| | | | | TCL_SHLIB_LD_EXTRAS and TK_SHLIB_LD_EXTRAS. * unix/configure: autoconf-2.59
* * macosx/tkMacOSXWm.c (TkWmStackorderToplevelWrapperMap, ↵mdejong2005-04-071-0/+10
| | | | | | | | | | | TkWmStackorderToplevel): * unix/tkUnixWm.c (TkWmStackorderToplevelWrapperMap, TkWmStackorderToplevel): * win/tkWinWm.c (TkWmStackorderToplevelWrapperMap, TkWmStackorderToplevel): Fix panic in wm stackorder when a toplevel is created on another diplay. The code now ignores toplevels that have a display that does not match the display of the parent window. [Bug 1152809]
* Purge old and inaccurate .VS/.VE macros.dkf2005-04-061-0/+12
|
* * library/comdlg.tcl: Added Macintosh file type validation todgp2005-04-051-0/+5
| | | | [::tk::FDGetFileTypes]. [Bug 1083878] (Thanks, Vince Darley)
* fix to elide search and insertofftime 0 text widget bugsvincentdarley2005-04-041-0/+6
|
* Fixed bug in geometry calculations forpspjuth2005-04-031-0/+7
| | | | | widgets that span multiple columns/row. Bug was introduced in 8.5a1 when fixing 792387. [Bug 1175092]
* * win/tcl.m4, win/configure: do not require cygpath in macros tohobbs2005-03-301-0/+5
| | | | allow msys alone as an alternative.
* added text widget testvincentdarley2005-03-271-0/+4
|
* Dopey bug, I should only reset the widget width for spinboxes, since I onlywolfsuit2005-03-241-0/+6
| | | | change it for them...
* Get the Entry and Spinbox widgets to draw with the native look & feel onwolfsuit2005-03-241-0/+13
| | | | | | Mac OS X. Also contains some more work on tkMacOSXScale.c, but this doesn't work all the way yet, so it's not currently built.
* 2005-03-23 Jim Ingham <jingham@apple.com>wolfsuit2005-03-231-0/+18
| | | | | | | | | | | | | | | | | | This is cleanup thanks to Neil Madden <nem@cs.nott.ac.uk>. * macosx/tkMacOSXWm.c (TkMacOSXWinStyle) New function. (TkUnsupported1ObjCmd): New function, replaces the un-objectified version of the command. * generic/tkInt.h: Swap TkUnsupported1Cmd for TkUnsupported1ObjCmd. * generic/tkWindow.c (): Ditto. This adds a "-notify" flag to "wm attributes" that will bounce the dock icon on Mac OS X. This is from Revar Desmera <revarbat@gmail.com> * macosx/tkMacOSXWm.c (WmAttrGetNotifyStatus, WmAttrSetNotifyStatus): New functions. (WmAttributesCmd): Add the -notify. * doc/wm.n: Document -notify.
* Use Tcl_Set/GetAssocData to remove use of fragile Tcl_GetCommandInfodkf2005-03-191-0/+6
| | | | from TkConsolePrint. [Bug 1016385]
* fix for display lines bug and panicvincentdarley2005-03-151-0/+5
|
* 2005-03-14 Jim Ingham <jingham@apple.com>wolfsuit2005-03-151-0/+22
| | | | | | | | | | | | | | | | | | | | | | * macosx/tkMacOSXScrlbr.c (ThumbActionProc): No need to use "update idletasks" here, TclServiceIdle will do as well and it is simpler. These changes implement a change on the Mac OS X side. When we unmap a window we mark all its children as unmapped (not following toplevels. But we preserve whether they had been mapped before, and when the parent is remapped, we remap the children as well. [Bug 940117] * macosx/tkMacOSXInt.h: Added TK_MAPPED_IN_PARENT * macosx/tkMacOSXSubwindows.c (FixMappingFlags): New function. (XMapWindow): Call FixMappingFlags. (XUnMapWindow): Ditto. * tkMacOSXSubWindows.c (XMoveResizeWindow): Update the xOff & yOff data in the Macdrawable even if the native window hasn't been created yet. [Bug 700305] (XMoveWindow): Ditto. (XResizeWindow): Ditto.
* Updated the OpenBSD configuration and regenerated configure script.patthoyts2005-03-151-0/+5
|
* Correct the InvokeClientMessageHandlers logic. [Bug 1162356]dkf2005-03-141-5/+11
| | | | Also many style fixups to approach the Engineering Manual.
* ChangeLog for the previous two commitswolfsuit2005-03-121-0/+21
|
* Fix for 1160025wolfsuit2005-03-101-0/+6
|
* Add a hack to work around some issues with remote debugging with Xcode. ↵wolfsuit2005-03-091-0/+6
| | | | | | | | Xcode requires that stdin & stdout be closed or you won't be able to interrupt the running program. So I added a check for XCNOSTDIN environment variable in the startup, and I force them closed if it is set. With that, remote debugging works pretty well.
* * win/makefile.vc: clarify necessary defined vars that can comehobbs2005-03-081-0/+7
| | | | from MSVC or the Platform SDK.
* * win/tkWinX.c (GenerateXEvent): correct %A translation onhobbs2005-02-281-0/+5
| | | | MouseWheel [Bug 1118340]
* * macosx/tkMacOSX.h: fixed incorrect inclusion of internal header.das2005-02-241-0/+5
| | | | * macosx/tkMacOSXNotify.c: corrected included headers.
* * macosx/tkMacOSXDialog.c (Tk_GetSaveFileObjCmd, NavServicesGetFile):das2005-02-221-0/+7
| | | | | | fixed encoding problems with -initialfile & -filetypes and corrected potential buffer overrun with -initialdir/-initialfile. [Bug 1146057]
* * doc/wm.n: Add documentation for -fullscreen attribute.mdejong2005-02-171-0/+12
| | | | | | | | | | | * tests/winWm.test: Add -fullscreen to wm attribute usage message. * tests/wm.test: Add -fullscreen to wm attribute usage message. Add -fullscreen attribute test cases for Windows. * win/tkWinWm.c (WmInfo, UpdateWrapper, TkpWmSetFullScreen, WmAttributesCmd, UpdateGeometryInfo): Implement TIP 223 [wm attributes -fullscreen].
* fix to newline eliding in text widgetvincentdarley2005-02-141-0/+13
|
* * doc/options.n: note -cursor {} behavior. [Bug 965618]hobbs2005-02-141-0/+4
|
* Encourage missing-DISPLAY errors to be early in run of test suite.dkf2005-02-141-0/+6
|
* * library/panedwindow.tcl (::tk::panedwindow::Cursor): checkhobbs2005-02-121-0/+3
| | | | window existence on delayed call. [Bug 949792]
* * doc/text.n: note 'image' key in 'dump' command. [Bug 1115907]hobbs2005-02-111-0/+2
|
* * win/tkWinWm.c (TkWinGetIcon): fix toplevel retrieval forhobbs2005-02-111-0/+3
| | | | determining icon ref (potential crash). [Bug 1105738]
* * generic/tkCanvBmap.c (ConfigureBitmap, ComputeBitmapBbox): Fixedhobbs2005-02-111-0/+4
| | | | | possible crash with disabled bmap and bbox handling [Bug 1119460] (BitmapToPostscript): made aware of various bitmap types
* * unix/Makefile.in: remove SHLIB_LD_FLAGS (only for AIX, inlinedhobbs2005-02-111-0/+7
| | | | | | * unix/tcl.m4: into SHLIB_LD). Combine AIX-* and AIX-5 * unix/configure: branches in SC_CONFIG_CFLAGS. Correct gcc builds for AIX-4+ and HP-UX-11. autoconf-2.59 gen'd.
* Use more tcltest 2 features so test contents can be less cluttered...dkf2005-02-091-0/+4
|
* Fix silly mistake. :^}dkf2005-02-071-0/+5
|
* Ensure that the canvas's static data is either protected by a mutex ordkf2005-02-031-0/+7
| | | | in a thread-local variable. [Bug 1114977]
* * unix/tcl.m4, unix/configure: add solaris-64 gcc buildhobbs2005-01-311-0/+5
| | | | support. [Bug 1021871]