home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC World 1998 October
/
PCWorld_1998-10_cd.bin
/
software
/
prehled
/
komix
/
DATA.Z
/
proplocedi.tcl
< prev
next >
Wrap
Text File
|
1997-04-24
|
2KB
|
53 lines
#---------------------------------------------------------------------------
#
# (c) Cadre Technologies Inc. 1996
#
# File: @(#)proplocedi.tcl /main/titanic/2
# Author: <generated>
# Description:
#---------------------------------------------------------------------------
# SccsId = @(#)proplocedi.tcl /main/titanic/2 24 Apr 1997 Copyright 1996 Cadre Technologies Inc.
# Start user added include file section
require "proploceda.tcl"
require "newproploc.tcl"
# End user added include file section
require "custeditor.tcl"
Class PropLocEditor : {CustEditor} {
constructor
method destructor
}
constructor PropLocEditor {class this name} {
set this [CustEditor::constructor $class $this $name]
# Start constructor user section
$this menuHdlr [CustBrMenuHandler new defsced [$this moduleHdlr]]
[$this menuHdlr] setCurrentContext
$this setToolBarPresence uce
$this setContextAreaPresence uce
$this editorArea [PropLocEdArea new [$this editorArea].editorArea]
[$this editorArea] selectionChanged "$this selectionChanged"
$this setMessageAreaPresence uce
NewPropLocDialog new $this.newObject
$this.newObject editorArea [$this editorArea]
$this setWindowGeometry proplocs
# End constructor user section
return $this
}
method PropLocEditor::destructor {this} {
# Start destructor user section
$this saveToolBarPresence uce
$this saveContextAreaPresence uce
$this saveMessageAreaPresence uce
$this saveWindowGeometry proplocs
[$this menuHdlr] delete
# End destructor user section
$this CustEditor::destructor
}
# Do not delete this line -- regeneration end marker