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 >
Text File  |  1996-05-29  |  1KB  |  52 lines

  1. #---------------------------------------------------------------------------
  2. #
  3. #      (c)     Westmount Technology    1994
  4. #
  5. #      File:           @(#)profilenod.tcl    1.2
  6. #      Author:         <generated>
  7. #      Description:
  8. #---------------------------------------------------------------------------
  9. # SccsId = @(#)profilenod.tcl    1.2   13 Mar 1995 Copyright 1994 Westmount Technology
  10.  
  11. # Start user added include file section
  12. # End user added include file section
  13.  
  14.  
  15. Class ProfileNode : {BrowsNode} {
  16.     constructor
  17.     method destructor
  18.     method updateDetails
  19.     attribute data
  20.     attribute dialog
  21. }
  22.  
  23. constructor ProfileNode {class this name} {
  24.     set this [BrowsNode::constructor $class $this $name]
  25.     # Start constructor user section
  26.  
  27.     $this selected {%this updateDetails}
  28.  
  29.     # End constructor user section
  30.     return $this
  31. }
  32.  
  33. method ProfileNode::destructor {this} {
  34.     # Start destructor user section
  35.     # End destructor user section
  36. }
  37.  
  38. method ProfileNode::updateDetails {this} {
  39.     if {![$this selectState]} {
  40.         return
  41.     }
  42.     set col [$this dialog].r.c
  43.     set data [$this data]
  44.     $col.callsText text [lindex $data 0]
  45.     $col.realText text [lindex $data 1]
  46.     $col.cpuText text [lindex $data 2]
  47.     $col.cpcText text [lindex $data 3]
  48. }
  49.  
  50. # Do not delete this line -- regeneration end marker
  51.  
  52.