home *** CD-ROM | disk | FTP | other *** search
/ PC World 1998 October / PCWorld_1998-10_cd.bin / software / prehled / komix / DATA.Z / vbfilemenu.tcl < prev    next >
Text File  |  1997-10-14  |  2KB  |  80 lines

  1. #---------------------------------------------------------------------------
  2. #
  3. #      (c)     Cayenne Software Inc.    1997
  4. #
  5. #      File:           @(#)vbfilemenu.tcl    /main/titanic/7
  6. #      Author:         <generated>
  7. #      Description:
  8. #---------------------------------------------------------------------------
  9. # SccsId = @(#)vbfilemenu.tcl    /main/titanic/7   14 Oct 1997 Copyright 1997 Cayenne Software Inc.
  10.  
  11. # Start user added include file section
  12. # End user added include file section
  13.  
  14.  
  15. Class VBFileMenuProcs : {Object} {
  16.     constructor
  17.     method destructor
  18. }
  19.  
  20. constructor VBFileMenuProcs {class this name} {
  21.     set this [Object::constructor $class $this $name]
  22.     # Start constructor user section
  23.     # End constructor user section
  24.     return $this
  25. }
  26.  
  27. method VBFileMenuProcs::destructor {this} {
  28.     # Start destructor user section
  29.     # End destructor user section
  30. }
  31.  
  32. proc VBFileMenuProcs::edit {} {
  33.     [lindex [.main selectedVersionSet] 0] edit
  34. }
  35.  
  36. proc VBFileMenuProcs::show {} {
  37.     [lindex [.main selectedVersionSet] 0] show
  38. }
  39.  
  40. proc VBFileMenuProcs::printView {} {
  41.  
  42.     busy {
  43.         set args ""
  44.         if [isCommand .main.optionBox] {
  45.             set args [.main.optionBox printOptions]
  46.         }
  47.         require print.tcl
  48.         eval Print::printVersionTree $args
  49.     }
  50. }
  51.  
  52. proc VBFileMenuProcs::showInfo {} {
  53.     require "browserpro.tcl"
  54.  
  55.     foreach obj [.main selectedObjSet] {
  56.         $obj setInfo "Identity" " "
  57.         $obj setInfo "Link" " "
  58.         $obj setInfo "Controlled Actions" " "
  59.         if [$obj isA ExternalFileVersion] {
  60.             if {[$obj getInfo Status] == "backGround"} {
  61.                 $obj setInfo "Path" "  "
  62.             }
  63.         }
  64.         if [$obj isA ConfigVersion] {
  65.             $obj setInfo "Selected In" " "
  66.         }
  67.     }
  68.  
  69.     BrowserProcs::showInfo 1
  70. }
  71.  
  72. proc VBFileMenuProcs::exitBrowser {} {
  73.     if {! [.main watchdogBusy]} {
  74.         .main WmtTool::stop
  75.     }
  76. }
  77.  
  78. # Do not delete this line -- regeneration end marker
  79.  
  80.