home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC World 1998 October
/
PCWorld_1998-10_cd.bin
/
software
/
prehled
/
komix
/
DATA.Z
/
custedwmta.tcl
< prev
next >
Wrap
Text File
|
1996-09-12
|
3KB
|
117 lines
#---------------------------------------------------------------------------
#
# (c) Cadre Technologies Inc. 1996
#
# File: @(#)custedwmta.tcl /main/titanic/1
# Author: <generated>
# Description:
#---------------------------------------------------------------------------
# SccsId = @(#)custedwmta.tcl /main/titanic/1 12 Sep 1996 Copyright 1996 Cadre Technologies Inc.
# Start user added include file section
# End user added include file section
Class CustEdWmtArea : {WmtArea} {
constructor
method destructor
method project
method configuration
method phase
method system
method file
method filter
attribute filterInfo
attribute fileInfo
attribute systemInfo
attribute phaseInfo
attribute configurationInfo
attribute projectInfo
}
constructor CustEdWmtArea {class this name} {
set this [WmtArea::constructor $class $this $name]
# Start constructor user section
interface WaColumn $this.pp {
WaEntry proj {
labelText "Project:"
}
WaEntry conf {
labelText "Configuration Version:"
}
WaEntry file {
labelText "File (Version):"
}
}
interface WaColumn $this.sd {
WaEntry phase {
labelText "Phase:"
}
WaEntry sys {
labelText "System:"
}
WaEntry filter {
labelText "Filter:"
valueText "Off"
}
}
foreach column [$this columnSet] {
foreach entry [$column entrySet] {
$entry labelFont \
[m4_var get M4_contextarea_labelfont -context uce]
$entry valueFont \
[m4_var get M4_contextarea_valuefont -context uce]
}
}
$this projectInfo $this.pp.proj
$this configurationInfo $this.pp.conf
$this fileInfo $this.pp.file
$this phaseInfo $this.sd.phase
$this systemInfo $this.sd.sys
$this filterInfo $this.sd.filter
# End constructor user section
return $this
}
method CustEdWmtArea::destructor {this} {
# Start destructor user section
# End destructor user section
}
method CustEdWmtArea::project {this name} {
[$this projectInfo] valueText $name
}
method CustEdWmtArea::configuration {this name} {
[$this configurationInfo] valueText $name
}
method CustEdWmtArea::phase {this name} {
[$this phaseInfo] valueText $name
}
method CustEdWmtArea::system {this name} {
[$this systemInfo] valueText $name
}
method CustEdWmtArea::file {this name} {
[$this fileInfo] valueText $name
}
method CustEdWmtArea::filter {this name} {
[$this filterInfo] valueText $name
}
# Do not delete this line -- regeneration end marker