| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
| |
FossilOrigin-Name: 0f5f997bafb2275c2cbabc13e571641e6fea483a
|
|
|
| |
FossilOrigin-Name: 66b80295cf3772c9b10359115eebf96799082e79
|
|
|
| |
FossilOrigin-Name: 24a4a5414a0a42d2249025b5859dc7050f7510cc
|
|
|
| |
FossilOrigin-Name: bcf638305aad2d67f1ea6705c9ec592980954a08
|
|
|
| |
FossilOrigin-Name: 3943155171c8c6b8ee5916d43391b322c464e521
|
|
|
| |
FossilOrigin-Name: e544ee83eb6752a15aefd88ee83624ec73c8df14
|
|
|
| |
FossilOrigin-Name: d27ab3b78c9d29047f3fc3714dc114ac743b21b6
|
|
|
| |
FossilOrigin-Name: 6d956e98f781b2410612a9f12468a4829948d10d
|
|
|
| |
FossilOrigin-Name: 7a9cdfc6190c92f790108254a1feb948e754c6c7
|
|
|
| |
FossilOrigin-Name: 6f4bc0becc9afa2257968748d3d4fb89a8baa2ae
|
|
|
| |
FossilOrigin-Name: e3d03c4c749eab9766a66a7ebf13a9c54c8baa50
|
|
|
| |
FossilOrigin-Name: 8ebda766043290b3c2c684b11d8c7d5d69429511
|
|
|
| |
FossilOrigin-Name: e7c95821cc5cfe92860853ccf4a06fa728c70e7e
|
|
|
| |
FossilOrigin-Name: 998783fc9174c2680614142996c00659e68adac5
|
|
|
| |
FossilOrigin-Name: d81228b9c1f9b7a3985ce9fddb2b35f9017bc447
|
|
|
| |
FossilOrigin-Name: d0d787a94f95ca5ed40739ec19b690fc0652acdc
|
|
|
| |
FossilOrigin-Name: 4fbd42cac5af96be66b4e2009a0e94f19ea9164d
|
|
|
| |
FossilOrigin-Name: 1866c870ee9e7072a94b3356c9d493009488f73d
|
|
|
| |
FossilOrigin-Name: adab714f073b03c03962572e9a7e47b78855338e
|
|
|
| |
FossilOrigin-Name: 57f8a7de91f702173099b89774636913329bf5e2
|
|
|
|
|
|
|
|
|
|
| |
* macosx/tkMacOSXXStubs.c:
* xlib/ximage.c: fixed MacOSX XGetImage/XPutImage and related
functions to deal properly with XImages copied from screen.
* generic/tkCanvPs.c (TkImageGetColor): MacOSX fix.
[Bug 809157]
FossilOrigin-Name: 98c161bad4a128dfbd3c1224e801c6b9e4f82748
|
|
|
| |
FossilOrigin-Name: 77501805472678120b2bc1aded2a0675567bcdfb
|
|
|
| |
FossilOrigin-Name: 3a4903d0c4a54ddcc751878c6bc121cbc90c6f27
|
|
|
| |
FossilOrigin-Name: a4dc2a8a26885fd290f88087e48b625aef56cffd
|
|
|
| |
FossilOrigin-Name: 579ca2d5b04f55cf953a68db10d3488d111923f9
|
|
|
| |
FossilOrigin-Name: 8b8f2f7c8ce7a2beb52f20bcc944e9d050ba60c7
|
|
|
| |
FossilOrigin-Name: 6a645a6ab29017bc075936fe03b1a52a36f2d8e2
|
|
|
| |
FossilOrigin-Name: cb80d57edb96626d5ffcd308f5e6052029ac3226
|
|
|
| |
FossilOrigin-Name: 5f654d3575360231a7d99ca5e42e303b052984e9
|
|
|
| |
FossilOrigin-Name: d40dd370a6e2e4451f268a5accc6e51cd1407b98
|
|
|
| |
FossilOrigin-Name: d26d54b5db08c8d531da7b3076d554e086b3ee32
|
|
|
| |
FossilOrigin-Name: 6012c9a816186e7686b7a17d013513ae4ef853db
|
|
|
|
|
|
|
|
|
|
| |
a POTENTIAL INCOMPATIBILITY.
* doc/wm.n: Remove "some window managers will" text
and explicitly state what behavior a transient
window will display. Also mention that it is an
error to make a window a transient of itself.
FossilOrigin-Name: 15f78072e4c62acfbfe68a9bd5ce9a5a4b8f5545
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
* tests/unixWm.test: Check that the WM_TRANSIENT_FOR
property for a transient window is being cleared
when the master is destroyed.
* tests/wm.test: Source defs.tcl instead of using
tcltest to match the rest of Tk's test files.
Add new tests that ensure that a transient's state
mirrors the state of the master.
* unix/tkUnixWm.c (WmInfo, TkWmNewWindow, TkWmMapWindow,
TkWmDeadWindow, Tk_WmCmd, WmWaitMapProc): Add numTransients
member to WmInfo structure. Keep state of master and
transient in sync using a callback that tracks MapNotify
and UnmapNotify events. When the master is mapped, map
the transient. When the master is unmapped or iconified,
withdraw the transient.
* win/tkWinWm.c (TkWmMapWindow, TkpWmSetState,
TkWmDeadWindow, Tk_WmCmd, WmWaitVisibilityOrMapProc):
Keep state of master and transient in sync using a
callback that tracks MapNotify and UnmapNotify events.
Move masterPtr check from TkpWmSetState into TkWmMapWindow
to deal with WM_NEVER_MAPPED transients. Cleanup
numTransients and the callback in TkWmDeadWindow.
Cleanup numTransients and the callback only after
deleting a master in wm transient command to avoid
deleting the callback when an error is raised.
Add support for MapNotify and UnmapNotify events
to the master callback.
FossilOrigin-Name: b05e1154cf5528e467289fd82864e519f2a7c69b
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
* tests/wm.test: Check that setting a window
as a transient of itself raises an error. Check
that passing a non-toplevel window to the wm
transient command uses the enclosing toplevel.
* unix/tkUnixWm.c (Tk_WmCmd): Raise an error
if the user tries to make a toplevel a
transient of itself.
* win/tkWinWm.c (Tk_WmCmd): Raise an error
if the user tries to make a toplevel a
transient of itself. Test for other error
before checking for the transient self error.
FossilOrigin-Name: c9b836ac06039b02353fba98ada7fb240b3fb2b4
|
|
|
| |
FossilOrigin-Name: 4b3778bec29a6fbee5296f0b699fe98c3c0b818e
|
|
|
| |
FossilOrigin-Name: f5323b7fb8b0004f0cb38b4849048aa06263cfeb
|
|
|
|
|
|
| |
Still need to add the changes of the last few days.
FossilOrigin-Name: b435fff1e2ca95bb5716f1ec85703f2d1a194d7f
|
|
|
| |
FossilOrigin-Name: ac867c7245af0b6b69760d44422ef42853b08ec4
|
|
|
|
|
|
|
|
| |
Although technically internal changes are not incompatible, they'll
be perceived as such by those who get bitten, and this will help
them find the cause of their trouble.
FossilOrigin-Name: 9eafa9d68e896d379732dc16f39c65a685525290
|
|
|
|
|
|
|
|
|
| |
8.4a3 RELEASE
* changes:
* README: updated for 8.4a3 release
FossilOrigin-Name: b0ae1387c076dd77c4bea94ae6488dcf311fa415
|
|
|
| |
FossilOrigin-Name: 83d0db5a9de598f3092e15e656e6992bcebebf48
|
|
|
| |
FossilOrigin-Name: 9a6eaedb633ed8eac2e47e817d99ba54d1dd0a57
|
|
|
| |
FossilOrigin-Name: 3c197ff51d3baddf9eca157c5be66c68e7a5b682
|
|
|
| |
FossilOrigin-Name: da49efce3ec9b499ee202196096437600c3d4bc9
|
|
|
| |
FossilOrigin-Name: 18a3d561f6ab8bb01c669901cc56e23ecb59ca6a
|
|
|
|
|
|
|
|
|
| |
* README:
* generic/tk.h:
* unix/configure.in:
* win/configure.in: updated to patchlevel 8.3b2
FossilOrigin-Name: 2675982e5628a08fcc35d1c0fb14e7977f3f71b7
|
|
|
| |
FossilOrigin-Name: 1bfa9062235333dc1a42bd24133f7999e33eb7d1
|
|
|
| |
FossilOrigin-Name: 741d2719260de56402e73b8f624aad8c2bb4bf64
|
|
|
| |
FossilOrigin-Name: f28d99038f92f6439249eb685fe74f2717b30468
|