home *** CD-ROM | disk | FTP | other *** search
/ PC World 1998 October / PCWorld_1998-10_cd.bin / software / prehled / komix / DATA.Z / printbox.tcl < prev    next >
Text File  |  1996-09-23  |  2KB  |  66 lines

  1. #---------------------------------------------------------------------------
  2. #
  3. #      (c)     Westmount Technology    1995
  4. #
  5. #      File:           @(#)printbox.tcl    /main/titanic/1
  6. #      Author:         frmo
  7. #      Description:    Default Print Info Box.
  8. #---------------------------------------------------------------------------
  9. # SccsId = @(#)printbox.tcl    /main/titanic/1   23 Sep 1996 Copyright 1995 Westmount Technology
  10.  
  11. global DiagramPrintOut::location
  12. set DiagramPrintOut::location BOTTOM
  13.  
  14. global DiagramPrintOut::offset
  15. set DiagramPrintOut::offset 55
  16.  
  17. method DiagramPrintOut::printInfoBox {this device} {
  18.     set margin [$this margin]
  19.     if [$this landscape] {
  20.         set y [expr {[$device width] - ${DiagramPrintOut::offset}}]
  21.         set bottomY [expr {[$device width] - $margin}]
  22.         set width [$device height]
  23.     } else {
  24.         set y [expr {[$device height] - ${DiagramPrintOut::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 context [ClientContext::global]
  36.     set str /
  37.     append str [[$context currentCorporate] name]/
  38.     append str [[$context currentProject] name]/
  39.     append str [[[$context currentConfig] ConfigVersion::config] name]:
  40.     append str [[$context currentConfig] versionNumber]/
  41.     append str [[[$context currentPhase] phase] name]/
  42.     append str [[[$context currentSystem] system] name]/
  43.  
  44.     set diag [$this diagram]
  45.     set title [$this title]
  46.     if {$title == ""} {
  47.         set title [[$diag file] qualifiedName :].[[$diag file] type]:[$diag versionNumber]
  48.     }
  49.     append str $title
  50.  
  51.     set normalFont "times-normal-10"
  52.     set boldFont "times-bold-10"
  53.     set y [expr {$y + 15}]
  54.     $device drawString 25 $y "Diagram: " $boldFont
  55.     $device drawString 80 $y $str $normalFont
  56.     $device drawString [expr {$ex - 100}] $y "Status:" $boldFont
  57.     $device drawString [expr {$ex - 50}] $y [$diag status] $normalFont
  58.     set y [expr {$y + 15}]
  59.     $device drawString 25 $y "Changed:" $boldFont
  60.     $device drawString 80 $y [clock format [$diag updateTime]] $normalFont
  61.     $device drawString [expr {$ex - 100}] $y "Page:" $boldFont
  62.     set pages [expr {[$this horNumPages] * [$this verNumPages]}]
  63.     set pageStr "[$this currentPageNo] of $pages"
  64.     $device drawString [expr {$ex - 50}] $y $pageStr $normalFont
  65. }
  66.