Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Rename DoWarpWrtWin --> TkDoWarpWrtWin | fvogel | 2020-06-02 | 3 | -5/+5 |
| | |||||
* | Remove function DoWarpWrtScreen which was called from only one place, and ↵ | fvogel | 2020-06-02 | 2 | -38/+23 |
| | | | | add comments. | ||||
* | Rename DoWarp to DoWarWrtScreen, add function DoWarpWrtWin to factorize the ↵ | fvogel | 2020-06-02 | 3 | -34/+53 |
| | | | | code a bit. | ||||
* | Remove the TK_DISPLAY_IN_WARP machinery completely. | fvogel | 2020-06-02 | 4 | -52/+10 |
| | |||||
* | Warping with respect to the whole screen is now synchronous as well (it is ↵ | fvogel | 2020-06-02 | 1 | -10/+7 |
| | | | | no longer executed as an idle task). This allows to remove some further update/after commands in tests. | ||||
* | A more robust approach to warping with respect to a window: make the call to ↵ | fvogel | 2020-06-02 | 2 | -15/+56 |
| | | | | TkpWarpPointer happen in TkPointerEvent instead of as an idle event. This allows to remove some update/after commands in tests since warping with respect to a window is now synchronous (it happens before event generate $win <Motion> -warp 1 ... returns). | ||||
* | Use TkGrabState() in function TestgrabObjCmd() instead of ↵ | fvogel | 2020-02-18 | 1 | -5/+4 |
| | | | | dispPtr->grabWinPtr to make the code clearer and the interface cleaner. | ||||
* | Refine test bind-35.1 once more since [grab current] returns the ↵ | fvogel | 2020-02-17 | 1 | -0/+79 |
| | | | | eventualGrabWin while we're interested in the grabWin instead. | ||||
* | Merge 8.6 | jan.nijtmans | 2020-02-17 | 18 | -97/+94 |
|\ | |||||
| * | A few missing (internal) "const" modifiers. | jan.nijtmans | 2020-02-14 | 3 | -4/+4 |
| | | |||||
| * | Use (more efficient) Tcl_GetIntFromObj() in stead of Tcl_GetInt() in a few ↵ | jan.nijtmans | 2020-02-12 | 3 | -32/+31 |
| | | | | | | | | places where it makes sense. | ||||
| * | According to documentation, maxBytes is exclusing the end 0-byte, so ↵ | jan.nijtmans | 2020-02-10 | 1 | -2/+2 |
| | | | | | | | | previous commit was a little too strict | ||||
| * | Don't forget closing 0-byte | jan.nijtmans | 2020-02-10 | 1 | -2/+3 |
| | | |||||
| * | Fix (harmless) gcc-9 warning | jan.nijtmans | 2020-02-10 | 1 | -1/+1 |
| | | |||||
| * | (cherry-pick): Don't panic for "Wild GenericEvent"'s: Just filter out all ↵ | jan.nijtmans | 2020-02-05 | 3 | -10/+11 |
| | | | | | | | | | | | | events Tk doesn't know about. (cherry-pick): Protect better against possible confusion between XGenericEvent's and (Tcl-specific) XVirtualEvent's: If "name" == NULL, assume it's a XGenericEvent, so don't crash on that just ignore. Also don't use "virtual" as variable name. | ||||
| * | Merge 8.5 | jan.nijtmans | 2020-02-03 | 1 | -17/+4 |
| |\ | |||||
| | * | Put realEventMasks and virtualEventMasks together in a single table: ↵ | jan.nijtmans | 2020-02-03 | 1 | -17/+4 |
| | | | | | | | | | | | | VirtualEvent = MappingNotify + 1, so it's fixed anyway. Other places in Tk code already depend on that, so we can here. | ||||
| * | | fixed segfault [a196fb11]: wrong handling in ClearLookupTable (if object is ↵ | sebres | 2020-01-31 | 1 | -2/+3 |
| | | | | | | | | | | | | not NULL) as well as working on deleted table (in DeleteVirtualEventTable). | ||||
| * | | Don't use "bool" as variable name. Possible conflict with "bool" type. | jan.nijtmans | 2020-01-28 | 1 | -3/+3 |
| | | | |||||
| * | | No need to include "tk.h" here: It's already included in tkInt.h (through ↵ | jan.nijtmans | 2020-01-27 | 1 | -4/+0 |
| | | | | | | | | | | | | tkPort.h) | ||||
| * | | silence "unused variable" warning | dgp | 2020-01-24 | 1 | -1/+0 |
| | | | |||||
| * | | Remove 2 comments which are simply not correct (nor useful) any more | jan.nijtmans | 2020-01-19 | 2 | -11/+0 |
| | | | |||||
| * | | Fix [077d49828b]: notebook tab 'ambiguous compound' failure/regression, by ↵ | fvogel | 2020-01-18 | 1 | -5/+10 |
| |\ \ | | | | | | | | | | | | | making options of type TK_OPTION_STRING_TABLE support the TK_OPTION_NULL_OK flag. | ||||
| | * | | Fix [077d49828b]: notebook tab 'ambiguous compound' failure/regression, by ↵ | fvogel | 2019-12-31 | 1 | -5/+10 |
| | | | | | | | | | | | | | | | | making options of type TK_OPTION_STRING_TABLE support the TK_OPTION_NULL_OK flag. | ||||
| * | | | Fix [2830360fff]: ttk::entry looses state invalid at focus events. Add ↵ | fvogel | 2020-01-18 | 1 | -2/+6 |
| |\ \ \ | | | | | | | | | | | | | | | | non-regression test entry-10.1 | ||||
| | * | | | Fix [2830360fff]: ttk::entry looses state invalid at focus events | fvogel | 2020-01-02 | 1 | -2/+6 |
| | |/ / | |||||
| * | | | Fix [587937fff]: Don't shuffle tag list sequence upon deletion. Add non ↵ | fvogel | 2020-01-18 | 1 | -3/+18 |
| |\ \ \ | | | | | | | | | | | | | | | | regression tests canvas-20.[123] | ||||
| | * | | | Don't shuffle tags when moving the 'current' tag among items. | fvogel | 2019-12-24 | 1 | -1/+3 |
| | | | | | |||||
| | * | | | Fix error (with no consequence) in sizeof() request, and remove useless cast ↵ | fvogel | 2019-12-24 | 1 | -2/+2 |
| | | | | | | | | | | | | | | | | | | | | to (void *) | ||||
| | * | | | Restore tabs on lines that were actually not changed by the fix. | fvogel | 2019-12-24 | 1 | -5/+5 |
| | | | | | |||||
| | * | | | Refine the second implementation fixing [587937fff]: Don't shuffle tag list ↵ | fvogel | 2019-12-24 | 1 | -8/+1 |
| | | | | | | | | | | | | | | | | | | | | sequence upon deletion. | ||||
| | * | | | A second (and better) implementation fixing [587937fff]: Don't shuffle tag ↵ | fvogel | 2019-12-24 | 1 | -6/+22 |
| | | | | | | | | | | | | | | | | | | | | list sequence upon deletion. This implementation is more efficient (it's O(n)). | ||||
| | * | | | A first implementation fixing [587937fff]: Don't shuffle tag list sequence ↵ | fvogel | 2019-12-24 | 1 | -7/+11 |
| | |/ / | | | | | | | | | | | | | upon deletion. This implementation is not efficient (it's O(n^2)) and will not be kept. | ||||
| * | | | Fix [1771594fff]: icursor @x,y fails for non-default scrollregions. Test ↵ | fvogel | 2019-12-23 | 1 | -2/+2 |
| |/ / | | | | | | | | | | canvText-14.7 now passes. | ||||
* | | | Fix [e3888d5820] (Grab on master prevents mouse pointer warp into slave ↵ | fvogel | 2020-01-25 | 1 | -11/+11 |
| | | | | | | | | | | | | widget) for Linux and Windows. Test bind-35.1 now passes on these platforms. | ||||
* | | | Reorder code snippet in HandleEventGenerate to make it easier to understand. ↵ | fvogel | 2020-01-06 | 1 | -5/+5 |
|/ / | | | | | | | This changes nothing in how things work. | ||||
* | | Fix [02a69449b5]: Wrong database names for tk::spinbox | fvogel | 2019-12-10 | 1 | -4/+4 |
| | | |||||
* | | Build without -DUNICDE -D_UNICODE, since it's not necessary any-more (all ↵ | jan.nijtmans | 2019-12-05 | 1 | -15/+0 |
| | | | | | | | | code uses implicit *W-API now). This also eliminates the need for the TK_ASCII_MAIN hack. | ||||
* | | In tkUnixFont, make sure that the utf-to-ucs2 encoder clamps at 0xFFFF. Use ↵ | jan.nijtmans | 2019-12-01 | 1 | -1/+1 |
| | | | | | | | | more uppercase hex-values where appropriate. | ||||
* | | Fix [d4f5620f5d]: font-4.14 fails (font actual with unicode). Add another ↵ | jan.nijtmans | 2019-11-29 | 1 | -1/+1 |
| | | | | | | | | test-case for TCL_UTF_MAX>3 | ||||
* | | Various cleanups in Unicode handling. Note that without Xft on X11 we don't ↵ | jan.nijtmans | 2019-11-26 | 3 | -23/+19 |
|\ \ | | | | | | | | | | have Emoji. | ||||
| * | | More code simplification | jan.nijtmans | 2019-11-21 | 1 | -15/+12 |
| | | | |||||
| * | | Oops _WIN32 with single underscore | jan.nijtmans | 2019-11-21 | 1 | -1/+1 |
| | | | |||||
| * | | Now that TkUniCharToUtf() produces maximum of 4 bytes, reduce storage. More ↵ | jan.nijtmans | 2019-11-21 | 3 | -10/+13 |
| | | | | | | | | | | | | | | | code simplifications. Disallow Emoji on X11 without xft, just use replacement character then. | ||||
* | | | merge release | dgp | 2019-11-22 | 1 | -2/+2 |
|\ \ \ | |/ / |/| | | |||||
| * | | Merge 8.6 except for the broken demo. | dgp | 2019-11-20 | 1 | -1/+14 |
| |\ \ | |||||
| * \ \ | merge 8.6 | dgp | 2019-11-15 | 1 | -1/+180 |
| |\ \ \ | |||||
| * \ \ \ | merge 8.6 | dgp | 2019-11-02 | 2 | -4/+4 |
| |\ \ \ \ | |||||
| * \ \ \ \ | merge 8.6 | dgp | 2019-10-28 | 2 | -23/+4 |
| |\ \ \ \ \ | |||||
| * \ \ \ \ \ | merge 8.6 | dgp | 2019-10-25 | 1 | -1/+2 |
| |\ \ \ \ \ \ |