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

  1. #---------------------------------------------------------------------------
  2. #
  3. #      (c)     Cayenne Software Inc.    1997
  4. #
  5. #      File:           @(#)mtviewmenu.tcl    /main/titanic/2
  6. #      Author:         <generated>
  7. #      Description:
  8. #---------------------------------------------------------------------------
  9. # SccsId = @(#)mtviewmenu.tcl    /main/titanic/2   1 Aug 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 MTViewMenuProcs : {Object} {
  16.     constructor
  17.     method destructor
  18. }
  19.  
  20. constructor MTViewMenuProcs {class this} {
  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 MTViewMenuProcs::destructor {this} {
  28.     # Start destructor user section
  29.     # End destructor user section
  30. }
  31.  
  32. proc MTViewMenuProcs::refresh {} {
  33.     #force a reopen by resetting the currentObj
  34.     set currentObj [.main currentObj]
  35.     .main currentObj ""
  36.     $currentObj open
  37. }
  38.  
  39. proc MTViewMenuProcs::toggleContextArea {} {
  40.     .main contextAreaPresent [[.main menuBar].view.menu.contextarea state]
  41. }
  42.  
  43. proc MTViewMenuProcs::toggleToolbar {} {
  44.     .main toolBarPresent [[.main menuBar].view.menu.toolbar state]
  45. }
  46.  
  47. proc MTViewMenuProcs::toggleMessageArea {} {
  48.     .main messageAreaPresent [[.main menuBar].view.menu.messagearea state]
  49. }
  50.  
  51. proc MTViewMenuProcs::showAllMergeElements {state} {
  52.  
  53.     .main showAll $state
  54.     MTFileMenuProcs::reload
  55. }
  56.  
  57. # Do not delete this line -- regeneration end marker
  58.  
  59.