- wm title window ?string?
For editor-like apps, it is convenient to put the current file name into the title bar:
Maybe wm title could for 9.0 be deprecated/aliased in favor of
wm title $w $filenameor, combined with the app name (Windows look & feel):
wm title $w "$filename - $appname"While modern operating systems have APIs to display non-ASCII characters in window titles, Tk 8.3.4 is reported not to do this properly on at least Windows 2000, and no version of Tk does on Unix/X11 systems.[Is this logged at SourceForge as a bug?]
Maybe wm title could for 9.0 be deprecated/aliased in favor of
$window cget -title $window configure -title $titlejust to be a little bit more orthogonal? (RS)