home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC World 1998 October
/
PCWorld_1998-10_cd.bin
/
software
/
prehled
/
komix
/
DATA.Z
/
profilenod.tcl
< prev
next >
Wrap
Text File
|
1996-05-29
|
1KB
|
52 lines
#---------------------------------------------------------------------------
#
# (c) Westmount Technology 1994
#
# File: @(#)profilenod.tcl 1.2
# Author: <generated>
# Description:
#---------------------------------------------------------------------------
# SccsId = @(#)profilenod.tcl 1.2 13 Mar 1995 Copyright 1994 Westmount Technology
# Start user added include file section
# End user added include file section
Class ProfileNode : {BrowsNode} {
constructor
method destructor
method updateDetails
attribute data
attribute dialog
}
constructor ProfileNode {class this name} {
set this [BrowsNode::constructor $class $this $name]
# Start constructor user section
$this selected {%this updateDetails}
# End constructor user section
return $this
}
method ProfileNode::destructor {this} {
# Start destructor user section
# End destructor user section
}
method ProfileNode::updateDetails {this} {
if {![$this selectState]} {
return
}
set col [$this dialog].r.c
set data [$this data]
$col.callsText text [lindex $data 0]
$col.realText text [lindex $data 1]
$col.cpuText text [lindex $data 2]
$col.cpcText text [lindex $data 3]
}
# Do not delete this line -- regeneration end marker