Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | [Patch 2088597]: Stop scrollbars from getting too small at the end. | dkf | 2009-10-07 | 2 | -11/+15 |
| | |||||
* | [Bug #2860827] avoid 3D effects with user-specified backgrounds | patthoyts | 2009-10-05 | 2 | -9/+21 |
| | | | | | | | The default disabled text is embossed on Windows. But this looks poor when a non-default background color is in use. This patch disables the embossed effect for buttons and labels when the background is non- standard. | ||||
* | [Bug 2799589] added a test for grab on deleted window which | patthoyts | 2009-09-30 | 2 | -1/+49 |
| | | | | causes crashes on windows (fixed already). | ||||
* | Correct generation of grayscale data from an image. Reported by Keith Vetter | dkf | 2009-09-25 | 2 | -12/+16 |
| | | | | on comp.lang.tcl. | ||||
* | Bug fix in grid/pack collision detect. | pspjuth | 2009-09-18 | 4 | -3/+43 |
| | | | | Faulty slave was not properly blocked from slave list. [Bug 2859912] | ||||
* | * generic/tkMenuDraw.c (TkPostSubmenu): Fix reposting of submenu in | hobbs | 2009-09-14 | 3 | -6/+35 |
| | | | | | | | * win/tkWinMenu.c (TkWinHandleMenuEvent): torn off Windows menu. [Bug 873613] (DrawMenuEntryArrow): Draw Win menu arrow after being torn off. [Bug 873608] | ||||
* | Put the armouring in the right place. | dkf | 2009-09-10 | 1 | -9/+14 |
| | |||||
* | Improve comment following request by Joe English | dkf | 2009-09-09 | 1 | -2/+3 |
| | |||||
* | Try to make Tk more resilient in the face of Xft allocation failures. | dkf | 2009-09-09 | 3 | -3/+36 |
| | |||||
* | * generic/tkFocus.c: fix potential null dereference flagged by clang | das | 2009-09-07 | 11 | -18/+55 |
| | | | | | | | | | | | | | | * generic/tkMenu.c: static analyzer. * generic/tkTextBTree.c: * generic/tkTextDisp.c: * generic/tkTextIndex.c: * generic/tkConsole.c: silence false positives from clang static * generic/tkTest.c: analyzer about potential null dereference. * generic/tkText.c: * generic/tkTextBTree.c: * generic/tkTextTag.c: * generic/tkVisual.c: | ||||
* | make support for clang static analyzer safer & cleaner | das | 2009-09-07 | 1 | -7/+9 |
| | |||||
* | Corrected descriptive text | dkf | 2009-09-04 | 1 | -2/+2 |
| | |||||
* | Finish purging remains of old XID hacks (a bunch of unused/write-only fields in | dkf | 2009-09-04 | 3 | -40/+9 |
| | | | | the TkDisplay structure...) | ||||
* | Improve consistency of formatting of comments and function decls | dkf | 2009-09-04 | 1 | -61/+57 |
| | |||||
* | workaround llvm LTO bug on ppc | das | 2009-08-25 | 1 | -1/+2 |
| | |||||
* | guard clang analyzer Tcl_Panic annotation with #ifndef USE_TCL_STUBS | das | 2009-08-25 | 1 | -2/+5 |
| | |||||
* | [Bug 1909931]: Add support for server-interpreted access control addreses. | dkf | 2009-08-25 | 2 | -22/+71 |
| | |||||
* | Correct bindings for [tk_messageBox]. | dkf | 2009-08-24 | 2 | -4/+9 |
| | |||||
* | Better formatting | dkf | 2009-08-24 | 1 | -12/+12 |
| | |||||
* | * generic/tkInt.h: Annotate Tcl_Panic as noreturn for clang static | das | 2009-08-24 | 2 | -4/+5 |
| | | | | analyzer in PURIFY builds, replacing preprocessor/assert technique. | ||||
* | * carbon/Wish.xcode/project.pbxproj: remove references to obsolete | das | 2009-08-24 | 2 | -6/+2 |
| | | | | * carbon/Wish.xcodeproj/project.pbxproj: prolog.ps file. | ||||
* | * unix/configure: autoconf-2.59 | das | 2009-08-24 | 1 | -0/+1 |
| | |||||
* | * macosx/Wish.sdef (new file): Install and enable sdef file | das | 2009-08-24 | 7 | -6/+85 |
| | | | | | | | | | | * macosx/Wish-Info.plist.in: into Wish application bundle, * macosx/Tk.xcode/project.pbxproj: describing TkAqua apple event * macosx/Tk.xcodeproj/project.pbxproj: support for use by AppleScript. * unix/Makefile.in: (replaces functionality of * unix/configure.in: 'aete' resource removed with Cocoa port & fixes AppleScript issues reported on tcl-mac) | ||||
* | * macosx/tkMacOSXHLEvents.c (ScriptHandler): Fix "do script" apple | das | 2009-08-24 | 2 | -92/+60 |
| | | | | | | * carbon/tkMacOSXHLEvents.c (ScriptHandler): event handler issues on recent OS X releases by using AE coercion to 'utf8' for text data and to 'fsrf' for alias data. (reported by Youness Alaoui on tcl-mac) | ||||
* | * macosx/tkMacOSXDraw.c (TkMacOSX{Setup,Restore}DrawingContext): | das | 2009-08-24 | 1 | -1/+3 |
| | | | | | | Disable window flushing during Tk drawing to avoid immediate flush of NSView-based native widgets on draw. (fixes drawing performance issue reported by Youness Alaoui on tcl-mac) | ||||
* | * macosx/tkMacOSXWindowEvent.c: Allow WM_DELETE_WINDOW handlers to | das | 2009-08-24 | 1 | -5/+10 |
| | | | | | prevent window closure by generating WM destroy event earlier (from window delegate's -windowShouldClose:). [Bug 2821084] | ||||
* | * generic/tkBind.c (HandleEventGenerate): Don't generate events for | das | 2009-08-24 | 1 | -2/+13 |
| | | | | windows that don't exist yet (fixes TkAqua testsuite crash). | ||||
* | Give an error if grid and pack are used in the same master. [Patch 2475855] | pspjuth | 2009-08-19 | 10 | -10/+431 |
| | |||||
* | * macosx/tkMacOSXWm.c: Workaround for textured windows being draggable | das | 2009-08-14 | 2 | -1/+18 |
| | | | | from opaque content areas. [Bug 2824538] (walzer) | ||||
* | * macosx/tkMacOSXDraw.c: Avoid exception in XCopyArea() when copying | das | 2009-08-14 | 1 | -2/+3 |
| | | | | | from toplevel that has never been mapped. (reported by Youness Alaoui on tcl-mac) | ||||
* | Eliminate more gcc warnings | nijtmans | 2009-08-10 | 4 | -30/+45 |
| | |||||
* | Eliminate various gcc warnings | nijtmans | 2009-08-09 | 8 | -116/+185 |
| | | | | include <vssym32.h> only when available | ||||
* | Make the pendulum demo cope with resizing more gracefully. | dkf | 2009-08-08 | 2 | -15/+23 |
| | |||||
* | Small updates for minor issues | dkf | 2009-08-06 | 1 | -41/+34 |
| | |||||
* | Fix word-wrapping of non-breaking spaces in the text widget to work reliably. | dkf | 2009-08-04 | 2 | -12/+28 |
| | |||||
* | eliminate various gcc and msvc compiler warnings | nijtmans | 2009-08-02 | 12 | -52/+84 |
| | |||||
* | Oops; forgot to fix a spot for 64-bit | dkf | 2009-08-01 | 1 | -2/+2 |
| | |||||
* | Don't assume that we're on little-endian clients. [Bug 2830420] | dkf | 2009-08-01 | 2 | -26/+27 |
| | |||||
* | Reword so that the modern API is presented as preferred. | dkf | 2009-07-27 | 2 | -24/+29 |
| | |||||
* | Slight clarification. | dkf | 2009-07-26 | 5 | -33/+40 |
| | |||||
* | Corrected description of acceptable join styles. Spotted by Emiliano Gavilan. | dkf | 2009-07-26 | 2 | -3/+8 |
| | |||||
* | Added incompat flag | dkf | 2009-07-23 | 1 | -0/+2 |
| | |||||
* | Fix [Bug 2441988]. Also squelch use of TkCopyAndGlobalEval, we can do better! | dkf | 2009-07-23 | 4 | -175/+269 |
| | |||||
* | [Bug 2496114]: Ensure that focus desynchronization doesn't cause a crash. | dkf | 2009-07-22 | 2 | -1/+16 |
| | |||||
* | Corrected drawing of rotated underlines. [Bug 2356057] | dkf | 2009-07-21 | 2 | -98/+103 |
| | |||||
* | Fix [Bug 2328657] by explicitly excluding hacky zero-char chunks from ↵ | ferrieux | 2009-07-20 | 2 | -4/+11 |
| | | | | intersection computation. Might deserve generalization to other tests. | ||||
* | More fixes for [Bug 2824378] | dkf | 2009-07-20 | 1 | -12/+13 |
| | |||||
* | Fix [Bug 2824378] by correcting expected output. | dkf | 2009-07-20 | 2 | -9/+12 |
| | |||||
* | A slightly more efficient placing | dkf | 2009-07-18 | 1 | -3/+3 |
| | |||||
* | Fix the transfer of large binary data. I hate INCR selections transfers... | dkf | 2009-07-18 | 2 | -10/+18 |
| |