summaryrefslogtreecommitdiffstats
path: root/library/dialog.tcl
diff options
context:
space:
mode:
authordkf <donal.k.fellows@manchester.ac.uk>2003-10-22 15:24:24 (GMT)
committerdkf <donal.k.fellows@manchester.ac.uk>2003-10-22 15:24:24 (GMT)
commit2e19f8728383b4729ceb99a480b83249d4ef2290 (patch)
tree8554e1a80dc834062ff84d86fe4fc501a7cf030a /library/dialog.tcl
parent4c4b8b6c503a4f946ae7b5c6f027f26f61c3c923 (diff)
downloadtk-2e19f8728383b4729ceb99a480b83249d4ef2290.zip
tk-2e19f8728383b4729ceb99a480b83249d4ef2290.tar.gz
tk-2e19f8728383b4729ceb99a480b83249d4ef2290.tar.bz2
Constrain tk_dialg to be sensibly sized and placed. [Bug 827535]
Diffstat (limited to 'library/dialog.tcl')
-rw-r--r--library/dialog.tcl12
1 files changed, 11 insertions, 1 deletions
diff --git a/library/dialog.tcl b/library/dialog.tcl
index 2eb425f..398a494 100644
--- a/library/dialog.tcl
+++ b/library/dialog.tcl
@@ -3,7 +3,7 @@
# This file defines the procedure tk_dialog, which creates a dialog
# box containing a bitmap, a message, and one or more buttons.
#
-# RCS: @(#) $Id: dialog.tcl,v 1.14 2002/08/31 06:12:28 das Exp $
+# RCS: @(#) $Id: dialog.tcl,v 1.15 2003/10/22 15:24:24 dkf Exp $
#
# Copyright (c) 1992-1993 The Regents of the University of California.
# Copyright (c) 1994-1997 Sun Microsystems, Inc.
@@ -155,6 +155,16 @@ proc ::tk_dialog {w title text bitmap default args} {
- [winfo vrootx [winfo parent $w]]}]
set y [expr {[winfo screenheight $w]/2 - [winfo reqheight $w]/2 \
- [winfo vrooty [winfo parent $w]]}]
+ # Make sure that the window is on the screen and set the maximum
+ # size of the window is the size of the screen. That'll let things
+ # fail fairly gracefully when very large messages are used. [Bug 827535]
+ if {$x < 0} {
+ set x 0
+ }
+ if {$y < 0} {
+ set y 0
+ }
+ wm maxsize $w [winfo screenwidth $w] [winfo screenheight $w]
wm geom $w +$x+$y
wm deiconify $w