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

  1. #---------------------------------------------------------------------------
  2. #
  3. #      (c)     Cayenne Software Inc.    1996
  4. #
  5. #      File:           @(#)editdesela.tcl    /main/titanic/4
  6. #      Author:         <generated>
  7. #      Description:
  8. #---------------------------------------------------------------------------
  9. # SccsId = @(#)editdesela.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 EditDeselAllCmd : {UndoCommand} {
  17.     constructor
  18.     method destructor
  19.     method do
  20.     method redo
  21.     method undo
  22. }
  23.  
  24. constructor EditDeselAllCmd {class this name} {
  25.     set this [UndoCommand::constructor $class $this $name]
  26.     # Start constructor user section
  27.         set deselectEntry [$this editMenu].deselectall
  28.         if [isCommand $deselectEntry] {
  29.         $this commandName [$deselectEntry label]
  30.     } else {
  31.         $this commandName "Deselect All"
  32.     }
  33.         $this setUndoLabel undo
  34.     # End constructor user section
  35.     return $this
  36. }
  37.  
  38. method EditDeselAllCmd::destructor {this} {
  39.     # Start destructor user section
  40.     # End destructor user section
  41.     $this UndoCommand::destructor
  42. }
  43.  
  44. method EditDeselAllCmd::do {this} {
  45.     [$this objectSet] contents [[.main flatView] selectedSet]
  46.     $this redo
  47.     $this busy 0
  48. }
  49.  
  50. method EditDeselAllCmd::redo {this} {
  51.     busy {
  52.     [.main flatView] selectedSet ""
  53.     .main selectionChanged
  54.     }
  55. }
  56.  
  57. method EditDeselAllCmd::undo {this} {
  58.     busy {
  59.     set selectedSet ""
  60.     [$this objectSet] foreach flatObj {
  61.         if {[isCommand $flatObj] && (! [$flatObj filteredOutState])} {
  62.         lappend selectedSet $flatObj
  63.         }
  64.     }
  65.     [.main flatView] selectedSet $selectedSet
  66.     .main selectionChanged
  67.     }
  68. }
  69.  
  70. # Do not delete this line -- regeneration end marker
  71.  
  72.