home *** CD-ROM | disk | FTP | other *** search
/ PC World 1998 October / PCWorld_1998-10_cd.bin / software / prehled / komix / DATA.Z / repdirbrow.tcl < prev    next >
Text File  |  1997-07-25  |  1KB  |  47 lines

  1. #---------------------------------------------------------------------------
  2. #
  3. #      (c)     Cayenne Software Inc.    1997
  4. #
  5. #      File:           @(#)repdirbrow.tcl    /main/titanic/3
  6. #      Author:         <generated>
  7. #      Description:
  8. #---------------------------------------------------------------------------
  9. # SccsId = @(#)repdirbrow.tcl    /main/titanic/3   25 Jul 1997 Copyright 1997 Cayenne Software Inc.
  10.  
  11. # Start user added include file section
  12. # End user added include file section
  13.  
  14. require "dirbrowser.tcl"
  15.  
  16. Class RepDirBrowser : {DirBrowser} {
  17.     method destructor
  18.     constructor
  19.     method showDumpInfo
  20. }
  21.  
  22. method RepDirBrowser::destructor {this} {
  23.     # Start destructor user section
  24.     # End destructor user section
  25.     $this DirBrowser::destructor
  26. }
  27.  
  28. constructor RepDirBrowser {class this name {createButton 0} {infoButton 0}} {
  29.     set this [DirBrowser::constructor $class $this $name $createButton]
  30.  
  31.     if $infoButton {
  32.     PushButton new $this.info \
  33.         -label "Info" \
  34.         -activated "$this showDumpInfo"
  35.     }
  36.  
  37.     return $this
  38. }
  39.  
  40. method RepDirBrowser::showDumpInfo {this} {
  41.     $this handleOk
  42.     Repository::showDumpInfo [$this selected]
  43. }
  44.  
  45. # Do not delete this line -- regeneration end marker
  46.  
  47.