home *** CD-ROM | disk | FTP | other *** search
/ PC World 1997 November / PCWorld_1997-11_cd.bin / software / programy / komix / DATA.Z / lockbrobje.tcl < prev    next >
Text File  |  1996-09-05  |  1KB  |  43 lines

  1. #---------------------------------------------------------------------------
  2. #
  3. #      (c)     Cadre Technologies Inc.    1996
  4. #
  5. #      File:           @(#)lockbrobje.tcl    /main/hindenburg/3
  6. #      Author:         <generated>
  7. #      Description:
  8. #---------------------------------------------------------------------------
  9. # SccsId = @(#)lockbrobje.tcl    /main/hindenburg/3   5 Sep 1996 Copyright 1996 Cadre Technologies Inc.
  10.  
  11. # Start user added include file section
  12. # End user added include file section
  13.  
  14.  
  15. Class LockBrObject : {BrowsObject} {
  16.     constructor
  17.     method destructor
  18.     attribute lock
  19. }
  20.  
  21. constructor LockBrObject {class this name lock} {
  22.     set this [BrowsObject::constructor $class $this $name]
  23.     $this lock $lock
  24.     # Start constructor user section
  25.  
  26.         switch [$lock type] {
  27.             readLock    { $this smallIcon rep_rlock_16 }
  28.             writeLock    { $this smallIcon rep_wlock_16 }
  29.             default    { $this smallIcon rep_clock_16 }
  30.         }
  31.  
  32.     # End constructor user section
  33.     return $this
  34. }
  35.  
  36. method LockBrObject::destructor {this} {
  37.     # Start destructor user section
  38.     # End destructor user section
  39. }
  40.  
  41. # Do not delete this line -- regeneration end marker
  42.  
  43.