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

  1. #---------------------------------------------------------------------------
  2. #
  3. #      (c)     Cayenne Software Inc.    1996
  4. #
  5. #      File:           @(#)editselinv.tcl    /main/titanic/4
  6. #      Author:         <generated>
  7. #      Description:
  8. #---------------------------------------------------------------------------
  9. # SccsId = @(#)editselinv.tcl    /main/titanic/4   29 Aug 1997 Copyright 1996 Cadre Technologies Inc.
  10.  
  11. # Start user added include file section
  12. # End user added include file section
  13.  
  14. require "undocomman.tcl"
  15.  
  16. Class EditSelInvCmd : {UndoCommand} {
  17.     constructor
  18.     method destructor
  19.     method do
  20.     method redo
  21.     method undo
  22. }
  23.  
  24. constructor EditSelInvCmd {class this name} {
  25.     set this [UndoCommand::constructor $class $this $name]
  26.     # Start constructor user section
  27.         set invertEntry [$this editMenu].invertselection
  28.         if [isCommand $invertEntry] {
  29.         $this commandName [$invertEntry label]
  30.     } else {
  31.         $this commandName "Invert Selection"
  32.     }
  33.         $this setUndoLabel undo
  34.     # End constructor user section
  35.     return $this
  36. }
  37.  
  38. method EditSelInvCmd::destructor {this} {
  39.     # Start destructor user section
  40.     # End destructor user section
  41.     $this UndoCommand::destructor
  42. }
  43.  
  44. method EditSelInvCmd::do {this} {
  45.     [$this objectSet] contents [[.main flatView] selectedSet]
  46.     $this redo
  47.     $this busy 0
  48. }
  49.  
  50. method EditSelInvCmd::redo {this} {
  51.     busy {
  52.     set selectedSet ""
  53.     if {[[.main flatView] selectedSet] != [[$this objectSet] contents]} {
  54.         [$this objectSet] foreach flatObj {
  55.         if {[isCommand $flatObj] && (! [$flatObj filteredOutState])} {
  56.             lappend selectedSet $flatObj
  57.         }
  58.         }
  59.         [.main flatView] selectedSet $selectedSet
  60.     }
  61.     foreach flatObj [[.main flatView] objectSet] {
  62.         if {(! [$flatObj filteredOutState]) &&
  63.         "[$flatObj browsUiObj]" != "" &&
  64.         (! [$flatObj selectState])} {
  65.         lappend selectedSet $flatObj
  66.         }
  67.     }
  68.     [.main flatView] selectedSet $selectedSet
  69.     .main selectionChanged
  70.     }
  71. }
  72.  
  73. method EditSelInvCmd::undo {this} {
  74.     if {[[.main flatView] selectedSet] == [[$this objectSet] contents]} {
  75.     return
  76.     }
  77.  
  78.     busy {
  79.     set selectedSet ""
  80.     [$this objectSet] foreach flatObj {
  81.         if {[isCommand $flatObj] && (! [$flatObj filteredOutState])} {
  82.         lappend selectedSet $flatObj
  83.         }
  84.     }
  85.     [.main flatView] selectedSet $selectedSet
  86.     .main selectionChanged
  87.     }
  88. }
  89.  
  90. # Do not delete this line -- regeneration end marker
  91.  
  92.