/usr/share/scid/tcl/file.tcl is in scid-data 1:4.6.4+dfsg1-2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 | # adds a checkbox to show hidden files
catch {tk_getOpenFile -with-invalid-argument}
namespace eval ::tk::dialog::file {
variable showHiddenBtn 1
variable showHiddenVar 0
}
# ::file::Exit
#
# Prompt for confirmation then exit.
#
proc ::file::Exit {} {
# Check for altered game in all bases except the clipbase:
set unsavedCount 0
set savedBase [sc_base current]
set msg ""
foreach i [sc_base list] {
sc_base switch $i
if {[sc_game altered] && ![sc_base isReadOnly $i]} {
if {$unsavedCount == 0} {
append msg $::tr(ExitUnsaved)
append msg "\n\n"
}
incr unsavedCount
set fname [file tail [sc_base filename $i]]
set g [sc_game number]
append msg " Base $i: $fname "
append msg "($::tr(game) $g)"
append msg "\n"
}
}
# Switch back to original database:
sc_base switch $savedBase
# Check if a mask is opened and dirty
::tree::mask::close
if {$msg != ""} {
append msg "\n"
}
append msg $::tr(ExitDialog)
# Only ask before exiting if there are unsaved changes:
if {$unsavedCount > 0} {
set answer [tk_messageBox -title "Scid: [tr FileExit]" \
-message $msg -type yesno -icon question]
if {$answer != "yes"} { return }
}
if {$::optionsAutoSave} {
options.write
}
::recentFiles::save
::utils::history::Save
destroy .
}
# ::file::New
#
# Opens file-save dialog and creates a new database.
#
proc ::file::New {} {
set ftype {
{ "Scid databases" {".si4"} }
}
set fName [tk_getSaveFile \
-initialdir $::initialDir(base) \
-filetypes $ftype \
-defaultextension ".si4" \
-title "Create a Scid database"]
if {$fName == ""} { return }
if {[file extension $fName] == ".si4"} {
set fName [file rootname $fName]
}
if {[catch {sc_base create $fName} baseId]} {
ERROR::MessageBox "$fName\n"
return
}
set ::curr_db $baseId
set ::initialDir(base) [file dirname $fName]
::recentFiles::add "$fName.si4"
::notify::GameChanged
::notify::DatabaseChanged
}
# ::file::Open
#
# Opens file-open dialog and opens the selected Scid database.
#
proc ::file::Open {{fName ""}} {
set err [::file::Open_ "$fName"]
if {$err == 0} {
set ::curr_db $::file::lastOpened
::windows::gamelist::Open $::curr_db
::notify::DatabaseChanged
set g [sc_base extra $::curr_db autoload]
if {$g != 0} { ::game::Load $g 0 }
::notify::GameChanged
}
return $err
}
proc ::file::openBaseAsTree { { fName "" } } {
set current [sc_base current]
set err [::file::Open_ "$fName"]
sc_base switch $current
::notify::DatabaseChanged
if {$err == 0} { ::tree::make $::file::lastOpened 1 }
return $err
}
proc ::file::Open_ {{fName ""} } {
if {$fName == ""} {
if {[sc_info gzip]} {
set ftype {
{ "All Scid files" {".si4" ".si3" ".pgn" ".pgn.gz" ".epd" ".epd.gz"} }
{ "Scid databases, PGN files" {".si4" ".si3" ".pgn" ".PGN" ".pgn.gz"} }
{ "Scid databases" {".si4" ".si3"} }
{ "PGN files" {".pgn" ".PGN" ".pgn.gz"} }
{ "EPD files" {".epd" ".EPD" ".epd.gz"} }
}
} else {
set ftype {
{ "All Scid files" {".si4" ".si3" ".pgn" ".epd"} }
{ "Scid databases, PGN files" {".si4" ".si3" ".pgn" ".PGN"} }
{ "Scid databases" {".si4" ".si3"} }
{ "PGN files" {".pgn" ".PGN"} }
{ "EPD files" {".epd" ".EPD"} }
}
}
set fName [tk_getOpenFile -initialdir $::initialDir(base) -filetypes $ftype -title "Open a Scid file"]
if {$fName == ""} { return 2}
}
set ext [string tolower [file extension "$fName"] ]
if {"$ext" == ".si4"} { set fName [file rootname "$fName"] }
if {[sc_base slot $fName] != 0} {
tk_messageBox -title "Scid: opening file" -message "The database you selected is already opened."
return 1
}
set err 0
if {"$ext" == ".si3"} {
set err [::file::Upgrade [file rootname "$fName"] ]
} elseif {"$ext" == ".pgn" || "$ext" == ".epd"} {
# PGN or EPD file:
set err [catch {sc_base creatememory "$fName"} ::file::lastOpened]
if {$err} {
ERROR::MessageBox "$fName\n"
} else {
importPgnFile $::file::lastOpened [list "$fName"]
sc_base extra $::file::lastOpened type 3
set ::initialDir(base) [file dirname "$fName"]
::recentFiles::add "$fName"
}
} elseif {"$ext" eq ".si4" || "$ext" eq ""} {
progressWindow "Scid" "$::tr(OpeningTheDatabase): [file tail "$fName"]..."
set err [catch {sc_base open "$fName"} ::file::lastOpened]
closeProgressWindow
if {$err} {
if { $::errorCode == $::ERROR::NameDataLoss } { set err 0 }
ERROR::MessageBox "$fName.si4\n"
} else {
set ::initialDir(base) [file dirname "$fName"]
::recentFiles::add "$fName.si4"
}
} else {
tk_messageBox -title "Scid: opening file" -message "Unsupported database format: $ext"
set err 1
}
return $err
}
# ::file::Upgrade
#
# Upgrades an old (version 3) Scid database to version 4.
#
proc ::file::Upgrade {name} {
if {[file readable "$name.si4"]} {
set msg [string trim $::tr(ConfirmOpenNew)]
set res [tk_messageBox -title "Scid" -type yesno -icon info -message $msg]
if {$res == "no"} { return }
return [::file::Open_ "$name.si4"]
}
set msg [string trim $::tr(ConfirmUpgrade)]
set res [tk_messageBox -title "Scid" -type yesno -icon info -message $msg]
if {$res == "no"} { return }
set err [catch {
file copy "$name.sg3" "$name.sg4"
file copy "$name.sn3" "$name.sn4"
file copy "$name.si3" "$name.si4" }]
if {$err} {
ERROR::MessageBox "$name\n"
return 1
}
progressWindow "Scid" "$::tr(Opening): [file tail $name]..." $::tr(Cancel)
set err [catch {sc_base open $name} ::file::lastOpened]
closeProgressWindow
if {$::errorCode == $::ERROR::NameDataLoss} {
ERROR::MessageBox "$name\n"
set err 0
}
if {$err} {
ERROR::MessageBox "$name\n"
catch {
file delete "$name.sg4"
file delete "$name.sn4"
file delete "$name.si4" }]
} else {
progressWindow "Scid" [concat $::tr(CompactDatabase) "..."] $::tr(Cancel)
set err_compact [catch {sc_base compact $::file::lastOpened}]
closeProgressWindow
if {$err_compact} { ERROR::MessageBox }
}
return $err
}
# ::file::Close:
# Closes the active base.
#
proc ::file::Close {{base -1}} {
# Remember the current base:
set current [sc_base current]
if {$base < 0} { set base $current }
if {![sc_base inUse $base]} { return }
# Switch to the base which will be closed, and check for changes:
sc_base switch $base
set confirm [::game::ConfirmDiscard]
if {$confirm == 0} {
sc_base switch $current
return
}
# Close Tree window whenever a base is closed/switched:
if {[winfo exists .treeWin$base]} { destroy .treeWin$base }
# If base to close was the current one, reset to clipbase
if { $current == $base } { set current 9 }
::gameHistory::removeDB $base
if {[catch {sc_base close $base}]} {
ERROR::MessageBox
}
if {$confirm == 2} { ::notify::DatabaseModified $::clipbase_db }
# Now switch back to the original base
::file::SwitchToBase $current 0
}
proc ::file::SwitchToBase {{b} {saveHistory 1}} {
if {$saveHistory == 1} {
::gameHistory::updatePos $::curr_db [sc_game number] [sc_pos location]
}
if {![catch {sc_base switch $b} res]} {
set ::curr_db $res
# Close email window when a base is switched:
if {[winfo exists .emailWin]} { destroy .emailWin }
if {$saveHistory == 1} {
::gameHistory::pushBack $::curr_db [sc_game number] [sc_pos location]
}
}
::notify::GameChanged
::notify::DatabaseChanged
}
# Databases that will be automatically loaded ad startup
proc ::file::autoLoadBases.load {} {
if {![info exists ::autoLoadBases]} { return }
foreach base $::autoLoadBases {
if {[::file::Open $base] != 0} {
set idx [lsearch -exact $::autoLoadBases $base]
if {$idx != -1} { set ::autoLoadBases [lreplace $::autoLoadBases $idx $idx] }
}
}
}
proc ::file::autoLoadBases.save { {channelId} } {
if {![info exists ::autoLoadBases]} { return }
puts $channelId "set ::autoLoadBases [list $::autoLoadBases]"
}
proc ::file::autoLoadBases.find { {baseIdx} } {
if {![info exists ::autoLoadBases]} { return -1 }
if {[ catch {set base [sc_base filename $baseIdx]} ]} { return -1}
return [lsearch -exact $::autoLoadBases $base]
}
proc ::file::autoLoadBases.add { {baseIdx} } {
if {[ catch {set base [sc_base filename $baseIdx]} ]} { return }
lappend ::autoLoadBases $base
}
proc ::file::autoLoadBases.remove { {baseIdx} } {
if {![info exists ::autoLoadBases]} { return }
if {[ catch {set base [sc_base filename $baseIdx]} ]} { return }
set idx [lsearch -exact $::autoLoadBases $base]
if {$idx != -1} {
set ::autoLoadBases [lreplace $::autoLoadBases $idx $idx]
}
}
|