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 >
Wrap
Text File
|
1997-07-14
|
1KB
|
47 lines
#---------------------------------------------------------------------------
#
# (c) Cayenne Software Inc. 1997
#
# File: @(#)dropedarea.tcl /main/titanic/1
# Author: <generated>
# Description:
#---------------------------------------------------------------------------
# SccsId = @(#)dropedarea.tcl /main/titanic/1 14 Jul 1997 Copyright 1997 Cayenne Software Inc.
# Start user added include file section
# End user added include file section
Class DropEdArea : {Object} {
method destructor
constructor
method drop
method ed
attribute _ed
}
method DropEdArea::destructor {this} {
# Start destructor user section
# End destructor user section
}
constructor DropEdArea {class this name} {
set this [Object::constructor $class $this $name]
return $this
}
method DropEdArea::drop {this value srcIsDst x y} {
set levelPathObj [LevelPath new $value]
[$this ed] edit $levelPathObj
}
method DropEdArea::ed {this {newEd -}} {
if {$newEd == "-"} {
return [$this _ed]
}
$this _ed $newEd
}
# Do not delete this line -- regeneration end marker