canvPsArc.tcl
上传用户:rrhhcc
上传日期:2015-12-11
资源大小:54129k
文件大小:2k
源码类别:

通讯编程

开发平台:

Visual C++

  1. # This file creates a screen to exercise Postscript generation
  2. # for bitmaps in canvases.  It is part of the Tk visual test suite,
  3. # which is invoked via the "visual" script.
  4. #
  5. # RCS: @(#) $Id: canvPsArc.tcl,v 1.4 1999/12/14 06:53:12 hobbs Exp $
  6. catch {destroy .t}
  7. toplevel .t
  8. wm title .t "Postscript Tests for Canvases"
  9. wm iconname .t "Postscript"
  10. wm geom .t +0+0
  11. wm minsize .t 1 1
  12. set c .t.c
  13. message .t.m -text {This screen exercises the Postscript-generation abilities of Tk canvas widgets for arcs.  Click on "Print" to print the canvas to your default printer.  You can click on items in the canvas to delete them.} -width 6i
  14. pack .t.m -side top -fill both
  15. frame .t.bot
  16. pack .t.bot -side bottom -fill both
  17. button .t.bot.quit -text Quit -command {destroy .t}
  18. button .t.bot.print -text Print -command "lpr $c"
  19. pack .t.bot.print .t.bot.quit -side left -pady 1m -expand 1
  20. canvas $c -width 6i -height 6i -bd 2 -relief sunken
  21. pack $c -expand yes -fill both -padx 2m -pady 2m
  22. $c create arc .5i .5i 2i 2i -style pieslice -start 20 -extent 90 
  23.     -fill black -outline {}
  24. $c create arc 2.5i 0 4.5i 1i -style pieslice -start -45 -extent -135 
  25.     -fill {} -outline black -outlinestipple gray50 -width 3m
  26. $c create arc 5.0i .5i 6.5i 2i -style pieslice -start 45 -extent 315 
  27.     -fill black -stipple gray25 -outline black -width 1m
  28. $c create arc -.5i 2.5i 2.0i 3.5i -style chord -start 90 -extent 270 
  29.     -fill black -outline {}
  30. $c create arc 2.5i 2i 4i 6i -style chord -start 20 -extent 140 
  31.     -fill black -stipple gray50 -outline black -width 2m
  32. $c create arc 4i 2.5i 8i 4.5i -style chord -start 60 -extent 60 
  33.     -fill {} -outline black
  34. $c create arc .5i 4.5i 2i 6i -style arc -start 135 -extent 315 -width 3m 
  35.     -outline black -outlinestipple gray25
  36. $c create arc 3.5i 4.5i 5.5i 5.5i -style arc -start 45 -extent -90 -width 1m 
  37.     -outline black