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

  1. #---------------------------------------------------------------------------
  2. #
  3. #      (c)     Westmount Technology    1994
  4. #
  5. #      File:           @(#)cbclasstex.tcl    1.4
  6. #      Author:         <generated>
  7. #      Description:
  8. #---------------------------------------------------------------------------
  9. # SccsId = @(#)cbclasstex.tcl    1.4   31 Jan 1996 Copyright 1994 Westmount Technology
  10.  
  11. # Start user added include file section
  12. # End user added include file section
  13.  
  14. require "cbtextlist.tcl"
  15.  
  16. Class CBClassTextList : {CBTextList} {
  17.     constructor
  18.     method destructor
  19.     method initView
  20.     method browser
  21.     attribute _browser
  22. }
  23.  
  24. constructor CBClassTextList {class this name} {
  25.     set this [CBTextList::constructor $class $this $name]
  26.     # Start constructor user section
  27.     # End constructor user section
  28.     return $this
  29. }
  30.  
  31. method CBClassTextList::destructor {this} {
  32.     set ref [$this _browser]
  33.     if {$ref != ""} {
  34.         $ref _classTL ""
  35.     }
  36.     # Start destructor user section
  37.     # End destructor user section
  38.     $this CBTextList::destructor
  39. }
  40.  
  41. method CBClassTextList::initView {this} {
  42.     $this removeTextListEntries
  43.     $this removeEntries
  44.  
  45.     set classList [[[$this browser] model] classSet]
  46.     $classList foreach class {
  47.         if {[$class name] == ""} {
  48.             continue
  49.         }
  50.         $this addTextListEntry $class
  51.     }
  52.     $this sortTextListEntries
  53.     $this fillEntries
  54.     $this deselectEntries
  55. }
  56.  
  57. # Do not delete this line -- regeneration end marker
  58.  
  59. method CBClassTextList::browser {this args} {
  60.     if {$args == ""} {
  61.         return [$this _browser]
  62.     }
  63.     set ref [$this _browser]
  64.     if {$ref != ""} {
  65.         $ref _classTL ""
  66.     }
  67.     set obj [lindex $args 0]
  68.     if {$obj != ""} {
  69.         $obj _classTL $this
  70.     }
  71.     $this _browser $obj
  72. }
  73.  
  74.