Leaked source code of windows server 2003
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

61 lines
3.8 KiB

  1. /*
  2. PICTcomments.h -- QuickDraw picture comment symbolic names
  3. */
  4. #ifndef __PICTCOMMENTS__
  5. #define picLParen 0 /* Archaic grouping command (see IM I-159) */
  6. #define picRParen 1 /* Ends group begun by picRParen */
  7. #define picAppComment 100 /* Application-specific comment */
  8. #define picDwgBeg 130 /* Begin MacDraw picture */
  9. #define picDwgEnd 131 /* End MacDraw picture */
  10. #define picGrpBeg 140 /* Begin grouped objects */
  11. #define picGrpEnd 141 /* End grouped objects */
  12. #define picBitBeg 142 /* Begin series of bitmap bands */
  13. #define picBitEnd 143 /* End of bitmap bands */
  14. #define picTextBegin 150 /* Beginning of a text string */
  15. #define picTextEnd 151 /* End of text string */
  16. #define picStringBegin 152 /* Beginning of banded string */
  17. #define picStringEnd 153 /* End of banded string */
  18. #define picTextCenter 154 /* Center of rotation to picTextBegin */
  19. #define picLineLayoutOff 155 /* Turns off line layout */
  20. #define picLineLayoutOn 156 /* Turns on line layout */
  21. #define picLineLayout 157 /* Specify line layout for next text call */
  22. #define picPolyBegin 160 /* Following LineTo() operations are part of a polygon */
  23. #define picPolyEnd 161 /* End of special MacDraw polygon */
  24. #define picPlyByt 162 /* Following data part of freehand curve */
  25. #define picPolyIgnore 163 /* Ignore the following polygon */
  26. #define picPolySmooth 164 /* Close, fill, frame a polygon */
  27. #define picPlyClose 165 /* MacDraw polygon is closed */
  28. #define picArrw1 170 /* One arrow from point1 to point2 */
  29. #define picArrw2 171 /* One arrow from point2 to point1 */
  30. #define picArrw3 172 /* Two arrows, one on each end of a line */
  31. #define picArrwEnd 173 /* End of arrow comment */
  32. #define picDashedLine 180 /* Subsequent lines are PostScript dashed lines */
  33. #define picDashedStop 181 /* Ends picDashedLine comment */
  34. #define picSetLineWidth 182 /* Mult. fraction for pen size */
  35. #define picPostScriptBegin 190 /* Saves QD state; and send PostScript */
  36. #define picPostScriptEnd 191 /* Restore QD state */
  37. #define picPostScriptHandle 192 /* Remaining data is PostScript */
  38. #define picPostScriptFile 193 /* Use filename to send 'POST' resources */
  39. #define picTextIsPostScript 194 /* QD text is PostScript until picPostScriptEnd */
  40. #define picResourcePS 195 /* Send PostScript from 'STR ' or 'STR#' resources */
  41. #define picNewPostScriptBegin 196 /* Like picPostScriptBegin */
  42. #define picSetGrayLevel 197 /* Set gray level from fixed-point number */
  43. #define picRotateBegin 200 /* Begin rotation of the coordinate plane */
  44. #define picRotateEnd 201 /* End rotated plane */
  45. #define picRotateCenter 202 /* Specifies center of rotation */
  46. #define picFormsPrinting 210 /* Don�t flush print buffer after each page */
  47. #define picEndFormsPrinting 211 /* Ends forms printing */
  48. #define picAutoNap 214 /* used by MacDraw II */
  49. #define picAutoWake 215 /* used by MacDraw II */
  50. #define picManNap 216 /* used by MacDraw II */
  51. #define picManWake 217 /* used by MacDraw II */
  52. #define picCreator 498 /* File creator for application */
  53. #define picPICTScale 499 /* Scaling of image */
  54. #define picBegBitmapThin 1000 /* Begin bitmap thinning */
  55. #define picEndBitmapThin 1001 /* End bitmap thinning */
  56. #define picLasso 12345 /* Image in the scrap created using lasso */
  57. #define __PICTCOMMENTS__
  58. #endif
  59.