| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
| |
FossilOrigin-Name: 5b59f6c84cfec8e753e325ba58a36438c15ce4ae
|
|
|
| |
FossilOrigin-Name: 4b53d3060c75dc7cbadcb5620162426be8f2b73d
|
|
|
|
|
|
| |
* tests/grid.test: [Bug 1432666]
FossilOrigin-Name: 3e3d4dfb08c1ed417bbf549b750a66c36c2b8f33
|
|
|
|
|
|
| |
* generic/tkGrid.c (GridRowColumnConfigureCommand): [Bug 1422430]
FossilOrigin-Name: 02f3657948f46623dbb71d54f9972d1a83782878
|
|
|
| |
FossilOrigin-Name: 0d9c0d50f9e08497b916aa770edafc9c66780258
|
|
|
| |
FossilOrigin-Name: e147bb9b3bcb0eaf1cc003a80fa89a502d2f1cf6
|
|
|
|
|
|
| |
a shrinking grid. [Bug 899246]
FossilOrigin-Name: 89e1956c6d85331b5d929dab83905a1155d1643a
|
|
|
|
|
|
| |
when removing a widget from a grid. [Bug #621241] (forssen)
FossilOrigin-Name: c22256a9f4b86817488348cd3edb9f6879867917
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
updating Tk to use Tcl 8.4's fully CONST-ified
interface, and fully CONSTifying Tk at the
same time.
This patch includes purging Tk of its last
direct access to interp->result. [Bug 589853]
The substantial changes include copying
event sequence strings into Tcl_DStrings
in tkBind.c, and copying [text] indices into
Tcl_DStrings because parsing them involved
overwriting them. If this causes performance
trouble, that can be resolved by further
converting them to Tcl_Obj's.
The #defines USE_NON_CONST and USE_COMPAT_CONST
have the same effect for Tk as they do for Tcl.
(They actually change tcl.h)
FossilOrigin-Name: 5603f01aa35a127f83db9bb68f3b1ff9e5bb64de
|
|
|
|
|
|
| |
(may be when embedded). [Bug #548791] (halliday)
FossilOrigin-Name: 4f397fd74c2027721e6dee84f9c7dc03836e539c
|
|
|
| |
FossilOrigin-Name: 98d6cad79c2e09eae349322c87c6cf57a358505f
|
|
|
|
|
|
|
|
|
|
| |
(patch from Neil McKay).
* Add CirculateRequest, Create, MapRequest, ResizeRequest,
and ConfigureRequest event types;
* Split TK_TOPLEVEL flag into TK_TOPLEVEL, TK_HAS_WRAPPER,
TK_WIN_MANAGED, and TK_TOP_HIERARCHY.
FossilOrigin-Name: ad38fbacd7328c607131ee691e933fcc9aa67d3e
|
|
|
|
|
|
|
| |
argument of Tcl_GetIndexFromObj(Struct) from (char **) to
(CONST char **). [TIP 27] [Patch 504705]
FossilOrigin-Name: 85e5c7aa1baa3bd2b7bdb971f3cf83f4f5573723
|
|
|
|
|
|
|
|
| |
* generic/tkGrid.c (ResolveConstraints,CheckSlotData,DestroyGrid):
* generic/tkSelect.c (Tk_DeleteSelHandler,TkSelDeadWindow): Replaced
Tcl_Free calls with ckfree so that memory debugging is fully supported.
FossilOrigin-Name: 7eae11202e53a732b5f73da88eaf3b2550df3c5c
|
|
|
|
|
|
|
|
| |
** changes for 8.4, some already backported to 8.3.4 (patch #435660)
see ChangeLog for details
FossilOrigin-Name: 72721350b6f21354b5149babeafdb2304ece1e2e
|
|
|
| |
FossilOrigin-Name: d7a6c95b93a04287ed3b3f03fc6722df2ba5b8c9
|
|
|
| |
FossilOrigin-Name: 2609784add061e8acbb8358e5c01c818da190cbd
|
|
|
|
|
|
|
|
| |
argument passed to Tcl_GetStringFromObj() from size_t to int.
Incorrect type broke [pack] and [grid] on systems where
sizeof(size_t) != sizeof(int). [Bugs 462375, 462342, 462338]
FossilOrigin-Name: 6ec1731fc2116acfbb45ee6775894c52f4b92d9a
|
|
|
| |
FossilOrigin-Name: c00303aed74dfe1e60dd700009d3894a66941337
|
|
|
| |
FossilOrigin-Name: 85252bb27aaa1afc09c0f6996b5741a77f11fdf0
|
|
|
| |
FossilOrigin-Name: 523026ee9302e75ee03c4f5563fef3deb6d18b0d
|
|
|
| |
FossilOrigin-Name: 5f0215af7571f78512d49b470692b68865f4c686
|
|
|
|
|
|
| |
separate functions instead of inlining them all in Tk_GridCmd.
FossilOrigin-Name: c18681c39db422f9c6e5e7a7772b10ac4c77f61b
|
|
|
|
|
|
|
| |
caused [grid propagate . 0] to act as a toggle instead of an
absolute set. [Bug: 2286].
FossilOrigin-Name: ec09b433589210b48622eccf572121e228755d3f
|
|
|
|
|
|
| |
GridMaster struct [Bug: 4387]
FossilOrigin-Name: c8ff30f0c17dfaf32d075ffcb8e86c6cf8381eb4
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
widget case (bug #1386).
* generic/tkGrid.c: Fixed interpretation of consecutive ^
characters in grid command. Previously, ^ ^ was interpreted as
meaning that there must be a 2-column widget above to extend,
neglecting the case where there was actually 2 1-column widgets
above. Now, ^ ^ is interpreted as a possible width; the gridder
will consume as many ^'s as there are columns in the widget, and
leave the rest for the extension of other widgets. (bug #1386).
FossilOrigin-Name: c360352e669e2b1a89b4ae382503c8712bcef853
|
|
|
|
|
|
|
| |
* generic/tkEntry.c: fixed C expr error in destroy of entry
that could lead to 'malformed bucket chain' error
FossilOrigin-Name: 97bb805341dc4b867e2840d055e30e1efd2fae9d
|
|
|
| |
FossilOrigin-Name: 4bec4dc6eedf8f345bec167088cd8c7d76a49829
|
|
|
| |
FossilOrigin-Name: 1120dc4257448ed1955333e682de48e2940cc741
|
|
|
|
|
|
| |
pending idle handlers, resulting in a crash in a few odd cases.
FossilOrigin-Name: 065f580bc09c06aa780f311e4fdbbff497b1282b
|
|
|
| |
FossilOrigin-Name: fb58b663f313796e8ed3115f92d657f0cae1d575
|
|
FossilOrigin-Name: 2bf55ca9aa942b581137b9f474da5ad9c1480de4
|