def DispatchDrawing(context, drawingType): """ Drawing dispatcher """ if drawingType == UIHandling.kHICommandSimpleRect: DrawingBasics.doSimpleRect(context) elif drawingType == UIHandling.kHICommandStrokedRect: DrawingBasics.doStrokedRect(context) elif drawingType == UIHandling.kHICommandStrokedAndFilledRect: DrawingBasics.doStrokedAndFilledRect(context) elif drawingType == UIHandling.kHICommandPathRects: DrawingBasics.doPathRects(context) elif drawingType == UIHandling.kHICommandAlphaRects: DrawingBasics.doAlphaRects(context) elif drawingType == UIHandling.kHICommandDashed: DrawingBasics.doDashedLines(context) elif drawingType == UIHandling.kHICommandSimpleClip: DrawingBasics.doClippedCircle(context) elif drawingType == UIHandling.kHICommandPDFDoc: callPDFDrawProc(context, DrawingBasics.doPDFDocument, kCatPDF) elif drawingType == UIHandling.kHICommandRotatedEllipses: CoordinateSystem.doRotatedEllipses(context) elif drawingType == UIHandling.kHICommandDrawSkewCoordinates: CoordinateSystem.drawSkewedCoordinateSystem(context) elif drawingType == UIHandling.kHICommandBezierEgg: PathDrawing.doEgg(context) elif drawingType == UIHandling.kHICommandRoundedRects: PathDrawing.doRoundedRects(context) elif drawingType == UIHandling.kHICommandStrokeWithCTM: PathDrawing.doStrokeWithCTM(context) elif drawingType == UIHandling.kHICommandRotatedEllipsesWithCGPath: PathDrawing.doRotatedEllipsesWithCGPath(context) elif drawingType == UIHandling.kHICommandPixelAligned: PathDrawing.doPixelAlignedFillAndStroke(context) elif drawingType == UIHandling.kHICommandDeviceFillAndStrokeColor: ColorAndGState.doColorSpaceFillAndStroke(context) elif drawingType == UIHandling.kHICommandCLUTDrawGraphics: ColorAndGState.doIndexedColorDrawGraphics(context) elif drawingType == UIHandling.kHICommandDrawWithGlobalAlpha: ColorAndGState.drawWithGlobalAlpha(context) elif drawingType == UIHandling.kHICommandDrawWithBlendMode: callPDFDrawProc(context, ColorAndGState.drawWithColorBlendMode, kPDFForBlendMode) elif drawingType == UIHandling.kHICommandDrawWithColorRefs: ColorAndGState.drawWithColorRefs(context) elif drawingType == UIHandling.kHICommandFunctionsHaveOwnGSave: ColorAndGState.doClippedEllipse(context) elif drawingType == UIHandling.kHICommandDrawJPEGImage: doDrawJPEGFile(context) elif drawingType == UIHandling.kHICommandColorImageFromFile: doRawImageFileWithURL(context) elif drawingType == UIHandling.kHICommandColorImageFromData: Images.doColorRampImage(context) elif drawingType == UIHandling.kHICommandColorImageFromCallbacks: doRawImageFileWithCallbacks(context) elif drawingType == UIHandling.kHICommandGrayRamp: Images.doGrayRamp(context) elif drawingType == UIHandling.kHICommandDrawWithCGImageSource: doDrawImageWithCGImageSource(context) elif drawingType == UIHandling.kHICommandDrawWithCGImageSourceIncremental: doIncrementalImage(context) elif drawingType == UIHandling.kHICommandDrawWithQuickTime: doQTImage(context) elif drawingType == UIHandling.kHICommandSubstituteImageProfile: doJPEGDocumentWithMultipleProfiles(context) elif drawingType == UIHandling.kHICommandDoSubImage: Images.doColorRampSubImage(context) elif drawingType == UIHandling.kHICommandExportWithQuickTime: Images.exportColorRampImageWithQT(context) elif drawingType == UIHandling.kHICommandMaskTurkeyImage: ImageMasking.doOneBitMaskImages(context) elif drawingType == UIHandling.kHICommandImageMaskedWithMask: doMaskImageWithMask(context) elif drawingType == UIHandling.kHICommandImageMaskedWithGrayImage: doMaskImageWithGrayImage(context) elif drawingType == UIHandling.kHICommandMaskImageWithColor: doImageMaskedWithColor(context) elif drawingType == UIHandling.kHICommandClipToMask: doClipMask(context) elif drawingType == UIHandling.kHICommandExportWithCGImageDestination: exportImageMaskedWithImage(context) elif drawingType == UIHandling.kHICommandSimpleCGLayer: BitmapContext.doSimpleCGLayer(context) elif drawingType == UIHandling.kHICommandAlphaOnlyContext: BitmapContext.doAlphaOnlyContext(context) elif drawingType == UIHandling.kHICommandDrawNoOffScreenImage: tilePDFDocument(context, noOffScreen) elif drawingType == UIHandling.kHICommandDrawOffScreenImage: tilePDFDocument(context, bitmapOffScreen) elif drawingType == UIHandling.kHICommandDrawWithLayer: tilePDFDocument(context, layerOffScreen) elif drawingType == UIHandling.kHICommandQuartzRomanText: QuartzTextDrawing.drawQuartzRomanText(context) elif drawingType == UIHandling.kHICommandQuartzTextModes: QuartzTextDrawing.drawQuartzTextWithTextModes(context) elif drawingType == UIHandling.kHICommandQuartzTextMatrix: QuartzTextDrawing.drawQuartzTextWithTextMatrix(context) elif drawingType == UIHandling.kHICommandSimplePattern: PatternDrawing.doRedBlackCheckerboard(context) elif drawingType == UIHandling.kHICommandPatternPhase: PatternDrawing.doPatternPhase(context) elif drawingType == UIHandling.kHICommandPatternMatrix: PatternDrawing.doPatternMatrix(context) elif drawingType == UIHandling.kHICommandUncoloredPattern: PatternDrawing.doStencilPattern(context) elif drawingType == UIHandling.kHICommandDrawWithPDFPattern: callPDFDrawProc(context, PatternDrawing.drawWithPDFPattern, kCatPDF) elif drawingType == UIHandling.kHICommandSimpleShadow: ShadowsAndTransparencyLayers.drawSimpleShadow(context) elif drawingType == UIHandling.kHICommandShadowScaling: ShadowsAndTransparencyLayers.doShadowScaling(context) elif drawingType == UIHandling.kHICommandShadowProblems: ShadowsAndTransparencyLayers.showComplexShadowIssues(context) elif drawingType == UIHandling.kHICommandComplexShadow: ShadowsAndTransparencyLayers.showComplexShadow(context) elif drawingType == UIHandling.kHICommandMultipleShapeComposite: ShadowsAndTransparencyLayers.doLayerCompositing(context) elif drawingType == UIHandling.kHICommandFillAndStrokeWithShadow: ShadowsAndTransparencyLayers.drawFillAndStrokeWithShadow(context) elif drawingType == UIHandling.kHICommandPDFDocumentShadow: callPDFDrawProc(context, ShadowsAndTransparencyLayers.shadowPDFDocument, kCatPDF) elif drawingType == UIHandling.kHICommandSimpleAxialShading: Shadings.doSimpleAxialShading(context) elif drawingType == UIHandling.kHICommandExampleAxialShadings: Shadings.doExampleAxialShading(context) elif drawingType == UIHandling.kHICommandSimpleRadialShading: Shadings.doSimpleRadialShading(context) elif drawingType == UIHandling.kHICommandExampleRadialShadings: Shadings.doExampleRadialShadings(context) elif drawingType == UIHandling.kHICommandEllipseShading: Shadings.doEllipseShading(context) elif drawingType == UIHandling.kHICommandDoCompatibleEPS: doCompatibleEPSDrawing(context)
def MyClipProc(c, x, y, info): Quartz.CGContextTranslateCTM(c, x, y) Quartz.CGContextSetStrokeColorWithColor(c, Utilities.getRGBOpaqueBlackColor()) # Draw a grid of lines through the clip. QuartzTextDrawing.drawGridLines(c)
def MyClipProc(c, x, y, info): CGContextTranslateCTM(c, x, y) CGContextSetStrokeColorWithColor(c, Utilities.getRGBOpaqueBlackColor()) # Draw a grid of lines through the clip. QuartzTextDrawing.drawGridLines(c);