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

  1. #---------------------------------------------------------------------------
  2. #
  3. #      (c)     Cayenne Software Inc.    1997
  4. #
  5. #      File:           @(#)dropedarea.tcl    /main/titanic/1
  6. #      Author:         <generated>
  7. #      Description:
  8. #---------------------------------------------------------------------------
  9. # SccsId = @(#)dropedarea.tcl    /main/titanic/1   14 Jul 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 DropEdArea : {Object} {
  16.     method destructor
  17.     constructor
  18.     method drop
  19.     method ed
  20.     attribute _ed
  21. }
  22.  
  23. method DropEdArea::destructor {this} {
  24.     # Start destructor user section
  25.     # End destructor user section
  26. }
  27.  
  28. constructor DropEdArea {class this name} {
  29.     set this [Object::constructor $class $this $name]
  30.     return $this
  31. }
  32.  
  33. method DropEdArea::drop {this value srcIsDst x y} {
  34.     set levelPathObj [LevelPath new $value]
  35.     [$this ed] edit $levelPathObj
  36. }
  37.  
  38. method DropEdArea::ed {this {newEd -}} {
  39.     if {$newEd == "-"} {
  40.         return [$this _ed]
  41.     }
  42.     $this _ed $newEd
  43. }
  44.  
  45. # Do not delete this line -- regeneration end marker
  46.  
  47.