wm withdraw $w
wm transient $w $PRIV(root)
wm group $w $PRIV(root)
+ catch {wm attributes $w -type dialog}
wm title $w "About tkcon v$PRIV(version)"
wm resizable $w 0 0
button $w.b -text Dismiss -command [list wm withdraw $w]
wm title $t "$app Packages"
wm transient $t $PRIV(root)
wm group $t $PRIV(root)
+ catch {wm attributes $t -type dialog}
bind $t <Escape> [list destroy $t]
label $t.ll -text "Loadable:" -anchor w
set f $PRIV(base).namespaces
catch {destroy $f}
toplevel $f
+ catch {wm attributes $f -type dialog}
listbox $f.names -width 30 -height 15 -selectmode single \
-yscrollcommand [list $f.scrollv set] \
-xscrollcommand [list $f.scrollh set] \
if {![winfo exists $base]} {
toplevel $base
wm withdraw $base
+ catch {wm attributes $base -type dialog}
wm title $base "tkcon Find"
pack [frame $base.f] -fill x -expand 1
if {![winfo exists $t]} {
toplevel $t
wm withdraw $t
+ catch {wm attributes $t -type dialog}
wm title $t "tkcon Create Socket"
label $t.lhost -text "Host: "
entry $t.host -width 16 -takefocus 1
if {![winfo exists $t]} {
toplevel $t
wm withdraw $t
+ catch {wm attributes $t -type dialog}
wm title $t "tkcon Attach to Display"
label $t.gets -text "New Display: "
entry $t.data -width 32
$w.text delete 1.0 end
} else {
toplevel $w
+ catch {wm attributes $w -type dialog}
frame $w.btn
scrollbar $w.sy -command [list $w.text yview]
text $w.text -yscrollcommand [list $w.sy set] -height 12 \
if {![winfo exists $t]} {
toplevel $t
wm withdraw $t
+ catch {wm attributes $t -type dialog}
wm title $t "tkcon gets stdin request"
label $t.gets -text "\"gets stdin\" request:"
text $t.data -width 32 -height 5 -wrap none \
}
set dlg [toplevel .auth]
+ catch {wm attributes $dlg -type dialog}
wm title $dlg "Authenticating Proxy Configuration"
set f1 [frame ${dlg}.f1]
set f2 [frame ${dlg}.f2]