summaryrefslogtreecommitdiffstats
path: root/ChangeLog
Commit message (Collapse)AuthorAgeFilesLines
* Use ${libdir} instead of ${exec_prefix}/lib. [Tcl bug 489370]mdejong2002-01-111-0/+9
| | | | | | | * unix/configure: Regen. * unix/configure.in: Define and use libdir. * win/configure: Regen. * win/configure.in: Define libdir.
* * unix/Makefile.in: Burn Tcl and Tk buildmdejong2002-01-111-0/+10
| | | | | | | | | directories into tktest executable to avoid crashes caused by ld loading a previously installed version of the tcl or tk shared libraries. Remove setting of LD_LIBRARY_PATH, LIBPATH, and SHLIB_PATH before running tktest since it should no longer be required.
* Enable use of Tcl stubs when building Tk asmdejong2002-01-111-0/+14
| | | | | | | | | | | | | a shared library. This should fix the build under AIX. [Bugs 220858, 220955, 220921] * unix/Makefile.in: Add TCL_STUB_LIB_SPEC and TCL_STUB_LIB_FLAG variables. * unix/configure: Regen. * unix/configure.in: Pass TCL_STUB_LIB_SPEC into Makefile and use it when linking the tk shared library. Define USE_TCL_STUBS when building shared. Subst TCL_STUB_LIB_SPEC and TCL_STUB_LIB_FLAG.
* Fix the following bug: If you select an entry on a cascade menu (on Win32)drh2002-01-081-0/+9
| | | | | | | then the next time the parent menu is posted, the cascade entry appears active. Also, if you traverse to a disabled menu entry using keystrokes and press ENTER on the disabled entry, then that entry appears active the next time the menu is posted. The same patch fixes both problems.
* * generic/tkBind.c (TkBindFree):dgp2002-01-041-0/+7
| | | | | | * generic/tkGrid.c (ResolveConstraints,CheckSlotData,DestroyGrid): * generic/tkSelect.c (Tk_DeleteSelHandler,TkSelDeadWindow): Replaced Tcl_Free calls with ckfree so that memory debugging is fully supported.
* * test/winButton.test:hobbs2001-12-291-0/+5
| | | | | | * win/tkWinButton.c: added updated patch #463234 which returns the default sizing behavior (not so native), but enables native L&F with negative sizing (-11 for example).
* see ChangeLoghobbs2001-12-281-0/+30
|
* * win/tkWinInit.c (TkpDisplayWarning): Use MessageBoxW in case thehobbs2001-12-281-0/+5
| | | | error displayed has unicode chars. [Bug #485986]
* * generic/tkButton.c (ButtonTextVarProc): guard against beinghobbs2001-12-281-3/+24
| | | | called while the *button/label is being deleted. [Bug #490051]
* * mac/mac/tkMacInit.c:das2001-12-271-0/+9
| | | | | | | | * mac/mac/tkMacResource.r: synced up tkInit features to unix/win: use existing tkInit proc if defined. Added spinbox.tcl resource. Used TclGetEnv() instead of Tcl_GetVar2(interp, env) * mac/tkMacApplication.r: * mac/tkMacLibrary.r: minor version resources cleanup
* Fix date in entry.mdejong2001-12-201-1/+1
|
* * unix/configure: Regen.mdejong2001-12-201-0/+5
| | | | * unix/tcl.m4: Update from Tcl.
* * unix/configure: Regen.mdejong2001-12-191-0/+5
| | | | * unix/tcl.m4: Update from Tcl.
* * unix/configure: Regen.mdejong2001-12-191-0/+6
| | | | | * unix/configure.in: Move EXP file changes over from Tcl configure script to fix AIX build with gcc. [Bug 220955]
* * unix/Makefile.in:mdejong2001-12-191-0/+6
| | | | | * win/Makefile.in: Use $(MAKE) instead of make in the tcltest rule.
* * Corrected test thatdgp2001-12-191-0/+5
| | | | failed on Solaris/CDE due to text scrolling. [Bug 413735]
* Added code to guess the correct default extension from whatever valuedkf2001-12-141-0/+8
| | | | | was selected in the filetypes option menu. Adapted from code by Chris Nelson submitted in Patch #492220.
* * generic/tkText.c:hobbs2001-12-051-0/+6
| | | | | * generic/tkText.h: changed TkTextEditType enums to be prefaced with TK_EDIT_ to prevent name collision.
* * mac/tkMacWm.c: mac implementation of wm stackorderdas2001-12-051-0/+5
|
* Add TK patch 481148 to implement TIP 74, themdejong2001-12-041-0/+27
| | | | | | | | | | | | | | | | | | | | | | | | | | wm stackorder command. * doc/winfo.n: Update documentation for the winfo children command to indicate that top-level windows are not returned in stacking order. * doc/wm.n: Add documentation for wm stackorder. * generic/tkInt.decls (TkWmStackorderToplevel): Add decl for new function. * generic/tkIntDecls.h: Regen. * generic/tkStubInit.c: Regen. * tests/unixWm.test: Add stackorder command to test for wm command usage message. * tests/wm.test: Add new set of tests for generic window manager methods. * unix/tkUnixWm.c (Tk_WmCmd, TkWmStackorderToplevelWrapperMap, TkWmStackorderToplevel): Add unix implementation of new wm stackorder command. * win/tkWinWm.c (Tk_WmCmd, TkWmStackorderToplevelEnumProc, TkWmStackorderToplevelWrapperMap, TkWmStackorderToplevel): Add windows implementation of new wm stackorder command.
* no messagedavygrvy2001-12-031-0/+5
|
* More widget demo improvements.dkf2001-11-301-0/+6
|
* D'oh! Forgot part of the changelog entry...dkf2001-11-291-1/+2
|
* Made tk_setPalette guess a reasonable default for the foreground colour.dkf2001-11-291-0/+6
|
* no messagedavygrvy2001-11-281-0/+5
|
* When a menu is torn off, a new "clone" menu is created which is an exactdrh2001-11-271-0/+5
| | | | | | | | copy of the original. The copy even includes the tearoff bar, though the tearoff bar is not displayed. But even though it wasn't displayed, the tearoff bar on the tearoff menu could be visited using keyboard traversal. This change makes it so that the (invisible) tearoff bar of tearoff menus is no longer visited on keyboard traversal.
* Change the behavior of menus on windows to be more consistent with nativedrh2001-11-271-0/+6
| | | | | windows menus. Disabled menu entries show their active background color on mouseover and keyboard traversal.
* * unix/Makefile.in: Add comments to better describemdejong2001-11-251-0/+10
| | | | | | | | | TCL_EXE and when it should be available. Add rule that prints message about running `make genstubs` when tkStubInit.c is out of date. * win/Makefile.in: Add TCL_TOOL_DIR and TCL_EXE variables to better match the Tcl Makefile. Add genstubs rule so tkSTubInit.c can be regenerated.
* * win/configure: Regen.mdejong2001-11-251-0/+8
| | | | | | | * win/configure.in: Don't AC_SUBST CFLAGS_DEBUG, CFLAGS_OPTIMIZE, or CFLAGS_WARNING since it is now done in SC_CONFIG_CFLAGS. * win/tcl.m4 (SC_CONFIG_CFLAGS): AC_SUBST DL_LIBS, CFLAGS_DEBUG, CFLAGS_OPTIMIZE, and CFLAGS_WARNING.
* Fix up some non-standard ChangeLog entires.mdejong2001-11-251-7/+7
|
* ** upport to 8.4 of mac code changes for 8.3.3 & various newdas2001-11-231-0/+131
| | | | | | ** changes for 8.4, some already backported to 8.3.4 (patch #435660) see ChangeLog for details
* (DestroyText): plugged mem leak when not clearing stack (callewaert)hobbs2001-11-211-0/+7
| | | | (TextGetText): more efficient string size calculation (darley)
* Some neatening up of the widget demo launcher, and a new validated entry demodkf2001-11-191-0/+8
|
* * win/tkWinButton.c (TkpComputeButtonGeometry): corrected thehobbs2001-11-171-0/+13
| | | | | | | default size of Windows buttons to conform to the Windows style. This changes the default size of buttons on Windows. [Patch #463234] (nelson) **** POTENTIAL VISUAL INCOMPATABILITY ****
* no messagedavygrvy2001-11-161-0/+4
|
* tk_setPalette now works correctly under CDE, + an image demo updatedkf2001-11-151-0/+8
|
* Minor improvements to undo (demo,docs&bindings)dkf2001-11-151-0/+8
|
* no messagedavygrvy2001-11-131-0/+11
|
* added TIP#26 text widget undo/redo functionalityhobbs2001-11-131-0/+15
|
* fixed unix tk_chooseColor to allow full 0..255 range selection via mousehobbs2001-11-121-0/+3
|
* Yet more -compound showing off, prompted by Vince Darleydkf2001-11-121-0/+2
|
* More fancying up of the demo suitedkf2001-11-121-0/+6
|
* * unix/Makefile.in:mdejong2001-11-111-0/+6
| | | | | * win/Makefile.in: Add "make gdb" target. This target can run wish inside either gdb or insight.
* * win/tkWinX.c (TkWinXInit): added InitCommonControlsEx call.hobbs2001-11-101-0/+16
| | | | | | | | | * win/rc/tk.rc: * win/rc/wish.rc: * win/rc/wish.exe.manifest: added resources that specify using v6 of the MS Common Controls library when available (WinXP+). This enables use of the themeable widgets (like scrollbars) to be used in Tk. [Patch #478933]
* * unix/configure:mdejong2001-11-091-0/+5
| | | | * unix/tcl.m4: Update from Tcl.
* * unix/Makefile.in:mdejong2001-11-091-0/+8
| | | | | | | Avoid adding libc to the LIBS and WISH_LIBS variables since it is not needed when linking with CC. If required when linking with LD it should be done on a case by case basis in tcl.m4.
* Minor fixes from wohnivec@iol.cz Thanks!dkf2001-11-051-0/+8
|
* Improvements to widget demo (integrates/demonstrates the new 8.4 widgets)dkf2001-10-301-0/+8
|
* More demo upgrades derived from 8.3.4 and using new featuresdkf2001-10-301-0/+9
|
* More demo upgrades derived from 8.3.4dkf2001-10-291-0/+6
|