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

  1. #---------------------------------------------------------------------------
  2. #
  3. #      (c)     Cayenne Software Inc.    1997
  4. #
  5. #      File:           @(#)prtreebox.tcl    /main/titanic/2
  6. #      Author:         voyager
  7. #      Description:
  8. #---------------------------------------------------------------------------
  9. # SccsId = @(#)prtreebox.tcl    /main/titanic/2   8 Oct 1997 Copyright 1997 Cayenne Software Inc.
  10.  
  11. global TreePrintOut::location
  12. set TreePrintOut::location BOTTOM
  13.  
  14. global TreePrintOut::offset
  15. set TreePrintOut::offset 40
  16.  
  17. method TreePrintOut::printInfoBox {this device} {
  18.     set margin [$this margin]
  19.     if [$this landscape] {
  20.         set y [expr {[$device width] - ${TreePrintOut::offset}}]
  21.         set bottomY [expr {[$device width] - $margin}]
  22.         set width [$device height]
  23.     } else {
  24.         set y [expr {[$device height] - ${TreePrintOut::offset}}]
  25.         set bottomY [expr {[$device height] - $margin}]
  26.         set width [$device width]
  27.     }
  28.     set sx $margin
  29.     set ex [expr {$sx + $width - 2 * $margin}]
  30.     $device drawLine $sx $y $ex $y
  31.     $device drawLine $sx $bottomY $ex $bottomY
  32.     $device drawLine $sx $y $sx $bottomY
  33.     $device drawLine $ex $y $ex $bottomY
  34.  
  35.     set normalFont "times-normal-10"
  36.     set boldFont "times-bold-10"
  37.     set y [expr {$y + 15}]
  38.     $device drawString 25 $y "Object: " $boldFont
  39.  
  40.     set context [ClientContext::global]
  41.     set str /
  42.     append str [[$context currentCorporate] name]/
  43.     append str [[$context currentProject] name]/
  44.     if ![[$context currentConfig] isNil] {
  45.         append str [[[$context currentConfig] ConfigVersion::config] name]:
  46.         append str [[$context currentConfig] versionNumber]/
  47.         if ![[$context currentPhase] isNil] {
  48.             append str [[[$context currentPhase] phase] name]/
  49.             if ![[$context currentSystem] isNil] {
  50.             append str [[[$context currentSystem] system] name]/
  51.             }
  52.         }
  53.     }
  54.     append str [[lindex [[.main infoView] root] 0] labelA]
  55.  
  56.     $device drawString 80 $y $str $normalFont
  57.     $device drawString [expr {$ex - 100}] $y "Page:" $boldFont
  58.     set pages [expr {[$this horNumPages] * [$this verNumPages]}]
  59.     set pageStr "[$this currentPageNo] of $pages"
  60.     $device drawString [expr {$ex - 50}] $y $pageStr $normalFont
  61. }
  62.