home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC World 1998 October
/
PCWorld_1998-10_cd.bin
/
software
/
prehled
/
komix
/
DATA.Z
/
crsysdefdi.tcl
< prev
next >
Wrap
Text File
|
1996-05-29
|
2KB
|
68 lines
#---------------------------------------------------------------------------
#
# (c) Westmount Technology 1994
#
# File: @(#)crsysdefdi.tcl 1.4
# Author: <generated>
# Description:
#---------------------------------------------------------------------------
# SccsId = @(#)crsysdefdi.tcl 1.4 04 Apr 1996 Copyright 1994 Westmount Technology
# Start user added include file section
# End user added include file section
require "crfiledefd.tcl"
Class CrSysDefDialog : {CrFileDefDialog} {
constructor
method destructor
method createInterface
method clearInterface
method fromInterface
method toInterface
}
constructor CrSysDefDialog {class this name} {
set this [CrFileDefDialog::constructor $class $this $name]
# Start constructor user section
# End constructor user section
return $this
}
method CrSysDefDialog::destructor {this} {
# Start destructor user section
# End destructor user section
$this CrFileDefDialog::destructor
}
method CrSysDefDialog::createInterface {this} {
$this CrFileDefDialog::createInterface
interface Label [$this dPage].sysL { text "System Name:" }
interface DropDwnComboBox [$this dPage].sysCB {
entrySet {}
rowCount 5
}
[$this dPage].sysCB entrySet [[$this dPage].fileCB entrySet]
}
method CrSysDefDialog::clearInterface {this} {
$this CrFileDefDialog::clearInterface
[$this dPage].sysCB text [lindex [[$this dPage].sysCB entrySet] 0]
}
method CrSysDefDialog::fromInterface {this} {
$this CrFileDefDialog::fromInterface
[$this curObject] systemName [[$this dPage].sysCB text]
return ""
}
method CrSysDefDialog::toInterface {this} {
$this CrFileDefDialog::toInterface
[$this dPage].sysCB text [[$this curObject] systemName]
}
# Do not delete this line -- regeneration end marker