home *** CD-ROM | disk | FTP | other *** search
/ PC World 1998 October / PCWorld_1998-10_cd.bin / software / prehled / komix / DATA.Z / mtinformat.tcl < prev    next >
Text File  |  1997-09-01  |  1KB  |  46 lines

  1. #---------------------------------------------------------------------------
  2. #
  3. #      (c)     Cayenne Software Inc.    1997
  4. #
  5. #      File:           @(#)mtinformat.tcl    /main/titanic/5
  6. #      Author:         <generated>
  7. #      Description:
  8. #---------------------------------------------------------------------------
  9. # SccsId = @(#)mtinformat.tcl    /main/titanic/5   1 Sep 1997 Copyright 1997 Cayenne Software Inc.
  10.  
  11. # Start user added include file section
  12. # End user added include file section
  13.  
  14.  
  15. Class MTInformationView : {BrowsView} {
  16.     constructor
  17.     method destructor
  18. }
  19.  
  20. constructor MTInformationView {class this name} {
  21.     set this [BrowsView::constructor $class $this $name]
  22.     # Start constructor user section
  23.     $this mode DETAIL
  24.  
  25.     $this selectionChanged {.main selectionChanged}
  26.  
  27.     BrowsHeader new $this.name     -label Name            -width 20
  28.     BrowsHeader new $this.type     -label Type            -width 15
  29.     BrowsHeader new $this.propName     -label "Property Name"    -width 15
  30.     BrowsHeader new $this.conflict     -label Conflict    -width 10
  31.     BrowsHeader new $this.base     -label "Base Version"     -width 15
  32.     BrowsHeader new $this.from      -label "From Version"  -width 15
  33.     BrowsHeader new $this.to       -label "To Version"       -width 15
  34.  
  35.     # End constructor user section
  36.     return $this
  37. }
  38.  
  39. method MTInformationView::destructor {this} {
  40.     # Start destructor user section
  41.     # End destructor user section
  42. }
  43.  
  44. # Do not delete this line -- regeneration end marker
  45.  
  46.