From 4f6f8400baf09e3b41d4f864c3c14cf58f954da1 Mon Sep 17 00:00:00 2001 From: Pat Thoyts Date: Thu, 21 Mar 2002 22:51:58 +0000 Subject: [PATCH] Improved the dde send implementation and fixed the window title to show the application name. --- ChangeLog | 5 +++++ tkinspect.tcl | 17 +++++++++++++---- 2 files changed, 18 insertions(+), 4 deletions(-) diff --git a/ChangeLog b/ChangeLog index ac9a719..6b7cb44 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +Thu Mar 21 15:27:53 2002 Pat Thoyts + + * tkinspect.tcl: Improved the dde send implementation and fixed + the window title to show the application name. + Thu Mar 21 00:32:17 2002 Pat Thoyts * tkinspect.tcl: Fixed problem with application not closing diff --git a/tkinspect.tcl b/tkinspect.tcl index 43ace19..96a36a5 100644 --- a/tkinspect.tcl +++ b/tkinspect.tcl @@ -5,6 +5,7 @@ exec wish "$0" ${1+"$@"} # $Id$ # +set tkinspect(title) "Tkinspect" set tkinspect(counter) -1 set tkinspect(main_window_count) 0 set tkinspect(list_classes) { @@ -45,7 +46,14 @@ if [file exists @tkinspect_library@/tclIndex] { # Emulate the 'send' command using the dde package if available. if {[info command send] == {}} { if {![catch {package require dde}]} { - dde servername TkInspect-[pid] + array set dde [list count 0 topic $tkinspect(title)] + while {[dde services TclEval $dde(topic)] != {}} { + incr dde(count) + set dde(topic) "$tkinspect(title) #$dde(count)" + } + dde servername $dde(topic) + set tkinspect(title) $dde(topic) + unset dde proc send {app args} { eval dde eval [list $app] $args } @@ -171,8 +179,8 @@ dialog tkinspect_main { label $self.status.l -bd 2 -relief sunken -anchor w pack $self.status.l -side left -fill x -expand 1 set slot(windows_info) [object_new windows_info] - wm iconname $self "Tkinspect" - wm title $self "Tkinspect: $slot(target)" + wm iconname $self $tkinspect(title) + wm title $self "$tkinspect(title): $slot(target)" $self status "Ready." } method reconfig {} { @@ -186,6 +194,7 @@ dialog tkinspect_main { after 0 destroy $self } method set_target {target} { + global tkinspect set slot(target) $target $self update_lists foreach cmdline $slot(cmdlines) { @@ -193,7 +202,7 @@ dialog tkinspect_main { } set name [file tail [send $target set argv0]] $self status "Remote interpreter is \"$target\" ($name)" - wm title $self "Tkinspect: $target ($name)" + wm title $self "$tkinspect(title): $target ($name)" } method update_lists {} { if {$slot(target) == ""} return -- 2.23.0