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

通讯编程

开发平台:

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: canvPsBmap.tcl,v 1.3 1999/04/16 01:51:35 stanton 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 bitmaps.  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 bitmap 0.5i 0.5i 
  23.     -bitmap @[file join $tk_library demos/images/flagdown.bmp] 
  24.     -background {} -foreground black -anchor nw
  25. $c create rect 0.47i 0.47i 0.53i 0.53i -fill {} -outline black
  26. $c create bitmap 3.0i 0.5i 
  27.     -bitmap @[file join $tk_library demos/images/flagdown.bmp] 
  28.     -background {} -foreground black -anchor n
  29. $c create rect 2.97i 0.47i 3.03i 0.53i -fill {} -outline black
  30. $c create bitmap 5.5i 0.5i 
  31.     -bitmap @[file join $tk_library demos/images/flagdown.bmp] 
  32.     -background black -foreground white -anchor ne
  33. $c create rect 5.47i 0.47i 5.53i 0.53i -fill {} -outline black
  34. $c create bitmap 0.5i 3.0i 
  35.     -bitmap @[file join $tk_library demos/images/face.bmp] 
  36.     -background {} -foreground black -anchor w
  37. $c create rect 0.47i 2.97i 0.53i 3.03i -fill {} -outline black
  38. $c create bitmap 3.0i 3.0i 
  39.     -bitmap @[file join $tk_library demos/images/face.bmp] 
  40.     -background {} -foreground black -anchor center
  41. $c create rect 2.97i 2.97i 3.03i 3.03i -fill {} -outline black
  42. $c create bitmap 5.5i 3.0i 
  43.     -bitmap @[file join $tk_library demos/images/face.bmp] 
  44.     -background blue -foreground black -anchor e
  45. $c create rect 5.47i 2.97i 5.53i 3.03i -fill {} -outline black
  46. $c create bitmap 0.5i 5.5i 
  47.     -bitmap @[file join $tk_library demos/images/flagup.bmp] 
  48.     -background black -foreground white -anchor sw
  49. $c create rect 0.47i 5.47i 0.53i 5.53i -fill {} -outline black
  50. $c create bitmap 3.0i 5.5i 
  51.     -bitmap @[file join $tk_library demos/images/flagup.bmp] 
  52.     -background green -foreground white -anchor s
  53. $c create rect 2.97i 5.47i 3.03i 5.53i -fill {} -outline black
  54. $c create bitmap 5.5i 5.5i 
  55.     -bitmap @[file join $tk_library demos/images/flagup.bmp] 
  56.     -background {} -foreground black -anchor se
  57. $c create rect 5.47i 5.47i 5.53i 5.53i -fill {} -outline black