home *** CD-ROM | disk | FTP | other *** search
/ PC World 1998 October / PCWorld_1998-10_cd.bin / software / prehled / komix / DATA.Z / checkbrvie.tcl < prev    next >
Text File  |  1997-02-27  |  2KB  |  69 lines

  1. #---------------------------------------------------------------------------
  2. #
  3. #      (c)     Westmount Technology    1994
  4. #
  5. #      File:           @(#)checkbrvie.tcl    /main/titanic/2
  6. #      Author:         <generated>
  7. #      Description:
  8. #---------------------------------------------------------------------------
  9. # SccsId = @(#)checkbrvie.tcl    /main/titanic/2   27 Feb 1997 Copyright 1994 Westmount Technology
  10.  
  11. # Start user added include file section
  12. require checkbrobj.tcl
  13. # End user added include file section
  14.  
  15.  
  16. Class CheckBrView : {BrowsView} {
  17.     constructor
  18.     method destructor
  19.     method sortit
  20.     method setMessages
  21.     attribute messageView
  22.     attribute checkDialog
  23. }
  24.  
  25. constructor CheckBrView {class this name} {
  26.     set this [BrowsView::constructor $class $this $name]
  27.     # Start constructor user section
  28.     $this columnCount 60
  29.     $this rowCount 10
  30.     $this selectionPolicy BROWSE
  31.     $this font "[m4_var get M4_font -context uce]"
  32.     BrowsHeader new $this.group -label Group -width 16
  33.     BrowsHeader new $this.group -label Level -width 10
  34.     BrowsHeader new $this.checkValue -label "Check value" -width 12
  35.     BrowsHeader new $this.description -label Description -width 70
  36.     # End constructor user section
  37.     return $this
  38. }
  39.  
  40. method CheckBrView::destructor {this} {
  41.     # Start destructor user section
  42.     # End destructor user section
  43. }
  44.  
  45. method CheckBrView::sortit {this} {
  46.  
  47.     $this sort -column "$this.checkValue ascii decreasing"
  48. }
  49.  
  50. method CheckBrView::setMessages {this group} {
  51.  
  52.     foreach entry [[$this messageView] objectSet] {
  53.         $entry delete
  54.     }
  55.  
  56.     set messageList [[$this checkDialog] getGroup $group]
  57.  
  58.     set count 0
  59.     foreach entry $messageList {
  60.         BrowsObject new [$this messageView].$count
  61.         [$this messageView].$count label "[lindex $entry 0]"
  62.         [$this messageView].$count details \{"[lindex $entry 1]"\}
  63.         incr count
  64.     }    
  65. }
  66.  
  67. # Do not delete this line -- regeneration end marker
  68.  
  69.