summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* 2005-06-02 Jim Ingham <jingham@apple.com>wolfsuit2005-06-032-23/+52
| | | | | | | | | | | Another patch from M. Kirkham. * macosx/tkMacOSXScrlbr.c (ThumbActionProc, ScrollBarBindProc): Record the first mouse down point, and compute differences from that, rather than getting the mouse down each time through the loop. The old method would get fooled if you moved the mouse less than a text line height in the text widget. [Bug 1083728]
* update changes for 8.4.10 release, note tag datehobbs2005-06-022-12/+20
|
* updated changes for Tk 8.4.10 release.dgp2005-06-021-1/+77
|
* * macosx/tkMacOSXWm.c (TkWmStackorderToplevelWrapperMap, ↵mdejong2005-06-014-16/+33
| | | | | | | | | | | 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]
* * generic/tkPanedWindow.c, tests/panedwindow.test: batch of fixeshobbs2005-05-313-210/+411
| | | | | | | to panedwindow from Daniel South. Improved auto-size to fit internal windows, fixed sash placement at edge of pane, fixed calculation of stretch amount for internal windows. [Bug 1124198 1161543 1054117 1010941 795869 690169 1192323]
* * generic/tkMenu.c (MenuCmd): create event handler earlier tohobbs2005-05-312-37/+19
| | | | | ensure proper destruction of menu through DestroyNotify. [Bug 1159367]
* more elaborate variant of getting first prompt shown to avoidhobbs2005-05-311-2/+14
| | | | a puts call.
* * library/console.tcl (::tk::ConsoleInit): print out first prompthobbs2005-05-302-1/+12
| | | | and swallow the extra "% " that comes once from Tcl on Windows.
* * macosx/Wish.pbproj/project.pbxproj: added missing FRAMEWORK definesdas2005-05-292-1/+4
| | | | introduced with configure/make based build.
* * macosx/tkMacOSXInit.c:das2005-05-293-4/+7
| | | | * macosx/tkMacOSXNotify.c: fixed warnings.
* * unix/configure.in: skip X11 configure checks when building tk_aqua.das2005-05-293-37/+46
| | | | * unix/configure: autoconf-2.13
* * README: Bumped patchlevel to 8.4.10hobbs2005-05-279-18/+26
| | | | | | | * generic/tk.h: * macosx/Wish.pbproj/project.pbxproj: * unix/configure, unix/configure.in, unix/tk.spec: * win/configure, win/configure.in:
* change tk_popup to have sticky menustmh2005-05-272-2/+11
|
* * macosx/tkMacOSXInit.c (TkpInit): fixed resource file extractiondas2005-05-265-127/+90
| | | | | | | | | | | | | from __tk_rsrc section to work with non-prebound .dylib and .bundle. * macosx/Makefile: corrected EMBEDDED_BUILD check, use separate tcl and tk version vars to properly support tk/x11 framework version overriding, rewrite tkConfig.sh when overriding tk version, corrected Wish.app symlink in tk build dir. * unix/configure.in: corrected framework finalization to softlink stub library to Versions/8.x subdir instead of Versions/Current. * unix/configure: autoconf-2.13
* * unix/configure, unix/configure.in: ensure false Tcl.framework ishobbs2005-05-253-17/+22
| | | | only created with --enable-framework
* * unix/Makefile.in (install-libraries): protect possible emptyhobbs2005-05-252-4/+9
| | | | list in for with list= trick for older shells.
* * macosx/Makefile:das2005-05-2411-592/+1583
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * macosx/README: * macosx/Tk-Info.plist.in (new file): * macosx/Wish-Info.plist.in (new file): * unix/Makefile.in: * unix/configure.in: * unix/tcl.m4: * unix/tkUnixInit.c: moved all Darwin framework and TkAqua build support from macosx/Wish.pbproj and macosx/Makefile into the standard unix configure/make buildsystem, the project and macosx/Makefile are no longer required to build Tk.framework and/or TkAqua. TkAqua is now enabled by the --enable-aqua configure option, and static and non-framework builds of TkAqua are now available via the standard configure switches. Tk/X11 can also be built as a framework. The macosx/Makefile now wraps the unix buildsystem and no longer uses the projects, embedded builds are still only available via this Makefile, but for other builds it is not longer required (but its current functionality is still available for backwards compatibility). The projects currently do not call through to the Makefile to build (unlike Tcl.pbproj) so project builds may differ from makefile builds. Due to issues with spaces in pathnames, 'Wish Shell.app' has been renamed to 'Wish.app', the macosx/Makefile installs backwards compatibility symlinks for the old name. * macosx/tkMacOSXInit.c (TkpInit): added support for Tk resource file in non-framework and static builds: the resource file is copied into a __tk_rsrc MachO segment of the library or executable at link time and extracted into a temporary location at initialization. * unix/configure: autoconf-2.13
* * generic/tkTest.c: disable commands not available on TkAqua.das2005-05-241-4/+4
|
* * macosx/Wish.pbproj/project.pbxproj:das2005-05-242-10/+8
| | | | * macosx/tkAboutDlg.r: updated copyright years to 2005.
* From Michael Kirkham:wolfsuit2005-05-154-7/+26
| | | | | | | | | | | | | * macosx/tkMacOSXMenu.c (TkpConfigureMenuEntry): Thinko in clearing the ENTRY_ACCEL_MASK before re-parsing it. [Tk Bug 1012852] * macosx/tkMacOSXScrlbr.c (UpdateControlValues): Don't set the control value BEFORE setting the min and max or the control manager will reset it for you. [Tk Bug 1202181] * macosx/tkMacOSXXStubs.c (TkMacOSXXGetPixel, TkMacOSXXPutPixel): Restore the port to what it was before putting we were called. [Tk Bug 1202223]
* * macosx/tkMacOSXInit.c:das2005-05-1416-1315/+646
| | | | | | | | | | | | | | | | | | | | | | | | | | | | * 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.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/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.13
* backport of text widget bug fixvincentdarley2005-05-133-3/+19
|
* Updated out-of-date references to "Tk_GetBoolean"dgp2005-05-122-6/+6
|
* * unix/configure: regenhobbs2005-05-074-132/+256
| | | | | | * unix/configure.in: add AC_C_BIGENDIAN check * unix/tcl.m4: correct Solaris 10 (5.10) check and add support for x86_64 Solaris cc builds.
* * macosx/tkMacOSXNotify.c: syncd with tclUnixNotfy.c changes sincedas2005-04-265-395/+459
| | | | | | | | | | | | | | | | | | | | 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. (SC_MISSING_POSIX_HEADERS): added caching of dirent.h check. (SC_TCL_64BIT_FLAGS): fixed 'checking for off64_t' message output. * unix/configure: autoconf-2.13
* * unix/tkUnixFont.c (FontMapLoadPage): reorder char[] decls tohobbs2005-04-122-3/+6
| | | | avoid possible segv. Minimal fix for [Bug 1122671]
* * library/tkfbox.tcl (::tk::dialog::file::): fix typeMenuLab ref.hobbs2005-04-123-14/+61
| | | | | | | | 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-092-12/+15
| | | | versions + other small fixes/cleanup.
* * macosx/tkMacOSXEntry.c (ComputeIncDecParameters): manually definedas2005-04-092-0/+9
| | | | 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-092-5/+8
| | | | tkEntry.h that confused 10.2 PBX.
* * unix/tcl.m4 (Darwin): added -single_module linker flag todas2005-04-093-4/+10
| | | | | TCL_SHLIB_LD_EXTRAS and TK_SHLIB_LD_EXTRAS. * unix/configure: autoconf-2.13
* * win/tcl.m4, win/configure: do not require cygpath in macros tohobbs2005-03-303-48/+59
| | | | allow msys alone as an alternative.
* Add native drawing for Entry and Spinbox widgets.wolfsuit2005-03-257-414/+2217
|
* Set the default linewidth for new gc's to 1 not 0. Some extensions seemwolfsuit2005-03-252-2/+7
| | | | to rely on this.
* Updated for OpenBSD and regenerated the configure scriptpatthoyts2005-03-153-155/+208
|
* Fix for 1124237 and the mysterious "sometimes buttons don't draw" bug.wolfsuit2005-03-126-33/+75
|
* Fix for bug 1160025.wolfsuit2005-03-102-12/+30
|
* * win/makefile.vc: clarify necessary defined vars that can comehobbs2005-03-082-14/+25
| | | | from MSVC or the Platform SDK.
* * win/tkWinWm.c (WinSetIcon): fix GCLP_ICONSM -> GCLP_HICONSM.hobbs2005-03-081-2/+2
|
* * win/tkWinX.c (GenerateXEvent): correct %A translation onhobbs2005-02-282-8/+24
| | | | MouseWheel [Bug 1118340]
* * macosx/tkMacOSX.h: fixed incorrect inclusion of internal header.das2005-02-243-10/+13
| | | | * macosx/tkMacOSXNotify.c: corrected included headers.
* * macosx/tkMacOSXDialog.c (Tk_GetSaveFileObjCmd, NavServicesGetFile):das2005-02-222-44/+31
| | | | | | fixed encoding problems with -initialfile & -filetypes and corrected potential buffer overrun with -initialdir/-initialfile. [Bug 1146057]
* Encourage missing-DISPLAY errors to be early in run of test suite.dkf2005-02-142-1/+8
|
* * library/panedwindow.tcl (::tk::panedwindow::Cursor): checkhobbs2005-02-122-2/+6
| | | | window existence on delayed call. [Bug 949792]
* * doc/text.n: note 'image' key in 'dump' command. [Bug 1115907]hobbs2005-02-112-4/+6
|
* * win/tkWinWm.c (TkWinGetIcon): fix toplevel retrieval forhobbs2005-02-112-10/+15
| | | | determining icon ref (potential crash). [Bug 1105738]
* * generic/tkCanvBmap.c (ConfigureBitmap, ComputeBitmapBbox): Fixedhobbs2005-02-112-49/+66
| | | | | | possible crash with disabled bmap and bbox handling [Bug 1119460] (BitmapToPostscript): made aware of various bitmap types (DisplayBitmap): remove unused fg/bgColor refs
* * unix/Makefile.in: remove SHLIB_LD_FLAGS (only for AIX, inlinedhobbs2005-02-104-257/+189
| | | | | | * 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.
* Add es_ES-specific localization. [Bug 1111213]dkf2005-01-312-0/+10
|
* correct autoconf generation for sol64-gcc supporthobbs2005-01-292-8/+8
|