diff options
author | patthoyts <patthoyts@users.sourceforge.net> | 2009-11-22 23:28:36 (GMT) |
---|---|---|
committer | patthoyts <patthoyts@users.sourceforge.net> | 2009-11-22 23:28:36 (GMT) |
commit | 289a84bb2587e4db1a64b76701759a572d6c3447 (patch) | |
tree | e01df5da2143b20b5ca3910c5adb667ea5d213a4 /tests | |
parent | 59ddd65061064dbf6eb5a124e7888f95bb88da48 (diff) | |
download | tk-289a84bb2587e4db1a64b76701759a572d6c3447.zip tk-289a84bb2587e4db1a64b76701759a572d6c3447.tar.gz tk-289a84bb2587e4db1a64b76701759a572d6c3447.tar.bz2 |
Make sure the window is still present when handling delayed activation [Bug 2899949]
Diffstat (limited to 'tests')
-rw-r--r-- | tests/winWm.test | 47 |
1 files changed, 46 insertions, 1 deletions
diff --git a/tests/winWm.test b/tests/winWm.test index 36fcceb..3f7cd0d 100644 --- a/tests/winWm.test +++ b/tests/winWm.test @@ -9,7 +9,7 @@ # Copyright (c) 1998-1999 by Scriptics Corporation. # All rights reserved. # -# RCS: @(#) $Id: winWm.test,v 1.18.4.2 2009/06/23 14:26:49 dgp Exp $ +# RCS: @(#) $Id: winWm.test,v 1.18.4.3 2009/11/22 23:28:36 patthoyts Exp $ package require tcltest 2.1 eval tcltest::configure $argv @@ -415,6 +415,51 @@ test winWm-9.0 "Bug #2799589 - delayed activation of destroyed window" -constrai destroy .tx .t .sd } -result {ok} +test winWm-9.1 "delayed activation of grabbed destroyed window" -constraints win -setup { + proc winwm91click {w} { + if {![winfo ismapped $w]} { update } + event generate $w <Enter> + focus -force $w + event generate $w <ButtonPress-1> -x 5 -y 5 + event generate $w <ButtonRelease-1> -x 5 -y 5 + } + proc winwm91proc3 {} { + global winwm91done winwm91check + set w .sd + toplevel $w + pack [button $w.b -text "OK" -command {set winwm91check 1}] + bind $w.b <Map> {after idle {winwm91click %W}} + update idletasks + tkwait visibility $w + grab $w + tkwait variable winwm91check + #skip the release: #grab release $w + destroy $w + after idle {set winwm91done ok} + } + proc winwm91proc2 {w} { winwm91proc3; destroy $w } + proc winwm91proc1 {w} { + toplevel $w + pack [button $w.b -text "Do dialog" -command [list winwm91proc2 $w]] + bind $w.b <Map> {bind %W <Map> {}; after idle {winwm91click %W}} + } + destroy .t + global winwm91done + set winwm91done wait + toplevel .t +} -body { + pack [button .t.b -text "Show" -command {winwm91proc1 .tx}] + bind .t.b <Map> {bind %W <Map> {}; after idle {winwm91click %W}} + after 5000 {set winwm91done timeout} + vwait winwm91done + set winwm91done +} -cleanup { + foreach cmd {proc1 proc2 proc3 click} { + rename winwm91$cmd {} + } + destroy .tx .t .sd +} -result {ok} + destroy .t # cleanup |