summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* * unix/tkUnixButton.c (TkpDisplayButton): constrain coords tohobbs2004-12-023-4/+69
| | | | | | Tk_RedrawImage to display only portion that is valid. * generic/tkImgPhoto.c (ImgPhotoDisplay): add X error suppression around XGetImage to prevent app abort. [Bug 979239]
* Tk_DrawChars: Check for short integer overflow in x,y coordinatesjenglish2004-11-282-3/+7
| | | | [Fixes: #942320 "Tk, Xft, text and long lines"]
* no messagedavygrvy2004-11-261-0/+5
|
* * win/makefile.vc: Shell targets needed more stack space. [Bug 1066755]davygrvy2004-11-261-4/+4
|
* Whitespace policedkf2004-11-221-8/+8
|
* fix a platform-sensitive testvincentdarley2004-11-222-3/+4
|
* removed backslash quotevincentdarley2004-11-201-2/+2
|
* made test less timing sensitivevincentdarley2004-11-202-1/+4
|
* fix to test's platform sensitivitiesvincentdarley2004-11-202-2/+8
|
* * macosx/Wish.pbproj/project.pbxproj: reverted earlier changes fordas2004-11-191-3/+3
| | | | tclConfig.h changes to tcl, since those have been reverted for now.
* Classic sed doesn't support | in REs.rmax2004-11-191-2/+5
|
* changed the internal name to pack-old to avoid a name clash with the new ↵rmax2004-11-191-2/+2
| | | | pack manpage.
* * macosx/Wish.pbproj/project.pbxproj: reverted earlier changes fordas2004-11-192-3/+14
| | | | tclConfig.h changes to tcl, since those have been reverted for now.
* some seds don't support comments :(rmax2004-11-181-8/+21
|
* generated configure and fixed manpage installatonrmax2004-11-184-98/+299
|
* 2004-11-18 Reinhard Max <max@suse.de>rmax2004-11-186-1240/+121
| | | | | | | | | * unix/tcl.m4 (SC_CONFIG_MANPAGES): Applied an improved version of * unix/configure.in: patch #996085, that introduces * unix/Makefile.in: --enable-man-suffix. * unix/installManPage: added * unix/mkLinks: removed
* * generic/tkCanvWind.c (ConfigureWinItem): unmap windowshobbs2004-11-172-3/+18
| | | | immediately when state hidden is requested. [Bug 982248]
* see changeshobbs2004-11-171-2/+13
|
* * generic/tkCanvImg.c (ImageToPostscript): don't try ps generationhobbs2004-11-171-6/+8
| | | | of canvas image item without image specified. [Bug 1032300]
* * generic/tkPanedWindow.c (Tk_PanedWindowObjCmd): set save_under Xhobbs2004-11-171-1/+6
| | | | attr to prevent expose events when moving sash. [Bug 1036963]
* * library/console.tcl (::tk::console::ExpandVariable): correcthobbs2004-11-171-2/+2
| | | | array keyname expansion. [Bug 1004508] (bold)
* Remove extra space after {BUILD_PRODUCTS.wolfsuit2004-11-171-2/+2
|
* improved documentation of -tabsvincentdarley2004-11-172-2/+8
|
* * library/msgs/it.msg: Updated Italian message catalog.dgp2004-11-162-6/+11
| | | | Thanks to Roberto Ugoccioni [Bug 1063675].
* * macosx/Wish.pbproj/project.pbxproj:das2004-11-168-30/+4390
| | | | | | | | | | | | | | | * macosx/buildTkConfig.tcl: fixes for tclConfig.h changes. * macosx/Wish.pbproj/project.pbxproj: fixed references to renamed bitmap files. * macosx/Wish.xcode/project.pbxproj (new): * macosx/Wish.xcode/default.pbxuser (new): * macosx/Wish-Info.plist (new): * macosx/Tk-Info.plist (new): added new Xcode 1.5 project using native targets, made possible by tclConfig.h changes. * generic/tk.h: added version number change comments for new files.
* fix to one multi-line search bugvincentdarley2004-11-153-3/+17
|
* Preparatory works for making Tk define its parameters via a config header.dkf2004-11-153-75/+121
|
* * macosx/tkMacOSXXStubs.c: implemented XGetGeometry().das2004-11-132-4/+28
|
* * generic/tkCmds.c (Tk_TkObjCmd): use correct screen data whenhobbs2004-11-122-9/+12
| | | | -displayof arg is passed to [tk scaling]. [Bug 800178]
* * doc/SetOptions.3:das2004-11-124-55/+92
| | | | | | | | * doc/text.n: fixed *roff errors uncovered by running 'make html'. * macosx/tkMacOSXFont.c (Tk_MeasureChars,Tk_DrawChars,etc): Make sure that the lastSubFontPtr remains valid even when the subfont array is reallocated. [Bug 618872]
* * generic/tkEvent.c (InvokeInputMethods): Call XSetICFocusrmax2004-11-112-10/+22
| | | | | whenever the window receives focus. This fixes bug #905830 but avoids #1000051.
* * generic/tkMain.c:das2004-11-1116-626/+1060
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * macosx/tkMacOSXAppInit.c (removed): * macosx/Wish.pbproj/project.pbxproj: * macosx/tkMacOSXInit.c: * macosx/tkMacOSXInt.h: changes to make TkAqua dynamically loadable, enabling [package require Tk] from tclsh. Startup code from tkMacOSXAppInit.c moved into tkMacOSXInit.c, added code that notifies the window server that an unbundled executable is a full GUI application after loading Tk. [Patch 1035348] * doc/wm.n: documented [wm attributes] on Mac OS X. [Bug 606665] * macosx/tkMacOSXWm.c: implemented TIP 222 [wm attributes -alpha] on Mac OS X. [Patch 892194] WmIconbitmapCmd: adopted FSRef changes from [wm atttrs -titlepath]. * macosx/tkMacOSXSubwindows.c: synced spacing/formatting with core-8-4-branch. * generic/tkRectOval.c: * macosx/README: * macosx/tkMacOSXDefault.h: * macosx/tkMacOSXDraw.c: * macosx/tkMacOSXInit.c: * macosx/tkMacOSXInt.h: * macosx/tkMacOSXMenu.c: * macosx/tkMacOSXWm.c: forward port from core-8-4-branch of Jim's and my changes for CG drawing and [wm attributes] (corresponds to 8.4 changes dating from 09-18, 07-27, 07-24). * macosx/tkMacOSXMouseEvent.c: endianness fixes. * macosx/Wish.pbproj/project.pbxproj: corrected path to html help inside framework. * macosx/Makefile: prevent parallel make from building several targets at the same time.
* fix to MacOSX compound button layoutvincentdarley2004-11-093-5/+27
|
* Added Keith Vetter's tkGoldberg as an animation demo. Thanks Keith!dkf2004-11-083-1/+1742
|
* More animation demosdkf2004-11-074-3/+304
|
* doc/frame.n: Added some info for -width/-height options. [Bug 1055423]pspjuth2004-11-072-7/+18
|
* Made handling of ^ a bit more consistent inpspjuth2004-11-073-22/+111
| | | | | corner cases. This makes ^ work without any widgets in the same command. [Bug 962589]
* Added a demo of simple animation to the widget tour.dkf2004-11-073-1/+169
|
* * tests/button.test: Update expected results to account for moredgp2004-11-032-14/+25
| | | | verbose errorinfo from errors in variable traces [Tcl Bug 572164]
* * dialog.test (dialog-1.1): Update expected result to changesdgp2004-11-012-3/+8
| | | | in the error messages produced by procs.
* * tests/wm.test: Add Win32 test cases for attributesmdejong2004-10-293-11/+35
| | | | | | subcommand. * win/tkWinWm.c (WmAttributesCmd): Fixup broken option processing logic for attributes subcommand.
* Minor format fixdkf2004-10-291-3/+3
|
* * win/tkWin32Dll.c (DllMain, _except_dllmain_detach_handler):mdejong2004-10-282-8/+57
| | | | | | | | Rework pushing of exception handler function pointer so that compiling with gcc -O3 works. Remove empty function call to avoid compiler warning. Mark the DllMain function as noinline to avoid compiler error from duplicated asm labels in generated code.
* * unix/tkUnixScale.c (DisplayHorizontalValue): Fix for #220927 bypatthoyts2004-10-282-2/+11
| | | | Michael Schlenker to keep the labels within the window.
* More minor doc fixesdkf2004-10-289-138/+182
|
* Assorted minor documentation fixesdkf2004-10-2816-75/+108
|
* * win/tkWinX.c: Signature for tkWinXCleanup needed to bedavygrvy2004-10-275-11/+21
| | | | | | | * generic/tkInt.decls: changed so it matches the Tcl_ExitProc * generic/tkIntPlatDecls.h: typedef to avoid a bad-style cast. * win/makefile.vc: Force TCL_LIBRARY envar when calling tclsh
* Fix silly typodkf2004-10-261-2/+2
|
* * win/tkWinRegion.c (TkpBuildRegionFromAlphaData): Fixed syntax errorpatthoyts2004-10-263-4/+9
| | | | * generic/tkImgPhoto.c (Tk_PhotoPutBlock): Removed unreferences vars.
* Attempt to fix [Bug 919066] by allowing the code that creates the regiondkf2004-10-266-37/+212
| | | | much more knowledge of the platform functions available to it.