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 >
Text File  |  1996-09-12  |  2KB  |  63 lines

  1. #---------------------------------------------------------------------------
  2. #
  3. #      (c)     Westmount Technology    1994
  4. #
  5. #      File:           @(#)custcheckp.tcl    /main/titanic/1
  6. #      Author:         <generated>
  7. #      Description:
  8. #---------------------------------------------------------------------------
  9. # SccsId = @(#)custcheckp.tcl    /main/titanic/1   12 Sep 1996 Copyright 1994 Westmount Technology
  10.  
  11. # Start user added include file section
  12. # End user added include file section
  13.  
  14.  
  15. Class CustCheckPage : {NoteBkPage} {
  16.     constructor
  17.     method destructor
  18.     method createInterface
  19. }
  20.  
  21. constructor CustCheckPage {class this name} {
  22.     set this [NoteBkPage::constructor $class $this $name]
  23.     # Start constructor user section
  24.     $this createInterface
  25.     # End constructor user section
  26.     return $this
  27. }
  28.  
  29. method CustCheckPage::destructor {this} {
  30.     # Start destructor user section
  31.     # End destructor user section
  32. }
  33.  
  34. method CustCheckPage::createInterface {this} {
  35.  
  36.     interface HorSplitter $this.DC {
  37.         CheckBrView CBV {
  38.         }
  39.         DlgColumn DC {
  40.             Label L {
  41.                 text "Messages in selected group"
  42.             }
  43.             BrowsView BV {
  44.                 rowCount 4
  45.                 BrowsHeader no {
  46.                     label "Number"
  47.                     width 7
  48.                 }
  49.                 BrowsHeader msg {
  50.                     label "Message"
  51.                     width 100
  52.                 }
  53.             }
  54.         }
  55.     }
  56.     $this.DC.CBV checkDialog [getParent $this]
  57.     $this.DC.CBV messageView $this.DC.DC.BV
  58.     $this.DC.DC.BV font "[m4_var get M4_font -context uce]"
  59. }
  60.  
  61. # Do not delete this line -- regeneration end marker
  62.  
  63.