summaryrefslogtreecommitdiffstats
path: root/ChangeLog
Commit message (Collapse)AuthorAgeFilesLines
* * Completed conversion of Tk test suite to use tcltest.dgp2002-07-141-0/+7
|
* * Converted more files to tcltest and factored out common code.dgp2002-07-131-1/+1
|
* * Converted more files to tcltest and factored out common code.dgp2002-07-131-0/+5
|
* * Converted several files in the test suite for testing bydgp2002-07-131-1/+1
| | | | tcltest 2.1.
* * Converted several files in the Tk test suite for testing bydgp2002-07-121-2/+2
| | | | tcltest 2.1.
* * Converted several files in the Tk test suite for testing bydgp2002-07-121-0/+7
| | | | tcltest 2.1.
* * win/tkWinDialog.c (Tk_ChooseDirectoryObjCmd): initializehobbs2002-07-111-0/+6
| | | | | utfTitle to NULL, add a few more notes about limitations of possible new Tk_ChooseDirectoryObjCmd function.
* tests/visual_vv.test: Removed some dependence on [exec]ed utilitiesdkf2002-07-111-0/+14
| | | | | | generic/tkImgPhoto.c: Allowed photo image buffer allocation to fail more tests/imgPhoto.test: gracefully in some cicumstances. The remaining ones require API changes before they can fail nicely.
* * generic/tkTest.c: Removed unused dependence on TclThread_Init()dgp2002-07-091-0/+5
| | | | * tests/defs.tcl: and [testthread]. [Bug 578165, Tcl Bug 531413]
* no messagedavygrvy2002-07-081-0/+5
|
* updated for 8.4b1 releasecore_8_4_b1hobbs2002-07-051-0/+4
|
* Improvements to bgerror dialog layout. [Bug #577086]dkf2002-07-041-0/+9
|
* Updated to latest tcl.m4 from Tcl.dgp2002-07-011-0/+5
|
* Force the message box to have consistent background colours. [Bug#552515]dkf2002-06-281-0/+5
|
* * win/Makefile.in (install-binaries): Fix of troubled Makefileandreas_kupries2002-06-271-0/+6
| | | | | quoting introduced by [Patch 521356] causing the installed to fail.
* * (Tk_DrawChars) silence compiler warning.dgp2002-06-261-0/+4
|
* * generic/tkStyle.c: <eol> of the committing cvs client didn'tdavygrvy2002-06-261-0/+6
| | | | | match the <eol> of the file itself. Windows users where getting \r\r\n. Problem fixed.
* Fixed potential buffer overflow from patch#546910a_kovalenko2002-06-261-0/+7
|
* Updated font.test to expect new behavior of canvas postscript (patch #546910)a_kovalenko2002-06-261-0/+5
|
* * Expanded install-binaries target to create and install adgp2002-06-261-0/+6
| | | | pkgIndex.tcl file to enable Tk as a loadable package [Patch 521356]
* * unix/tcl.m4: New macro SC_CONFIG_MANPAGES.rmax2002-06-251-0/+10
| | | | | | | | | | | * unix/configure.in: Added support for symlinks and compression * unix/Makefile.in: when installing the manpages. [Patch 518052] Default is still hardlinks and no compression. * unix/mkLinks: generated * unix/configure: * unix/README: Added documentation for the new features.
* Applied patch #546910 -- international postscript outputa_kovalenko2002-06-251-0/+13
|
* * unix/configure: Replaced ${exec_prefix}/librmax2002-06-251-0/+5
| | | | * unix/tcl.m4 (SC_PATH_TCLCONFIG): by ${libdir}.
* * tests/winWm.test: Verify that both an unmappedmdejong2002-06-241-0/+21
| | | | | | | | | | | | | | | | | | | | and already mapped toplevel are raised and receive the focus when deiconified. * tests/wm.test: Add wm deiconify tests. Check that a toplevel that has never been mapped is not mapped by the deiconify command since it should be done at idle by MapFrame. * win/tkWinWm.c (Tk_WmCmd): Check the WM_NEVER_MAPPED flag while processing the wm deiconify command. The WM_UPDATE_PENDING flag should never be set when WM_NEVER_MAPPED is set, but double check so that the implementation is more explicit and matches the comment just above. Return without invoking TkWmRestackToplevel or TkSetFocusWin on a toplevel that has never been mapped. This fixes a bug where a toplevel is mapped with the wrong size and is then resized by the idle call to MapFrame. [Tk bug 233150]
* Mention Tk patch numbers in ChangeLog entries.mdejong2002-06-241-1/+4
|
* * win/tkWinWm.c (UpdateGeometryInfo): remove the check for a nullhobbs2002-06-241-0/+8
| | | | | | | wrapper introduced in r1.41 on 2002-06-15 because it prevented geometry setting from taking effect if the window was not on the screen. Another check may go in it's place as IsIconic and IsZoomed should not be passed NULL.
* * tests/wm.test: Remove invalid minsize test. Add updatemdejong2002-06-241-0/+11
| | | | | | | | | | calls to wm transient tests so that idle handlers get run. This is needed to get the tests to pass under Win32. * unix/tkUnixWm.c (WmWaitMapProc): Move the special transient withdrawn check into the if body to make it easier to set a breakpoint on this test inside a debugger. No functional changes. * win/tkWinWm.c (WmWaitVisibilityOrMapProc): Ditto.
* * doc/wm.n: TIP #95 Windows implementation andhobbs2002-06-221-0/+7
| | | | | | | | * mac/tkMacWm.c (Tk_WmCmd): docs with mac and unix stubs. * unix/tkUnixWm.c (Tk_WmCmd): * win/tkWinWm.c (Tk_WmCmd): * tests/unixWm.test: * tests/winWm.test: more wm attr tests will be needed.
* see changeloghobbs2002-06-221-0/+15
|
* * doc/text.n: TIP #93 implementation thathobbs2002-06-221-0/+8
| | | | | | | * generic/tkText.c (TextWidgetCmd): enhances the text get and * generic/tkTextIndex.c (TkTextGetIndex): delete methods to accept * tests/text.test: multiple range pairs. This handles the delete case in an atomic, fixed-index fashion.
* * tests/wm.test: Add tests to make sure a withdrawnmdejong2002-06-221-1/+13
| | | | | | | | | | | transient does not get remapped by state changes in the master. * unix/tkUnixWm.c (Tk_WmCmd, WmWaitMapProc): * win/tkWinWm.c (Tk_WmCmd, WmWaitVisibilityOrMapProc): Add a WM_TRANSIENT_WITHDRAWN flag that gets set by the withdraw, deiconify, or state wm subcommands. Check this flag before mapping a transient when processing a MapNotify event. [Tk bug 570764]
* Tk patchlevel bumped to 8.4b1 in preparation for release.dkf2002-06-221-0/+5
|
* * doc/text.n: TIP #104 implementation which generalizes thehobbs2002-06-211-0/+16
| | | | | | | | | | | | | | | * generic/tkText.c: undo/redo stack to not be tied solely to the * generic/tkText.h: text widget. The APIs are still private. * generic/tkUndo.c: This also adds a stack limiting ability and * generic/tkUndo.h: a -maxundo option to the text widget (in * library/text.tcl: addition to the options from TIP #26) should * mac/tkMacDefault.h: users want to limit the undo/redo stack * tests/text.test: (should not be necessary in most cases). * unix/Makefile.in: [Patch #554763] (callewart) * unix/tkUnixDefault.h: * win/Makefile.in: * win/makefile.vc: * win/tkWinDefault.h:
* changelog notes for TIP#94hobbs2002-06-211-0/+9
|
* * Removed unnecessary dependence of tktest executable on the tcltestdgp2002-06-211-0/+7
| | | | | executable on Unix. If there are similar dependencies on other platforms, they can probably be removed as well. [Bug 572134].
* Corrected the test for grid propagate change. [Bug #571433]pspjuth2002-06-201-0/+5
|
* * tests/panedwindow.test:hobbs2002-06-191-0/+6
| | | | | * generic/tkPanedWindow.c: ensure that sash index is lower bounds checked. [Bug #548727]
* * generic/tkClipboard.c (TkClipCleanup): Add codemdejong2002-06-191-0/+7
| | | | | | to set dispPtr->clipWindow to NULL, this was accidently removed by last commit. Fixes a crash while running the tests under win32.
* Add Tk patch id to ChangeLog entry.mdejong2002-06-191-0/+1
|
* * generic/tkBind.c (TkBindDeadWindow):mdejong2002-06-191-0/+47
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Handle case where Tk_DestroyWindow is invoked on clipboard and send windows. * generic/tkClipboard.c (TkClipCleanup): Invoke Tk_DestroyWindow to cleanup the dispPtr->clipWindow. Call Tcl_Preserve and Tcl_Release on the window to avoid an invalid memory ref on shutdown. * generic/tkEvent.c (Tk_HandleEvent): Panic if XCreateIC is invoked twice for the same window. This should never happen, the check were just added to make sure it does not since this could lead to crashes in XCloseIM. * generic/tkFocus.c (TkFocusDeadWindow): Handle case where Tk_DestroyWindow is invoked on clipboard and send windows. * generic/tkOption.c (TkOptionDeadWindow): Ditto. * generic/tkWindow.c (TkCloseDisplay): Move deletion of dispPtr->winTable after TkpCloseDisplay call since Tk_DestroyWindow uses it and could be called by TkpCloseDisplay for clipboard/send windows. Also invoke ckfree for the dispPtr instead of doing it in TkpCloseDisplay. (Tk_DestroyWindow): Check for a null winPtr->mainPtr before doing certain cleanup tasks so the we can invoke Tk_DestroyWindow on clipboard and send windows. We need to do this so that XDestroyIC will get invoked for the input contexts of each window. * mac/tkMacXStubs.c (TkpCloseDisplay): Don't free the displayPtr since this is now done in TkCloseDisplay. * unix/tkUnixEvent.c (TkpCloseDisplay, OpenIM): Remove conditional compilation around calls to XCloseIM since I am confident that the crashes related to input contexts has been fixed. Don't free the displayPtr since this is now done in TkCloseDisplay. * unix/tkUnixSend.c (TkSendCleanup): Invoke the Tk_DestroyWindow method to cleanup the special send window. This will call XDestroyIC and thereby avoid a crash in XCloseIM. The send window needs to be Tcl_Preserve and Tcl_Release to avoid an invalid memory ref on shutdown. * win/tkWinX.c (TkpCloseDisplay): Don't free the displayPtr since this is now done in TkCloseDisplay.
* corrected copy/paste errordgp2002-06-181-1/+1
|
* Added TIP#48 style engine implementationdkf2002-06-181-0/+23
| | | | Frederic Bonnet to supply docs+tests as soon as possible.
* Fix tcltest::makeFile so cursor.test can work properly...dkf2002-06-181-0/+6
|
* * generic/tkImage.c (Tk_ImageObjCmd, DeleteImage): Callmdejong2002-06-181-0/+7
| | | | | | Tcl_Preserve and Tcl_Release for the masterPtr->winPtr window to avoid accessing memory that had already been deallocated in DeleteImage.
* Trims to support the removal of RESOURCE_INCLUDED from rcdavygrvy2002-06-181-0/+11
| | | | | | | | | | scripts from Tcl's accepted FR #565088. * generic/tk.h: Changed RESOURCE_INCLUDED to be RC_INVOKED as the RC tool defines this already by default. * win/rc/tk.rc: * win/rc/wish.rc: removed the #define RESOURCE_INCLUDED lines.
* * unix/Makefile.in (dist): correct installation ofhobbs2002-06-171-0/+3
| | | | wish.exe.manifest to DISTDIR target directory.
* * generic/tkCmds.c (Tk_TkObjCmd):hobbs2002-06-171-0/+14
| | | | | | | | | | * generic/tkInt.h (struct TkCaret): * mac/tkMacXStubs.c (Tk_SetCaretPos): * unix/tkUnixKey.c (TkpGetString, Tk_SetCaretPos): * win/tkWinX.c (Tk_SetCaretPos): * tests/tk.test: Added 'tk caret' implementation of TIP#96 * doc/SetCaret.3 (new): which adds a TkCaret structure element to * doc/tk.n: TkDisplay for maintaining state.
* * Added catalog for UK English.dgp2002-06-171-0/+5
| | | | Currently includes only Color -> Colour translation.
* Initial implementation of TIP #82: added the -offrelief option todrh2002-06-171-0/+12
| | | | | checkbutton and radiobutton to allow those widgets to have a MS-Office look and feel.
* * generic/tkWindow.c (Tk_DestroyWindow): Set the pathNamemdejong2002-06-151-0/+9
| | | | | | | | component of a window to NULL after its memory has been deallocated to avoid a possible illegal memory access as a result of a call to Tk_PathName() on a Tk_Window structure of a window that has already been destroyed. [Tk bug 521946]