home *** CD-ROM | disk | FTP | other *** search
/ PC World 1998 October / PCWorld_1998-10_cd.bin / software / prehled / komix / DATA.Z / cbtlentry.tcl < prev    next >
Text File  |  1996-05-29  |  2KB  |  66 lines

  1. #---------------------------------------------------------------------------
  2. #
  3. #      (c)     Westmount Technology    1994
  4. #
  5. #      File:           @(#)cbtlentry.tcl    1.3
  6. #      Author:         <generated>
  7. #      Description:
  8. #---------------------------------------------------------------------------
  9. # SccsId = @(#)cbtlentry.tcl    1.3   19 Oct 1995 Copyright 1994 Westmount Technology
  10.  
  11. # Start user added include file section
  12. # End user added include file section
  13.  
  14.  
  15. Class CBTLEntry : {Object} {
  16.     constructor
  17.     method destructor
  18.     method compareName
  19.     method getClassBrowser
  20.     method open
  21.     method showScope
  22.     method editCAD
  23.     attribute formattedText
  24. }
  25.  
  26. constructor CBTLEntry {class this name} {
  27.     set this [Object::constructor $class $this $name]
  28.     $this formattedText ""
  29.     # Start constructor user section
  30.     # End constructor user section
  31.     return $this
  32. }
  33.  
  34. method CBTLEntry::destructor {this} {
  35.     # Start destructor user section
  36.     # End destructor user section
  37. }
  38.  
  39. proc CBTLEntry::compare {a b} {
  40.     return [$a compareName $b]
  41. }
  42.  
  43. method CBTLEntry::compareName {this other} {
  44.     return 0
  45. }
  46.  
  47. method CBTLEntry::getClassBrowser {this} {
  48.     global classBrowser
  49.     return $classBrowser
  50. }
  51.  
  52. method CBTLEntry::open {this} {
  53.     [[$this getClassBrowser] openHandler] handle $this
  54. }
  55.  
  56. method CBTLEntry::showScope {this} {
  57.     [[$this getClassBrowser] showScopeHandler] handle $this
  58. }
  59.  
  60. method CBTLEntry::editCAD {this} {
  61.     [[$this getClassBrowser] editCADHandler] handle $this
  62. }
  63.  
  64. # Do not delete this line -- regeneration end marker
  65.  
  66.