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

  1. #---------------------------------------------------------------------------
  2. #
  3. #      (c)     Cayenne Software Inc.    1997
  4. #
  5. #      File:           @(#)vbeditmenu.tcl    /main/titanic/4
  6. #      Author:         <generated>
  7. #      Description:
  8. #---------------------------------------------------------------------------
  9. # SccsId = @(#)vbeditmenu.tcl    /main/titanic/4   7 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 VBEditMenuProcs : {Object} {
  16.     constructor
  17.     method destructor
  18. }
  19.  
  20. constructor VBEditMenuProcs {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 VBEditMenuProcs::destructor {this} {
  28.     # Start destructor user section
  29.     # End destructor user section
  30. }
  31.  
  32. proc VBEditMenuProcs::selectAll {{nodes ""}} {
  33.  
  34.     if {$nodes == ""} {
  35.         set nodes [[.main infoView] root]
  36.     }
  37.     foreach node $nodes {
  38.         $node selectState 1
  39.         set children [$node childSet]
  40.         if ![lempty $children] {
  41.             VBEditMenuProcs::selectAll $children
  42.         }
  43.     }
  44.     
  45.     .main selectionChanged
  46. }
  47.  
  48. proc VBEditMenuProcs::invertSelection {{nodes ""}} {
  49.  
  50.     if {$nodes == ""} {
  51.         set nodes [[.main infoView] root]
  52.     }
  53.     foreach node $nodes {
  54.         if [$node selectState] {
  55.             $node selectState 0
  56.         } else {
  57.             $node selectState 1
  58.         }
  59.         set children [$node childSet]
  60.         if ![lempty $children] {
  61.             VBEditMenuProcs::invertSelection $children
  62.         }
  63.     }
  64.  
  65.     .main selectionChanged
  66. }
  67.  
  68. proc VBEditMenuProcs::paste {} {
  69.  
  70.     if {! [[.main infoView] pasteFromClipboard]} {
  71.         wmtkinfo "No matching clipboard format found."
  72.         return
  73.     }
  74. }
  75.  
  76. # Do not delete this line -- regeneration end marker
  77.  
  78.