summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* * 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.
* Stop compiler warningdkf2004-10-261-1/+2
|
* Fix incorrect expected error messagedkf2004-10-261-2/+2
|
* Fix stupid brokenness inroduced by me. D'oh!dkf2004-10-251-2/+2
|
* Add -hide and -stretch options to panedwindow widgets. (TIPs 177 and 179)dkf2004-10-247-132/+591
| | | | Thanks to Brian Griffin for developing these! [Patch 983886]
* * win/tkWinWm.c (UpdateWrapper): pass SWP_NOOWNERZORDER tohobbs2004-10-212-2/+9
| | | | | SetWindowPos when maintaining win Z order, to prevent parent from flashing (adjusting Z order).
* TIP #204 "Virtual Events for Keyboard Traversal" (patch #976928)jenglish2004-10-194-9/+28
|
* Rename all XBM format files to be called *.xbm instead of *.bmp [Bug 733835]dkf2004-10-1927-52/+63
|
* remove debug codevincentdarley2004-10-181-2/+1
|
* Added missing changelog entrydkf2004-10-111-0/+4
|
* updated as of en.msg 1.14bagnonm2004-10-111-17/+21
|
* Swedish message catalog from Mats Bengtsson.bagnonm2004-10-111-0/+74
|
* Fill in missing part of sentence in [wm attributes]dkf2004-10-082-11/+17
|
* Flagged TIP implementation points more clearlydkf2004-10-081-0/+6
|
* TIP #205 "Use pkgconfig Database to Register Xft Support".jenglish2004-10-082-1/+23
| | | | (xref: patch #971980)
* add iconphoto notes about recommended usagehobbs2004-10-071-3/+5
|
* silence compiler warningsdgp2004-10-061-5/+5
|
* * doc/wm.n (iconphoto): added support for Tk photohobbs2004-10-059-20/+477
| | | | | | | | * generic/tkInt.h (TkDisplay): images as titlebar icons. TIP #159 * win/tkWinWm.c (WmIconphotoCmd): wm iconphoto ?-default? image1 ... * macosx/tkMacOSXWm.c (WmIconphotoCmd): Implemented for Win/Unix, * unix/tkUnixWm.c (WmIconphotoCmd): stubbed out for OS X. * tests/wm.test, tests/unixWm.test, tests/winWm.test: [Bug 815751]
* fix init warningshobbs2004-10-056-15/+22
|
* clarify wm -alpha docshobbs2004-09-281-6/+6
|
* * generic/tkCursor.c: Add missing initialization in debug routine.dgp2004-09-242-1/+8
|
* more robust text widget display testsvincentdarley2004-09-242-6/+9
|
* fix to mousewheel scrollingvincentdarley2004-09-242-2/+17
|
* * win/tkWinX.c: Added declaration for advapi32 now that this filepatthoyts2004-09-242-1/+7
| | | | uses the Reg* functions (req'd for nmake build system).
* text widget search fixvincentdarley2004-09-233-2/+55
|
* * win/tkWinInt.h (TkWinDisplayChanged): added declhobbs2004-09-234-70/+228
| | | | | | | | * win/tkWinX.c (TkWinDisplayChanged, TkpOpenDisplay): Correctly * win/tkWinWm.c (InvalidateSubTreeDepth, WmProc): handle color and screen resolution changes. Tested for 16/24/32 bpp changes on XP. May need more fixes for 8bpp switch, use of special colormaps, or other special palette handling cases. [Bug 223689]
* * generic/tkInt.decls: Add decl for TkWinGetPlatformTheme.mdejong2004-09-217-30/+130
| | | | | | | | | | | | | | | | It is only defined under Win32. * generic/tkIntPlatDecls.h: Regen. * generic/tkStubInit.c: Regen. * win/tkWinInt.h: Define TK_THEME_WIN_CLASSIC and TK_THEME_WIN_XP. * win/tkWinMenu.c (DrawMenuEntryAccelerator, DrawMenuEntryLabel): Draw a disabled 3D text highlight for the accelerator only with the Win95/98 look. Same goes for the menu entry text. * win/tkWinX.c (TkWinGetPlatformId, TkWinGetPlatformTheme): Automatically detect the Windows theme in use and return either TK_THEME_WIN_CLASSIC or TK_THEME_WIN_XP when the TkWinGetPlatformTheme function is invoked. [Patch 866194]
* * win/tkWinWm.c: Rework WS_EX_LAYERED and LWA_ALPHAmdejong2004-09-212-3/+10
| | | | defines so that compiling with mingw works again.
* * win/tkWinWm.c (UpdateWrapper, WmAttributesCmd): handle attributehobbs2004-09-212-41/+47
| | | | | settings prior to window mapping and resort to more forceful wrapper update again for -toolwindow (to remove it from taskbar).