summaryrefslogtreecommitdiffstats
path: root/library/tkfbox.tcl
diff options
context:
space:
mode:
authordgp <dgp@users.sourceforge.net>2011-10-24 19:36:08 (GMT)
committerdgp <dgp@users.sourceforge.net>2011-10-24 19:36:08 (GMT)
commit01401e184830a82f44b4befbf48e2c28eab2e5d5 (patch)
tree53d88728b4e76bfba87436db447585566b576a24 /library/tkfbox.tcl
parent70a8983986e67b157b1ba85d4984926147ef82e4 (diff)
parentbb5cf6ea1f9419bc18120ac76132162637a2941f (diff)
downloadtk-01401e184830a82f44b4befbf48e2c28eab2e5d5.zip
tk-01401e184830a82f44b4befbf48e2c28eab2e5d5.tar.gz
tk-01401e184830a82f44b4befbf48e2c28eab2e5d5.tar.bz2
Merge TIP 382 implementation to trunk. Still need Carbon migration & Cocoa.
Diffstat (limited to 'library/tkfbox.tcl')
-rw-r--r--library/tkfbox.tcl8
1 files changed, 7 insertions, 1 deletions
diff --git a/library/tkfbox.tcl b/library/tkfbox.tcl
index 4cdcaf3..6354300 100644
--- a/library/tkfbox.tcl
+++ b/library/tkfbox.tcl
@@ -266,6 +266,12 @@ proc ::tk::dialog::file::Config {dataName type argList} {
lappend specs {-multiple "" "" "0"}
}
+ # The "-confirmoverwrite" option is only for the "save" file dialog.
+ #
+ if {$type eq "save"} {
+ lappend specs {-confirmoverwrite "" "" "1"}
+ }
+
# 2: default values depending on the type of the dialog
#
if {![info exists data(selectPath)]} {
@@ -1121,7 +1127,7 @@ proc ::tk::dialog::file::Done {w {selectFilePath ""}} {
set Priv(selectFile) $data(selectFile)
set Priv(selectPath) $data(selectPath)
- if {($data(type) eq "save") && [file exists $selectFilePath]} {
+ if {($data(type) eq "save") && $data(-confirmoverwrite) && [file exists $selectFilePath]} {
set reply [tk_messageBox -icon warning -type yesno -parent $w \
-message [mc "File \"%1\$s\" already exists.\nDo you want\
to overwrite it?" $selectFilePath]]