summaryrefslogtreecommitdiffstats
path: root/generic
Commit message (Collapse)AuthorAgeFilesLines
* merge core-8-6-branchjan.nijtmans2017-05-121-1/+1
|\
| * Revert [f38091d0]: If TK_LAYOUT_WITH_BASE_CHUNKS is set (MacOSX), this ↵jan.nijtmans2017-05-121-1/+1
| | | | | | | | change leads to crash, struct CharInfo is defined differently depending on TK_LAYOUT_WITH_BASE_CHUNKS (however strange that is ...)
* | merge core-8-6-branchjan.nijtmans2017-05-103-7/+32
|\ \ | |/
| * New internal function TkpCancelWarp(), which does a proper warp clean-up ↵jan.nijtmans2017-05-103-8/+33
| | | | | | | | when the display is closed. Follow-up to [db8c541b6bff91848c53006b0fe352136fbd4be9|db8c541b6b]. Backported from androwish [http://www.androwish.org/index.html/info/0b3392c9134c228f|0b3392c9134c228f] (which was a little more than just a "add tk upstream changes" ...). Thanks, Christian!
| * Remove calls to Tk_FreeXId(), since it's just a NOP.jan.nijtmans2017-05-081-7/+0
| |
* | merge core-8-6-branchjan.nijtmans2017-05-082-3/+3
|\ \ | |/
| * Don't use sizeof(struct) when the structure has a char array as last ↵jan.nijtmans2017-05-082-3/+3
| | | | | | | | element: If the size of this array changes, we'll be in trouble.
* | Change floor() back to casting to int() in fixing [6020ee2d03].fvogel2017-05-021-6/+3
|\ \ | |/
| * Change floor() back to casting to int() in fixing [6020ee2d03].fvogel2017-05-021-6/+3
| |\
| | * Revert the previous commit since it has drawbacks (see [6020ee2d03]).bug_308940ffffvogel2017-05-021-6/+3
| | |
* | | If compiled with -DTK_NO_DEPRECATED, remove the functions ↵jan.nijtmans2017-05-024-26/+54
| | | | | | | | | | | | | | | Tk_PhotoPutBlock_NoComposite/Tk_PhotoPutZoomedBlock_NoComposite/Tk_PhotoExpand_Panic/Tk_PhotoPutBlock_Panic/Tk_PhotoPutZoomedBlock_Panic/Tk_PhotoSetSize_Panic, which only exist to make stub-enabled extensions work which used those old functions. Otherwise, mark those functions as deprecated, causing a compiler warning if the compiler supports this.
* | | merge core-8-6-branchjan.nijtmans2017-05-021-1/+1
|\ \ \ | |/ /
| * | Typo (wehter -> whether) and minor consistancy in code comment (grey -> gray)jan.nijtmans2017-05-021-1/+1
| | |
* | | merge core-8-6-branchjan.nijtmans2017-05-011-46/+120
|\ \ \ | |/ /
| * | Fix [e4336bef5d58cc96a438ba0fb5553ea57e94f4d8|e4336bef5d]: Unexpected result ↵jan.nijtmans2017-05-011-46/+120
| |\ \ | | | | | | | | | | | | when copying a photo image to itself. Thanks to Simon Bachmann for bug report and fix!
| | * | Fix [e4336bef5d] (Unexpected result when copying a photo image to itself): ↵bug_e4336bef5dsimonbachmann2017-04-301-46/+120
| |/ / | | | | | | | | | if source and destination image are the same, make a local copy of image data before the actual copy/zoom/subsample.
* | | merge core-8-6-branchjan.nijtmans2017-04-181-3/+3
|\ \ \ | |/ /
| * | code styling (wrong indent)jan.nijtmans2017-04-181-3/+3
| | |
* | | Fix [2912962fff]: Notebook does not set TTK_STATE_USER1 and TTK_STATE_USER2.fvogel2017-04-071-6/+21
|\ \ \ | |/ /
| * | Fix [2912962fff]: Notebook does not set TTK_STATE_USER1 and TTK_STATE_USER2.fvogel2017-04-071-6/+21
| |\ \
| | * | Fixed TTK_STATE_USER2 similarly as TTK_STATE_USER1. These bits are set for ↵bug_2912962ffffvogel2017-04-031-4/+11
| | | | | | | | | | | | | | | | the leftmost and rightmost *visible* (i.e. non hidden) tabs
| | * | Fix [2912962fff]: Notebook does not set TTK_STATE_USER1. Patch from Jos ↵fvogel2017-04-031-2/+10
| | | | | | | | | | | | | | | | Decoster.
* | | | Fix [3089640fff], [6020ee2d03], [e016579efb], [6bf197edbf] and [7ffb9e554c]: ↵fvogel2017-04-071-30/+24
|\ \ \ \ | |/ / / | | | | | | | | ttk::notebook tabs can disappear (tab width incorrectly calculated), and -tabminwidth option of a style incorrect behaviour.
| * | | Fix [3089640fff], [6020ee2d03], [e016579efb], [6bf197edbf] and [7ffb9e554c]: ↵fvogel2017-04-071-30/+24
| |\ \ \ | | | |/ | | |/| | | | | ttk::notebook tabs can disappear (tab width incorrectly calculated), and -tabminwidth option of a style incorrect behaviour.
| | * | Slightly better fix anonymously proposed in [6020ee2d03]. Use floor() ↵fvogel2017-04-061-3/+6
| | | | | | | | | | | | | | | | instead of casting to an int.
| | * | The -mintabwidth style option is honored whenever possible. If there is not ↵fvogel2017-04-021-6/+14
| | | | | | | | | | | | | | | | enough space available, then priority is given to displaying all tabs (previous behaviour was they disappeared) over mandatorily honoring -mintabwidth.
| | * | Fix [3089640fff], [6020ee2d03], [e016579efb] and [6bf197edbf]: ttk::notebook ↵fvogel2017-03-311-25/+8
| | |/ | | | | | | | | | tabs can disappear (tab width incorrectly calculated). Patch from Koen Danckaert.
* | | [db8c541b6b] Prevent access of freed memory in warp pointer callbacks.dgp2017-04-061-2/+23
|\ \ \ | |/ /
| * | [db8c541b6b] Prevent access of freed memory in warp pointer callbacks.dgp2017-04-061-2/+23
| |/
* | Fix [28a3c366e6]: memory leak in the text widget. Patch contributed anonymouslyfvogel2017-03-291-0/+3
|\ \ | |/
| * Fix [28a3c366e6]: memory leak in the text widget. Patch contributed anonymouslyfvogel2017-03-291-0/+3
| |\
| | * Fix [28a3c366e6]: memory leak in the text widget. Patch contributed anonymouslybug_28a3c366e6fvogel2017-03-261-0/+3
| | |
* | | Merged tip-464 following positive vote by the TCT.fvogel2017-03-261-1/+18
|\ \ \ | |/ /
| * | merge core-8-6-branchtip_464fvogel2017-03-261-0/+6
| |\ \ | | |/
| * | merge core-8-6-branchfvogel2017-03-066-6/+31
| |\ \
| * | | Add comment explaining that ks_names.h should be kept in sync with ↵fvogel2017-01-291-0/+13
| | | | | | | | | | | | | | | | keysymdef.h, and explain why this needs to be done manually.
| * | | Remove obsolete (and currently wrong) comment in generic/ks_names.hfvogel2017-01-291-3/+0
| | | |
| * | | Proposed fix for [499526180d]: Add support for windows multimedia virtual ↵fvogel2017-01-281-0/+7
| | | | | | | | | | | | | | | | keys. Patch by ralfixx
* | | | Add test-case for ↵jan.nijtmans2017-03-241-0/+58
| | | | | | | | | | | | | | | | | | | | [http://core.tcl.tk/tcl/tktview/1cc44617e2b4ed0a29f75762d45fe46388260f74|1cc44617e2]: Mechanism with 64 bit support in tcl.h does not work outside of core This test-case passes on all platforms I know of.
* | | | merge trunktip_442fvogel2017-03-211-0/+6
|\ \ \ \
| * \ \ \ Fix [77527326e5]: ttk artifacts on Ubuntu. Patch from Csaba Nemethi.fvogel2017-03-111-0/+6
| |\ \ \ \ | | | |_|/ | | |/| |
| | * | | Fix [77527326e5]: ttk artifacts on Ubuntu. Patch from Csaba Nemethi.bug_77527326e5fvogel2017-03-101-0/+6
| | | |/ | | |/|
| | * | [6b3644a485] Fix -alpha applied to 16-bit color PNG. Thanks TheLemonMan.dgp2017-03-061-2/+2
| | | |
* | | | Reorder progressbar options alphabetically (to follow the standard ↵fvogel2017-03-131-32/+32
| | | | | | | | | | | | | | | | convention in the source code)
* | | | Updated patch from René Zaumseil, now consistent with the proposed ↵fvogel2017-03-061-0/+4
| | | | | | | | | | | | | | | | implementation at http://wiki.tcl.tk/20059
* | | | merge trunkfvogel2017-03-0643-1147/+718
|\ \ \ \ | |/ / /
| * | | Patch on behalf of TheLemonMan that addresses bug ↵José Ignacio Marín2017-03-031-2/+2
| | | | | | | | | | | | | | | | [6b3644a4858f018cd08615d3d516b07d271fe2a].
| * | | If compiled with TK_NO_DEPRECATED, remove support for old "set" and "get" ↵jan.nijtmans2017-02-162-4/+15
| | | | | | | | | | | | | | | | syntax on scrollbar.
| * | | Change some internal refCount's from int to size_t.jan.nijtmans2017-02-152-3/+3
| | | |
| * | | Make tk.h work unchanged with Tcl 9.0 (novem), account for possible missing ↵jan.nijtmans2017-02-135-17/+17
| | | | | | | | | | | | | | | | TCL_STORAGE_CLASS definition. More internal use of size_t in stead of int.