home *** CD-ROM | disk | FTP | other *** search
- #---------------------------------------------------------------------------
- #
- # (c) Westmount Technology 1994
- #
- # File: @(#)custcheckp.tcl /main/hindenburg/1
- # Author: <generated>
- # Description:
- #---------------------------------------------------------------------------
- # SccsId = @(#)custcheckp.tcl /main/hindenburg/1 29 Aug 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
-
-