summaryrefslogtreecommitdiffstats
path: root/library/dialog.tcl
diff options
context:
space:
mode:
authordas <das>2007-04-29 02:24:49 (GMT)
committerdas <das>2007-04-29 02:24:49 (GMT)
commit1a476a1767db9dd2a37ed65dbe0cd3a24413d4b4 (patch)
tree83616c330ca5ebe0f636c1c22df4a55c86ce6f36 /library/dialog.tcl
parent1cb29bfc3b4440becbbb83a55e3617c04fd3f4f4 (diff)
downloadtk-1a476a1767db9dd2a37ed65dbe0cd3a24413d4b4.zip
tk-1a476a1767db9dd2a37ed65dbe0cd3a24413d4b4.tar.gz
tk-1a476a1767db9dd2a37ed65dbe0cd3a24413d4b4.tar.bz2
* library/bgerror.tcl: on aqua, use moveable alert resp. modal dialog
* library/dialog.tcl: window class and corresponding system background pattern; fix button padding. * library/tearoff.tcl: correct aqua menu bar height; vertically offset * library/tk.tcl: aqua tearoff floating window to match menu.
Diffstat (limited to 'library/dialog.tcl')
-rw-r--r--library/dialog.tcl8
1 files changed, 6 insertions, 2 deletions
diff --git a/library/dialog.tcl b/library/dialog.tcl
index 404593e..82f13fb 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.2.3 2006/01/25 18:21:41 dgp Exp $
+# RCS: @(#) $Id: dialog.tcl,v 1.14.2.4 2007/04/29 02:24:49 das Exp $
#
# Copyright (c) 1992-1993 The Regents of the University of California.
# Copyright (c) 1994-1997 Sun Microsystems, Inc.
@@ -69,7 +69,10 @@ proc ::tk_dialog {w title text bitmap default args} {
set windowingsystem [tk windowingsystem]
if {$tcl_platform(platform) eq "macintosh" || $windowingsystem eq "aqua"} {
- ::tk::unsupported::MacWindowStyle style $w dBoxProc
+ ::tk::unsupported::MacWindowStyle style $w moveableModal {}
+ option add *Dialog*background systemDialogBackgroundActive widgetDefault
+ option add *Dialog*Button.highlightBackground \
+ systemDialogBackgroundActive widgetDefault
}
frame $w.bot
@@ -122,6 +125,7 @@ proc ::tk_dialog {w title text bitmap default args} {
if {$tmp eq "ok" || $tmp eq "cancel"} {
grid columnconfigure $w.bot $i -minsize [expr {59 + 20}]
}
+ grid configure $w.button$i -pady 7
}
incr i
}