home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC World 1998 October
/
PCWorld_1998-10_cd.bin
/
software
/
prehled
/
komix
/
DATA.Z
/
custcheckp.tcl
< prev
next >
Wrap
Text File
|
1996-09-12
|
2KB
|
63 lines
#---------------------------------------------------------------------------
#
# (c) Westmount Technology 1994
#
# File: @(#)custcheckp.tcl /main/titanic/1
# Author: <generated>
# Description:
#---------------------------------------------------------------------------
# SccsId = @(#)custcheckp.tcl /main/titanic/1 12 Sep 1996 Copyright 1994 Westmount Technology
# Start user added include file section
# End user added include file section
Class CustCheckPage : {NoteBkPage} {
constructor
method destructor
method createInterface
}
constructor CustCheckPage {class this name} {
set this [NoteBkPage::constructor $class $this $name]
# Start constructor user section
$this createInterface
# End constructor user section
return $this
}
method CustCheckPage::destructor {this} {
# Start destructor user section
# End destructor user section
}
method CustCheckPage::createInterface {this} {
interface HorSplitter $this.DC {
CheckBrView CBV {
}
DlgColumn DC {
Label L {
text "Messages in selected group"
}
BrowsView BV {
rowCount 4
BrowsHeader no {
label "Number"
width 7
}
BrowsHeader msg {
label "Message"
width 100
}
}
}
}
$this.DC.CBV checkDialog [getParent $this]
$this.DC.CBV messageView $this.DC.DC.BV
$this.DC.DC.BV font "[m4_var get M4_font -context uce]"
}
# Do not delete this line -- regeneration end marker