Documentation
¶
Overview ¶
Package coregraphics provides purego-based Go bindings for the macOS CoreGraphics framework.
Apple documentation: https://developer.apple.com/documentation/coregraphics
Index ¶
- func CGAffineTransformConcat(t1 corefoundation.CGAffineTransform, t2 corefoundation.CGAffineTransform) corefoundation.CGAffineTransform
- func CGAffineTransformDecompose(transform corefoundation.CGAffineTransform) corefoundation.CGAffineTransformComponents
- func CGAffineTransformEqualToTransform(t1 corefoundation.CGAffineTransform, t2 corefoundation.CGAffineTransform) bool
- func CGAffineTransformIdentity() corefoundation.CGAffineTransform
- func CGAffineTransformInvert(t corefoundation.CGAffineTransform) corefoundation.CGAffineTransform
- func CGAffineTransformIsIdentity(t corefoundation.CGAffineTransform) bool
- func CGAffineTransformMake(a float64, b float64, c float64, d float64, tx float64, ty float64) corefoundation.CGAffineTransform
- func CGAffineTransformMakeRotation(angle float64) corefoundation.CGAffineTransform
- func CGAffineTransformMakeScale(sx float64, sy float64) corefoundation.CGAffineTransform
- func CGAffineTransformMakeTranslation(tx float64, ty float64) corefoundation.CGAffineTransform
- func CGAffineTransformMakeWithComponents(components corefoundation.CGAffineTransformComponents) corefoundation.CGAffineTransform
- func CGAffineTransformRotate(t corefoundation.CGAffineTransform, angle float64) corefoundation.CGAffineTransform
- func CGAffineTransformScale(t corefoundation.CGAffineTransform, sx float64, sy float64) corefoundation.CGAffineTransform
- func CGAffineTransformTranslate(t corefoundation.CGAffineTransform, tx float64, ty float64) corefoundation.CGAffineTransform
- func CGBitmapContextCreate(data unsafe.Pointer, width uint, height uint, bitsPerComponent uint, ...) unsafe.Pointer
- func CGBitmapContextCreateAdaptive(width uint, height uint, auxiliaryInfo unsafe.Pointer, ...) unsafe.Pointer
- func CGBitmapContextCreateImage(context_ unsafe.Pointer) unsafe.Pointer
- func CGBitmapContextCreateWithData(data unsafe.Pointer, width uint, height uint, bitsPerComponent uint, ...) unsafe.Pointer
- func CGBitmapContextGetBitsPerComponent(context_ unsafe.Pointer) uint
- func CGBitmapContextGetBitsPerPixel(context_ unsafe.Pointer) uint
- func CGBitmapContextGetBytesPerRow(context_ unsafe.Pointer) uint
- func CGBitmapContextGetColorSpace(context_ unsafe.Pointer) unsafe.Pointer
- func CGBitmapContextGetData(context_ unsafe.Pointer) unsafe.Pointer
- func CGBitmapContextGetHeight(context_ unsafe.Pointer) uint
- func CGBitmapContextGetWidth(context_ unsafe.Pointer) uint
- func CGColorConversionInfoConvertData(info unsafe.Pointer, width uint, height uint, dst_data unsafe.Pointer, ...) bool
- func CGColorConversionInfoCreate(src unsafe.Pointer, dst unsafe.Pointer) unsafe.Pointer
- func CGColorConversionInfoCreateForToneMapping(from unsafe.Pointer, source_headroom float32, to unsafe.Pointer, ...) unsafe.Pointer
- func CGColorConversionInfoCreateFromListWithArguments(options unsafe.Pointer, arg unsafe.Pointer, ...) unsafe.Pointer
- func CGColorConversionInfoCreateWithOptions(src unsafe.Pointer, dst unsafe.Pointer, options unsafe.Pointer) unsafe.Pointer
- func CGColorConversionInfoGetTypeID() uint
- func CGColorCreate(space unsafe.Pointer, components *float64) unsafe.Pointer
- func CGColorCreateCopy(color unsafe.Pointer) unsafe.Pointer
- func CGColorCreateCopyByMatchingToColorSpace(arg unsafe.Pointer, intent CGColorRenderingIntent, color unsafe.Pointer, ...) unsafe.Pointer
- func CGColorCreateCopyWithAlpha(color unsafe.Pointer, alpha float64) unsafe.Pointer
- func CGColorCreateGenericCMYK(cyan float64, magenta float64, yellow float64, black float64, alpha float64) unsafe.Pointer
- func CGColorCreateGenericGray(gray float64, alpha float64) unsafe.Pointer
- func CGColorCreateGenericGrayGamma2_2(gray float64, alpha float64) unsafe.Pointer
- func CGColorCreateGenericRGB(red float64, green float64, blue float64, alpha float64) unsafe.Pointer
- func CGColorCreateSRGB(red float64, green float64, blue float64, alpha float64) unsafe.Pointer
- func CGColorCreateWithContentHeadroom(headroom float32, space unsafe.Pointer, red float64, green float64, ...) unsafe.Pointer
- func CGColorCreateWithPattern(space unsafe.Pointer, pattern unsafe.Pointer, components *float64) unsafe.Pointer
- func CGColorEqualToColor(color1 unsafe.Pointer, color2 unsafe.Pointer) bool
- func CGColorGetAlpha(color unsafe.Pointer) float64
- func CGColorGetColorSpace(color unsafe.Pointer) unsafe.Pointer
- func CGColorGetComponents(color unsafe.Pointer) *float64
- func CGColorGetConstantColor(colorName unsafe.Pointer) unsafe.Pointer
- func CGColorGetContentHeadroom(color unsafe.Pointer) float32
- func CGColorGetNumberOfComponents(color unsafe.Pointer) uint
- func CGColorGetPattern(color unsafe.Pointer) unsafe.Pointer
- func CGColorGetTypeID() uint
- func CGColorRelease(color unsafe.Pointer)
- func CGColorRetain(color unsafe.Pointer) unsafe.Pointer
- func CGColorSpaceCopyBaseColorSpace(space unsafe.Pointer) unsafe.Pointer
- func CGColorSpaceCopyICCData(space unsafe.Pointer) unsafe.Pointer
- func CGColorSpaceCopyICCProfile(space unsafe.Pointer) unsafe.Pointerdeprecated
- func CGColorSpaceCopyName(space unsafe.Pointer) unsafe.Pointer
- func CGColorSpaceCopyPropertyList(space unsafe.Pointer) unsafe.Pointer
- func CGColorSpaceCreateCalibratedGray(whitePoint *float64, blackPoint *float64, gamma float64) unsafe.Pointer
- func CGColorSpaceCreateCalibratedRGB(whitePoint *float64, blackPoint *float64, gamma *float64, matrix *float64) unsafe.Pointer
- func CGColorSpaceCreateCopyWithStandardRange(space unsafe.Pointer) unsafe.Pointer
- func CGColorSpaceCreateDeviceCMYK() unsafe.Pointer
- func CGColorSpaceCreateDeviceGray() unsafe.Pointer
- func CGColorSpaceCreateDeviceRGB() unsafe.Pointer
- func CGColorSpaceCreateExtended(space unsafe.Pointer) unsafe.Pointer
- func CGColorSpaceCreateExtendedLinearized(space unsafe.Pointer) unsafe.Pointer
- func CGColorSpaceCreateICCBased(nComponents uint, range_ *float64, profile unsafe.Pointer, ...) unsafe.Pointer
- func CGColorSpaceCreateIndexed(baseSpace unsafe.Pointer, lastIndex uint, colorTable *uint8) unsafe.Pointer
- func CGColorSpaceCreateLab(whitePoint *float64, blackPoint *float64, range_ *float64) unsafe.Pointer
- func CGColorSpaceCreateLinearized(space unsafe.Pointer) unsafe.Pointer
- func CGColorSpaceCreatePattern(baseSpace unsafe.Pointer) unsafe.Pointer
- func CGColorSpaceCreateWithColorSyncProfile(arg unsafe.Pointer, options unsafe.Pointer) unsafe.Pointer
- func CGColorSpaceCreateWithICCData(data unsafe.Pointer) unsafe.Pointer
- func CGColorSpaceCreateWithICCProfile(data unsafe.Pointer) unsafe.Pointerdeprecated
- func CGColorSpaceCreateWithName(name unsafe.Pointer) unsafe.Pointer
- func CGColorSpaceCreateWithPlatformColorSpace(ref unsafe.Pointer) unsafe.Pointerdeprecated
- func CGColorSpaceCreateWithPropertyList(plist unsafe.Pointer) unsafe.Pointer
- func CGColorSpaceGetBaseColorSpace(space unsafe.Pointer) unsafe.Pointer
- func CGColorSpaceGetColorTable(space unsafe.Pointer, table *uint8)
- func CGColorSpaceGetColorTableCount(space unsafe.Pointer) uint
- func CGColorSpaceGetName(space unsafe.Pointer) unsafe.Pointer
- func CGColorSpaceGetNumberOfComponents(space unsafe.Pointer) uint
- func CGColorSpaceGetTypeID() uint
- func CGColorSpaceIsHDR(arg unsafe.Pointer) bool
- func CGColorSpaceIsHLGBased(s unsafe.Pointer) bool
- func CGColorSpaceIsPQBased(s unsafe.Pointer) bool
- func CGColorSpaceIsWideGamutRGB(arg unsafe.Pointer) bool
- func CGColorSpaceRelease(space unsafe.Pointer)
- func CGColorSpaceRetain(space unsafe.Pointer) unsafe.Pointer
- func CGColorSpaceSupportsOutput(space unsafe.Pointer) bool
- func CGColorSpaceUsesExtendedRange(space unsafe.Pointer) bool
- func CGColorSpaceUsesITUR_2100TF(arg unsafe.Pointer) bool
- func CGContextAddArc(c unsafe.Pointer, x float64, y float64, radius float64, startAngle float64, ...)
- func CGContextAddArcToPoint(c unsafe.Pointer, x1 float64, y1 float64, x2 float64, y2 float64, ...)
- func CGContextAddCurveToPoint(c unsafe.Pointer, cp1x float64, cp1y float64, cp2x float64, cp2y float64, ...)
- func CGContextAddEllipseInRect(c unsafe.Pointer, rect corefoundation.CGRect)
- func CGContextAddLineToPoint(c unsafe.Pointer, x float64, y float64)
- func CGContextAddLines(c unsafe.Pointer, points *corefoundation.CGPoint, count uint)
- func CGContextAddPath(c unsafe.Pointer, path unsafe.Pointer)
- func CGContextAddQuadCurveToPoint(c unsafe.Pointer, cpx float64, cpy float64, x float64, y float64)
- func CGContextAddRect(c unsafe.Pointer, rect corefoundation.CGRect)
- func CGContextAddRects(c unsafe.Pointer, rects *corefoundation.CGRect, count uint)
- func CGContextBeginPage(c unsafe.Pointer, mediaBox *corefoundation.CGRect)
- func CGContextBeginPath(c unsafe.Pointer)
- func CGContextBeginTransparencyLayer(c unsafe.Pointer, auxiliaryInfo unsafe.Pointer)
- func CGContextBeginTransparencyLayerWithRect(c unsafe.Pointer, rect corefoundation.CGRect, auxInfo unsafe.Pointer)
- func CGContextClearRect(c unsafe.Pointer, rect corefoundation.CGRect)
- func CGContextClip(c unsafe.Pointer)
- func CGContextClipToMask(c unsafe.Pointer, rect corefoundation.CGRect, mask unsafe.Pointer)
- func CGContextClipToRect(c unsafe.Pointer, rect corefoundation.CGRect)
- func CGContextClipToRects(c unsafe.Pointer, rects *corefoundation.CGRect, count uint)
- func CGContextClosePath(c unsafe.Pointer)
- func CGContextConcatCTM(c unsafe.Pointer, transform corefoundation.CGAffineTransform)
- func CGContextConvertPointToDeviceSpace(c unsafe.Pointer, point corefoundation.CGPoint) corefoundation.CGPoint
- func CGContextConvertPointToUserSpace(c unsafe.Pointer, point corefoundation.CGPoint) corefoundation.CGPoint
- func CGContextConvertRectToDeviceSpace(c unsafe.Pointer, rect corefoundation.CGRect) corefoundation.CGRect
- func CGContextConvertRectToUserSpace(c unsafe.Pointer, rect corefoundation.CGRect) corefoundation.CGRect
- func CGContextConvertSizeToDeviceSpace(c unsafe.Pointer, size corefoundation.CGSize) corefoundation.CGSize
- func CGContextConvertSizeToUserSpace(c unsafe.Pointer, size corefoundation.CGSize) corefoundation.CGSize
- func CGContextCopyPath(c unsafe.Pointer) unsafe.Pointer
- func CGContextDrawConicGradient(c unsafe.Pointer, gradient unsafe.Pointer, center corefoundation.CGPoint, ...)
- func CGContextDrawImage(c unsafe.Pointer, rect corefoundation.CGRect, image unsafe.Pointer)
- func CGContextDrawImageApplyingToneMapping(c unsafe.Pointer, r corefoundation.CGRect, image unsafe.Pointer, ...) bool
- func CGContextDrawLayerAtPoint(context_ unsafe.Pointer, point corefoundation.CGPoint, layer unsafe.Pointer)
- func CGContextDrawLayerInRect(context_ unsafe.Pointer, rect corefoundation.CGRect, layer unsafe.Pointer)
- func CGContextDrawLinearGradient(c unsafe.Pointer, gradient unsafe.Pointer, startPoint corefoundation.CGPoint, ...)
- func CGContextDrawPDFDocument(c unsafe.Pointer, rect corefoundation.CGRect, document unsafe.Pointer, ...)deprecated
- func CGContextDrawPDFPage(c unsafe.Pointer, page unsafe.Pointer)
- func CGContextDrawPath(c unsafe.Pointer, mode CGPathDrawingMode)
- func CGContextDrawRadialGradient(c unsafe.Pointer, gradient unsafe.Pointer, startCenter corefoundation.CGPoint, ...)
- func CGContextDrawShading(c unsafe.Pointer, shading unsafe.Pointer)
- func CGContextDrawTiledImage(c unsafe.Pointer, rect corefoundation.CGRect, image unsafe.Pointer)
- func CGContextEOClip(c unsafe.Pointer)
- func CGContextEOFillPath(c unsafe.Pointer)
- func CGContextEndPage(c unsafe.Pointer)
- func CGContextEndTransparencyLayer(c unsafe.Pointer)
- func CGContextFillEllipseInRect(c unsafe.Pointer, rect corefoundation.CGRect)
- func CGContextFillPath(c unsafe.Pointer)
- func CGContextFillRect(c unsafe.Pointer, rect corefoundation.CGRect)
- func CGContextFillRects(c unsafe.Pointer, rects *corefoundation.CGRect, count uint)
- func CGContextFlush(c unsafe.Pointer)
- func CGContextGetCTM(c unsafe.Pointer) corefoundation.CGAffineTransform
- func CGContextGetClipBoundingBox(c unsafe.Pointer) corefoundation.CGRect
- func CGContextGetEDRTargetHeadroom(c unsafe.Pointer) float32
- func CGContextGetPathBoundingBox(c unsafe.Pointer) corefoundation.CGRect
- func CGContextGetPathCurrentPoint(c unsafe.Pointer) corefoundation.CGPoint
- func CGContextGetTextMatrix(c unsafe.Pointer) corefoundation.CGAffineTransform
- func CGContextGetTextPosition(c unsafe.Pointer) corefoundation.CGPoint
- func CGContextGetTypeID() uint
- func CGContextGetUserSpaceToDeviceSpaceTransform(c unsafe.Pointer) corefoundation.CGAffineTransform
- func CGContextIsPathEmpty(c unsafe.Pointer) bool
- func CGContextMoveToPoint(c unsafe.Pointer, x float64, y float64)
- func CGContextPathContainsPoint(c unsafe.Pointer, point corefoundation.CGPoint, mode CGPathDrawingMode) bool
- func CGContextRelease(c unsafe.Pointer)
- func CGContextReplacePathWithStrokedPath(c unsafe.Pointer)
- func CGContextResetClip(c unsafe.Pointer)
- func CGContextRestoreGState(c unsafe.Pointer)
- func CGContextRetain(c unsafe.Pointer) unsafe.Pointer
- func CGContextRotateCTM(c unsafe.Pointer, angle float64)
- func CGContextSaveGState(c unsafe.Pointer)
- func CGContextScaleCTM(c unsafe.Pointer, sx float64, sy float64)
- func CGContextSelectFont(c unsafe.Pointer, name string, size float64, textEncoding CGTextEncoding)deprecated
- func CGContextSetAllowsAntialiasing(c unsafe.Pointer, allowsAntialiasing bool)
- func CGContextSetAllowsFontSmoothing(c unsafe.Pointer, allowsFontSmoothing bool)
- func CGContextSetAllowsFontSubpixelPositioning(c unsafe.Pointer, allowsFontSubpixelPositioning bool)
- func CGContextSetAllowsFontSubpixelQuantization(c unsafe.Pointer, allowsFontSubpixelQuantization bool)
- func CGContextSetAlpha(c unsafe.Pointer, alpha float64)
- func CGContextSetBlendMode(c unsafe.Pointer, mode CGBlendMode)
- func CGContextSetCMYKFillColor(c unsafe.Pointer, cyan float64, magenta float64, yellow float64, black float64, ...)
- func CGContextSetCMYKStrokeColor(c unsafe.Pointer, cyan float64, magenta float64, yellow float64, black float64, ...)
- func CGContextSetCharacterSpacing(c unsafe.Pointer, spacing float64)
- func CGContextSetContentToneMappingInfo(c unsafe.Pointer, info CGContentToneMappingInfo)
- func CGContextSetEDRTargetHeadroom(c unsafe.Pointer, headroom float32) bool
- func CGContextSetFillColor(c unsafe.Pointer, components *float64)
- func CGContextSetFillColorSpace(c unsafe.Pointer, space unsafe.Pointer)
- func CGContextSetFillColorWithColor(c unsafe.Pointer, color unsafe.Pointer)
- func CGContextSetFillPattern(c unsafe.Pointer, pattern unsafe.Pointer, components *float64)
- func CGContextSetFlatness(c unsafe.Pointer, flatness float64)
- func CGContextSetFont(c unsafe.Pointer, font unsafe.Pointer)
- func CGContextSetFontSize(c unsafe.Pointer, size float64)
- func CGContextSetGrayFillColor(c unsafe.Pointer, gray float64, alpha float64)
- func CGContextSetGrayStrokeColor(c unsafe.Pointer, gray float64, alpha float64)
- func CGContextSetInterpolationQuality(c unsafe.Pointer, quality CGInterpolationQuality)
- func CGContextSetLineCap(c unsafe.Pointer, cap_ CGLineCap)
- func CGContextSetLineDash(c unsafe.Pointer, phase float64, lengths *float64, count uint)
- func CGContextSetLineJoin(c unsafe.Pointer, join CGLineJoin)
- func CGContextSetLineWidth(c unsafe.Pointer, width float64)
- func CGContextSetMiterLimit(c unsafe.Pointer, limit float64)
- func CGContextSetPatternPhase(c unsafe.Pointer, phase corefoundation.CGSize)
- func CGContextSetRGBFillColor(c unsafe.Pointer, red float64, green float64, blue float64, alpha float64)
- func CGContextSetRGBStrokeColor(c unsafe.Pointer, red float64, green float64, blue float64, alpha float64)
- func CGContextSetRenderingIntent(c unsafe.Pointer, intent CGColorRenderingIntent)
- func CGContextSetShadow(c unsafe.Pointer, offset corefoundation.CGSize, blur float64)
- func CGContextSetShadowWithColor(c unsafe.Pointer, offset corefoundation.CGSize, blur float64, ...)
- func CGContextSetShouldAntialias(c unsafe.Pointer, shouldAntialias bool)
- func CGContextSetShouldSmoothFonts(c unsafe.Pointer, shouldSmoothFonts bool)
- func CGContextSetShouldSubpixelPositionFonts(c unsafe.Pointer, shouldSubpixelPositionFonts bool)
- func CGContextSetShouldSubpixelQuantizeFonts(c unsafe.Pointer, shouldSubpixelQuantizeFonts bool)
- func CGContextSetStrokeColor(c unsafe.Pointer, components *float64)
- func CGContextSetStrokeColorSpace(c unsafe.Pointer, space unsafe.Pointer)
- func CGContextSetStrokeColorWithColor(c unsafe.Pointer, color unsafe.Pointer)
- func CGContextSetStrokePattern(c unsafe.Pointer, pattern unsafe.Pointer, components *float64)
- func CGContextSetTextDrawingMode(c unsafe.Pointer, mode CGTextDrawingMode)
- func CGContextSetTextMatrix(c unsafe.Pointer, t corefoundation.CGAffineTransform)
- func CGContextSetTextPosition(c unsafe.Pointer, x float64, y float64)
- func CGContextShowGlyphs(c unsafe.Pointer, g *uint16, count uint)deprecated
- func CGContextShowGlyphsAtPoint(c unsafe.Pointer, x float64, y float64, glyphs *uint16, count uint)deprecated
- func CGContextShowGlyphsAtPositions(c unsafe.Pointer, glyphs *uint16, lpositions *corefoundation.CGPoint, ...)
- func CGContextShowGlyphsWithAdvances(c unsafe.Pointer, glyphs *uint16, advances *corefoundation.CGSize, count uint)deprecated
- func CGContextShowText(c unsafe.Pointer, string_ string, length uint)deprecated
- func CGContextShowTextAtPoint(c unsafe.Pointer, x float64, y float64, string_ string, length uint)deprecated
- func CGContextStrokeEllipseInRect(c unsafe.Pointer, rect corefoundation.CGRect)
- func CGContextStrokeLineSegments(c unsafe.Pointer, points *corefoundation.CGPoint, count uint)
- func CGContextStrokePath(c unsafe.Pointer)
- func CGContextStrokeRect(c unsafe.Pointer, rect corefoundation.CGRect)
- func CGContextStrokeRectWithWidth(c unsafe.Pointer, rect corefoundation.CGRect, width float64)
- func CGContextSynchronize(c unsafe.Pointer)
- func CGContextSynchronizeAttributes(c unsafe.Pointer)
- func CGContextTranslateCTM(c unsafe.Pointer, tx float64, ty float64)
- func CGConvertColorDataWithFormat(width uint, height uint, dst_data unsafe.Pointer, dst_format CGColorDataFormat, ...) bool
- func CGCursorIsDrawnInFramebuffer() intdeprecated
- func CGCursorIsVisible() intdeprecated
- func CGDataConsumerCreate(info unsafe.Pointer, cbks *CGDataConsumerCallbacks) unsafe.Pointer
- func CGDataConsumerCreateWithCFData(data unsafe.Pointer) unsafe.Pointer
- func CGDataConsumerCreateWithURL(url unsafe.Pointer) unsafe.Pointer
- func CGDataConsumerGetTypeID() uint
- func CGDataConsumerRelease(consumer unsafe.Pointer)
- func CGDataConsumerRetain(consumer unsafe.Pointer) unsafe.Pointer
- func CGDataProviderCopyData(provider unsafe.Pointer) unsafe.Pointer
- func CGDataProviderCreateDirect(info unsafe.Pointer, size int64, callbacks *CGDataProviderDirectCallbacks) unsafe.Pointer
- func CGDataProviderCreateSequential(info unsafe.Pointer, callbacks *CGDataProviderSequentialCallbacks) unsafe.Pointer
- func CGDataProviderCreateWithCFData(data unsafe.Pointer) unsafe.Pointer
- func CGDataProviderCreateWithData(info unsafe.Pointer, data unsafe.Pointer, size uint, ...) unsafe.Pointer
- func CGDataProviderCreateWithFilename(filename string) unsafe.Pointer
- func CGDataProviderCreateWithURL(url unsafe.Pointer) unsafe.Pointer
- func CGDataProviderGetInfo(provider unsafe.Pointer) unsafe.Pointer
- func CGDataProviderGetTypeID() uint
- func CGDataProviderRelease(provider unsafe.Pointer)
- func CGDataProviderRetain(provider unsafe.Pointer) unsafe.Pointer
- func CGDirectDisplayCopyCurrentMetalDevice(display uint32) unsafe.Pointer
- func CGDisplayAvailableModes(dsp uint32) unsafe.Pointerdeprecated
- func CGDisplayBestModeForParameters(display uint32, bitsPerPixel uint, width uint, height uint, exactMatch *int) unsafe.Pointerdeprecated
- func CGDisplayBestModeForParametersAndRefreshRate(display uint32, bitsPerPixel uint, width uint, height uint, ...) unsafe.Pointerdeprecated
- func CGDisplayBounds(display uint32) corefoundation.CGRect
- func CGDisplayCopyAllDisplayModes(display uint32, options unsafe.Pointer) unsafe.Pointer
- func CGDisplayCopyColorSpace(display uint32) unsafe.Pointer
- func CGDisplayCopyDisplayMode(display uint32) unsafe.Pointer
- func CGDisplayCurrentMode(display uint32) unsafe.Pointerdeprecated
- func CGDisplayFadeOperationInProgress() intdeprecated
- func CGDisplayGammaTableCapacity(display uint32) uint32
- func CGDisplayGetDrawingContext(display uint32) unsafe.Pointer
- func CGDisplayIDToOpenGLDisplayMask(display uint32) uint32
- func CGDisplayIOServicePort(display uint32) uintdeprecated
- func CGDisplayIsActive(display uint32) int
- func CGDisplayIsAlwaysInMirrorSet(display uint32) int
- func CGDisplayIsAsleep(display uint32) int
- func CGDisplayIsBuiltin(display uint32) int
- func CGDisplayIsCaptured(display uint32) intdeprecated
- func CGDisplayIsInHWMirrorSet(display uint32) int
- func CGDisplayIsInMirrorSet(display uint32) int
- func CGDisplayIsMain(display uint32) int
- func CGDisplayIsOnline(display uint32) int
- func CGDisplayIsStereo(display uint32) int
- func CGDisplayMirrorsDisplay(display uint32) uint32
- func CGDisplayModeCopyPixelEncoding(mode unsafe.Pointer) unsafe.Pointerdeprecated
- func CGDisplayModeGetHeight(mode unsafe.Pointer) uint
- func CGDisplayModeGetIODisplayModeID(mode unsafe.Pointer) int32
- func CGDisplayModeGetIOFlags(mode unsafe.Pointer) uint32
- func CGDisplayModeGetPixelHeight(mode unsafe.Pointer) uint
- func CGDisplayModeGetPixelWidth(mode unsafe.Pointer) uint
- func CGDisplayModeGetRefreshRate(mode unsafe.Pointer) float64
- func CGDisplayModeGetTypeID() uint
- func CGDisplayModeGetWidth(mode unsafe.Pointer) uint
- func CGDisplayModeIsUsableForDesktopGUI(mode unsafe.Pointer) bool
- func CGDisplayModeRelease(mode unsafe.Pointer)
- func CGDisplayModeRetain(mode unsafe.Pointer) unsafe.Pointer
- func CGDisplayModelNumber(display uint32) uint32
- func CGDisplayPixelsHigh(display uint32) uint
- func CGDisplayPixelsWide(display uint32) uint
- func CGDisplayPrimaryDisplay(display uint32) uint32
- func CGDisplayRestoreColorSyncSettings()
- func CGDisplayRotation(display uint32) float64
- func CGDisplayScreenSize(display uint32) corefoundation.CGSize
- func CGDisplaySerialNumber(display uint32) uint32
- func CGDisplayUnitNumber(display uint32) uint32
- func CGDisplayUsesOpenGLAcceleration(display uint32) int
- func CGDisplayVendorNumber(display uint32) uint32
- func CGEXRToneMappingGammaGetDefaultOptions() unsafe.Pointer
- func CGErrorSetCallback(callback unsafe.Pointer)
- func CGEventCreate(source unsafe.Pointer) unsafe.Pointer
- func CGEventCreateCopy(event unsafe.Pointer) unsafe.Pointer
- func CGEventCreateData(allocator unsafe.Pointer, event unsafe.Pointer) unsafe.Pointer
- func CGEventCreateFromData(allocator unsafe.Pointer, data unsafe.Pointer) unsafe.Pointer
- func CGEventCreateKeyboardEvent(source unsafe.Pointer, virtualKey uint16, keyDown bool) unsafe.Pointer
- func CGEventCreateMouseEvent(source unsafe.Pointer, mouseType CGEventType, ...) unsafe.Pointer
- func CGEventCreateScrollWheelEvent2(source unsafe.Pointer, units CGScrollEventUnit, wheelCount uint32, ...) unsafe.Pointer
- func CGEventCreateSourceFromEvent(event unsafe.Pointer) unsafe.Pointer
- func CGEventGetDoubleValueField(event unsafe.Pointer, field CGEventField) float64
- func CGEventGetIntegerValueField(event unsafe.Pointer, field CGEventField) int64
- func CGEventGetLocation(event unsafe.Pointer) corefoundation.CGPoint
- func CGEventGetTimestamp(event unsafe.Pointer) uint64
- func CGEventGetTypeID() uint
- func CGEventGetUnflippedLocation(event unsafe.Pointer) corefoundation.CGPoint
- func CGEventKeyboardGetUnicodeString(event unsafe.Pointer, maxStringLength uint, actualStringLength *uint, ...)
- func CGEventKeyboardSetUnicodeString(event unsafe.Pointer, stringLength uint, unicodeString *uint16)
- func CGEventPost(tap CGEventTapLocation, event unsafe.Pointer)
- func CGEventPostToPSN(processSerialNumber unsafe.Pointer, event unsafe.Pointer)
- func CGEventPostToPid(pid int, event unsafe.Pointer)
- func CGEventSetDoubleValueField(event unsafe.Pointer, field CGEventField, value float64)
- func CGEventSetFlags(event unsafe.Pointer, flags CGEventFlags)
- func CGEventSetIntegerValueField(event unsafe.Pointer, field CGEventField, value int64)
- func CGEventSetLocation(event unsafe.Pointer, location corefoundation.CGPoint)
- func CGEventSetSource(event unsafe.Pointer, source unsafe.Pointer)
- func CGEventSetTimestamp(event unsafe.Pointer, timestamp uint64)
- func CGEventSetType(event unsafe.Pointer, type_ CGEventType)
- func CGEventSourceButtonState(stateID CGEventSourceStateID, button CGMouseButton) bool
- func CGEventSourceCounterForEventType(stateID CGEventSourceStateID, eventType CGEventType) uint32
- func CGEventSourceCreate(stateID CGEventSourceStateID) unsafe.Pointer
- func CGEventSourceGetKeyboardType(source unsafe.Pointer) uint32
- func CGEventSourceGetLocalEventsSuppressionInterval(source unsafe.Pointer) float64
- func CGEventSourceGetPixelsPerLine(source unsafe.Pointer) float64
- func CGEventSourceGetTypeID() uint
- func CGEventSourceGetUserData(source unsafe.Pointer) int64
- func CGEventSourceKeyState(stateID CGEventSourceStateID, key uint16) bool
- func CGEventSourceSecondsSinceLastEventType(stateID CGEventSourceStateID, eventType CGEventType) float64
- func CGEventSourceSetKeyboardType(source unsafe.Pointer, keyboardType uint32)
- func CGEventSourceSetLocalEventsFilterDuringSuppressionState(source unsafe.Pointer, filter CGEventFilterMask, state CGEventSuppressionState)
- func CGEventSourceSetLocalEventsSuppressionInterval(source unsafe.Pointer, seconds float64)
- func CGEventSourceSetPixelsPerLine(source unsafe.Pointer, pixelsPerLine float64)
- func CGEventSourceSetUserData(source unsafe.Pointer, userData int64)
- func CGEventTapCreate(tap CGEventTapLocation, place CGEventTapPlacement, options CGEventTapOptions, ...) unsafe.Pointer
- func CGEventTapCreateForPSN(processSerialNumber unsafe.Pointer, place CGEventTapPlacement, ...) unsafe.Pointer
- func CGEventTapCreateForPid(pid int, place CGEventTapPlacement, options CGEventTapOptions, ...) unsafe.Pointer
- func CGEventTapEnable(tap unsafe.Pointer, enable bool)
- func CGEventTapIsEnabled(tap unsafe.Pointer) bool
- func CGEventTapPostEvent(proxy unsafe.Pointer, event unsafe.Pointer)
- func CGFontCanCreatePostScriptSubset(font unsafe.Pointer, format CGFontPostScriptFormat) bool
- func CGFontCopyFullName(font unsafe.Pointer) unsafe.Pointer
- func CGFontCopyGlyphNameForGlyph(font unsafe.Pointer, glyph uint16) unsafe.Pointer
- func CGFontCopyPostScriptName(font unsafe.Pointer) unsafe.Pointer
- func CGFontCopyTableForTag(font unsafe.Pointer, tag uint32) unsafe.Pointer
- func CGFontCopyTableTags(font unsafe.Pointer) unsafe.Pointer
- func CGFontCopyVariationAxes(font unsafe.Pointer) unsafe.Pointer
- func CGFontCopyVariations(font unsafe.Pointer) unsafe.Pointer
- func CGFontCreateCopyWithVariations(font unsafe.Pointer, variations unsafe.Pointer) unsafe.Pointer
- func CGFontCreatePostScriptEncoding(font unsafe.Pointer, encoding *uint16) unsafe.Pointer
- func CGFontCreatePostScriptSubset(font unsafe.Pointer, subsetName unsafe.Pointer, format CGFontPostScriptFormat, ...) unsafe.Pointer
- func CGFontCreateWithDataProvider(provider unsafe.Pointer) unsafe.Pointer
- func CGFontCreateWithFontName(name unsafe.Pointer) unsafe.Pointer
- func CGFontCreateWithPlatformFont(platformFontReference unsafe.Pointer) unsafe.Pointerdeprecated
- func CGFontGetAscent(font unsafe.Pointer) int
- func CGFontGetCapHeight(font unsafe.Pointer) int
- func CGFontGetDescent(font unsafe.Pointer) int
- func CGFontGetFontBBox(font unsafe.Pointer) corefoundation.CGRect
- func CGFontGetGlyphAdvances(font unsafe.Pointer, glyphs *uint16, count uint, advances *int32) bool
- func CGFontGetGlyphBBoxes(font unsafe.Pointer, glyphs *uint16, count uint, bboxes *corefoundation.CGRect) bool
- func CGFontGetGlyphWithGlyphName(font unsafe.Pointer, name unsafe.Pointer) uint16
- func CGFontGetItalicAngle(font unsafe.Pointer) float64
- func CGFontGetLeading(font unsafe.Pointer) int
- func CGFontGetNumberOfGlyphs(font unsafe.Pointer) uint
- func CGFontGetStemV(font unsafe.Pointer) float64
- func CGFontGetTypeID() uint
- func CGFontGetUnitsPerEm(font unsafe.Pointer) int
- func CGFontGetXHeight(font unsafe.Pointer) int
- func CGFontRelease(font unsafe.Pointer)
- func CGFontRetain(font unsafe.Pointer) unsafe.Pointer
- func CGFunctionCreate(info unsafe.Pointer, domainDimension uint, domain *float64, ...) unsafe.Pointer
- func CGFunctionGetTypeID() uint
- func CGFunctionRelease(function unsafe.Pointer)
- func CGFunctionRetain(function unsafe.Pointer) unsafe.Pointer
- func CGGetLastMouseDelta(deltaX *int32, deltaY *int32)
- func CGGradientCreateWithColorComponents(space unsafe.Pointer, components *float64, locations *float64, count uint) unsafe.Pointer
- func CGGradientCreateWithColors(space unsafe.Pointer, colors unsafe.Pointer, locations *float64) unsafe.Pointer
- func CGGradientCreateWithContentHeadroom(headroom float32, space unsafe.Pointer, components *float64, ...) unsafe.Pointer
- func CGGradientGetContentHeadroom(gradient unsafe.Pointer) float32
- func CGGradientGetTypeID() uint
- func CGGradientRelease(gradient unsafe.Pointer)
- func CGGradientRetain(gradient unsafe.Pointer) unsafe.Pointer
- func CGImageCalculateContentAverageLightLevel(image unsafe.Pointer) float32
- func CGImageCalculateContentHeadroom(image unsafe.Pointer) float32
- func CGImageContainsImageSpecificToneMappingMetadata(image unsafe.Pointer) bool
- func CGImageCreate(width uint, height uint, bitsPerComponent uint, bitsPerPixel uint, ...) unsafe.Pointer
- func CGImageCreateCopy(image unsafe.Pointer) unsafe.Pointer
- func CGImageCreateCopyWithCalculatedHDRStats(image unsafe.Pointer) unsafe.Pointer
- func CGImageCreateCopyWithColorSpace(image unsafe.Pointer, space unsafe.Pointer) unsafe.Pointer
- func CGImageCreateCopyWithContentAverageLightLevel(image unsafe.Pointer, avll float32) unsafe.Pointer
- func CGImageCreateCopyWithContentHeadroom(headroom float32, image unsafe.Pointer) unsafe.Pointer
- func CGImageCreateWithContentHeadroom(headroom float32, width uint, height uint, bitsPerComponent uint, ...) unsafe.Pointer
- func CGImageCreateWithImageInRect(image unsafe.Pointer, rect corefoundation.CGRect) unsafe.Pointer
- func CGImageCreateWithJPEGDataProvider(source unsafe.Pointer, decode *float64, shouldInterpolate bool, ...) unsafe.Pointer
- func CGImageCreateWithMask(image unsafe.Pointer, mask unsafe.Pointer) unsafe.Pointer
- func CGImageCreateWithMaskingColors(image unsafe.Pointer, components *float64) unsafe.Pointer
- func CGImageCreateWithPNGDataProvider(source unsafe.Pointer, decode *float64, shouldInterpolate bool, ...) unsafe.Pointer
- func CGImageGetBitsPerComponent(image unsafe.Pointer) uint
- func CGImageGetBitsPerPixel(image unsafe.Pointer) uint
- func CGImageGetBytesPerRow(image unsafe.Pointer) uint
- func CGImageGetColorSpace(image unsafe.Pointer) unsafe.Pointer
- func CGImageGetContentAverageLightLevel(image unsafe.Pointer) float32
- func CGImageGetContentHeadroom(image unsafe.Pointer) float32
- func CGImageGetDataProvider(image unsafe.Pointer) unsafe.Pointer
- func CGImageGetDecode(image unsafe.Pointer) *float64
- func CGImageGetHeight(image unsafe.Pointer) uint
- func CGImageGetShouldInterpolate(image unsafe.Pointer) bool
- func CGImageGetTypeID() uint
- func CGImageGetUTType(image unsafe.Pointer) unsafe.Pointer
- func CGImageGetWidth(image unsafe.Pointer) uint
- func CGImageIsMask(image unsafe.Pointer) bool
- func CGImageMaskCreate(width uint, height uint, bitsPerComponent uint, bitsPerPixel uint, ...) unsafe.Pointer
- func CGImageRelease(image unsafe.Pointer)
- func CGImageRetain(image unsafe.Pointer) unsafe.Pointer
- func CGImageShouldToneMap(image unsafe.Pointer) bool
- func CGLayerCreateWithContext(context_ unsafe.Pointer, size corefoundation.CGSize, ...) unsafe.Pointer
- func CGLayerGetContext(layer unsafe.Pointer) unsafe.Pointer
- func CGLayerGetSize(layer unsafe.Pointer) corefoundation.CGSize
- func CGLayerGetTypeID() uint
- func CGLayerRelease(layer unsafe.Pointer)
- func CGLayerRetain(layer unsafe.Pointer) unsafe.Pointer
- func CGMainDisplayID() uint32
- func CGOpenGLDisplayMaskToDisplayID(mask uint32) uint32
- func CGPDFArrayApplyBlock(array unsafe.Pointer, block func(uint, unsafe.Pointer, unsafe.Pointer) bool, ...)
- func CGPDFArrayGetArray(array unsafe.Pointer, index uint, value unsafe.Pointer) bool
- func CGPDFArrayGetBoolean(array unsafe.Pointer, index uint, value *uint8) bool
- func CGPDFArrayGetCount(array unsafe.Pointer) uint
- func CGPDFArrayGetDictionary(array unsafe.Pointer, index uint, value unsafe.Pointer) bool
- func CGPDFArrayGetInteger(array unsafe.Pointer, index uint, value *int) bool
- func CGPDFArrayGetName(array unsafe.Pointer, index uint, value string) bool
- func CGPDFArrayGetNull(array unsafe.Pointer, index uint) bool
- func CGPDFArrayGetNumber(array unsafe.Pointer, index uint, value *float64) bool
- func CGPDFArrayGetObject(array unsafe.Pointer, index uint, value unsafe.Pointer) bool
- func CGPDFArrayGetStream(array unsafe.Pointer, index uint, value unsafe.Pointer) bool
- func CGPDFArrayGetString(array unsafe.Pointer, index uint, value unsafe.Pointer) bool
- func CGPDFContentStreamCreateWithPage(page unsafe.Pointer) unsafe.Pointer
- func CGPDFContentStreamCreateWithStream(stream unsafe.Pointer, streamResources unsafe.Pointer, parent unsafe.Pointer) unsafe.Pointer
- func CGPDFContentStreamGetResource(cs unsafe.Pointer, category string, name string) unsafe.Pointer
- func CGPDFContentStreamGetStreams(cs unsafe.Pointer) unsafe.Pointer
- func CGPDFContentStreamRelease(cs unsafe.Pointer)
- func CGPDFContentStreamRetain(cs unsafe.Pointer) unsafe.Pointer
- func CGPDFContextAddDestinationAtPoint(context_ unsafe.Pointer, name unsafe.Pointer, point corefoundation.CGPoint)
- func CGPDFContextAddDocumentMetadata(context_ unsafe.Pointer, metadata unsafe.Pointer)
- func CGPDFContextBeginPage(context_ unsafe.Pointer, pageInfo unsafe.Pointer)
- func CGPDFContextBeginTag(context_ unsafe.Pointer, tagType CGPDFTagType, tagProperties unsafe.Pointer)
- func CGPDFContextClose(context_ unsafe.Pointer)
- func CGPDFContextCreate(consumer unsafe.Pointer, mediaBox *corefoundation.CGRect, ...) unsafe.Pointer
- func CGPDFContextCreateWithURL(url unsafe.Pointer, mediaBox *corefoundation.CGRect, ...) unsafe.Pointer
- func CGPDFContextEndPage(context_ unsafe.Pointer)
- func CGPDFContextEndTag(context_ unsafe.Pointer)
- func CGPDFContextSetDestinationForRect(context_ unsafe.Pointer, name unsafe.Pointer, rect corefoundation.CGRect)
- func CGPDFContextSetIDTree(context_ unsafe.Pointer, iDTreeDictionary unsafe.Pointer)
- func CGPDFContextSetOutline(context_ unsafe.Pointer, outline unsafe.Pointer)
- func CGPDFContextSetPageTagStructureTree(context_ unsafe.Pointer, pageTagStructureTreeDictionary unsafe.Pointer)
- func CGPDFContextSetParentTree(context_ unsafe.Pointer, parentTreeDictionary unsafe.Pointer)
- func CGPDFContextSetURLForRect(context_ unsafe.Pointer, url unsafe.Pointer, rect corefoundation.CGRect)
- func CGPDFDictionaryApplyBlock(dict unsafe.Pointer, block func(string, unsafe.Pointer, unsafe.Pointer) bool, ...)
- func CGPDFDictionaryApplyFunction(dict unsafe.Pointer, function unsafe.Pointer, info unsafe.Pointer)
- func CGPDFDictionaryGetArray(dict unsafe.Pointer, key string, value unsafe.Pointer) bool
- func CGPDFDictionaryGetBoolean(dict unsafe.Pointer, key string, value *uint8) bool
- func CGPDFDictionaryGetCount(dict unsafe.Pointer) uint
- func CGPDFDictionaryGetDictionary(dict unsafe.Pointer, key string, value unsafe.Pointer) bool
- func CGPDFDictionaryGetInteger(dict unsafe.Pointer, key string, value *int) bool
- func CGPDFDictionaryGetName(dict unsafe.Pointer, key string, value string) bool
- func CGPDFDictionaryGetNumber(dict unsafe.Pointer, key string, value *float64) bool
- func CGPDFDictionaryGetObject(dict unsafe.Pointer, key string, value unsafe.Pointer) bool
- func CGPDFDictionaryGetStream(dict unsafe.Pointer, key string, value unsafe.Pointer) bool
- func CGPDFDictionaryGetString(dict unsafe.Pointer, key string, value unsafe.Pointer) bool
- func CGPDFDocumentAllowsCopying(document unsafe.Pointer) bool
- func CGPDFDocumentAllowsPrinting(document unsafe.Pointer) bool
- func CGPDFDocumentCreateWithProvider(provider unsafe.Pointer) unsafe.Pointer
- func CGPDFDocumentCreateWithURL(url unsafe.Pointer) unsafe.Pointer
- func CGPDFDocumentGetArtBox(document unsafe.Pointer, page int) corefoundation.CGRectdeprecated
- func CGPDFDocumentGetBleedBox(document unsafe.Pointer, page int) corefoundation.CGRectdeprecated
- func CGPDFDocumentGetCatalog(document unsafe.Pointer) unsafe.Pointer
- func CGPDFDocumentGetCropBox(document unsafe.Pointer, page int) corefoundation.CGRectdeprecated
- func CGPDFDocumentGetID(document unsafe.Pointer) unsafe.Pointer
- func CGPDFDocumentGetInfo(document unsafe.Pointer) unsafe.Pointer
- func CGPDFDocumentGetMediaBox(document unsafe.Pointer, page int) corefoundation.CGRectdeprecated
- func CGPDFDocumentGetNumberOfPages(document unsafe.Pointer) uint
- func CGPDFDocumentGetOutline(document unsafe.Pointer) unsafe.Pointer
- func CGPDFDocumentGetPage(document unsafe.Pointer, pageNumber uint) unsafe.Pointer
- func CGPDFDocumentGetRotationAngle(document unsafe.Pointer, page int) intdeprecated
- func CGPDFDocumentGetTrimBox(document unsafe.Pointer, page int) corefoundation.CGRectdeprecated
- func CGPDFDocumentGetTypeID() uint
- func CGPDFDocumentGetVersion(document unsafe.Pointer, majorVersion *int32, minorVersion *int32)
- func CGPDFDocumentIsEncrypted(document unsafe.Pointer) bool
- func CGPDFDocumentIsUnlocked(document unsafe.Pointer) bool
- func CGPDFDocumentRelease(document unsafe.Pointer)
- func CGPDFDocumentRetain(document unsafe.Pointer) unsafe.Pointer
- func CGPDFDocumentUnlockWithPassword(document unsafe.Pointer, password string) bool
- func CGPDFObjectGetValue(object unsafe.Pointer, type_ CGPDFObjectType, value unsafe.Pointer) bool
- func CGPDFOperatorTableCreate() unsafe.Pointer
- func CGPDFOperatorTableRelease(table unsafe.Pointer)
- func CGPDFOperatorTableRetain(table unsafe.Pointer) unsafe.Pointer
- func CGPDFOperatorTableSetCallback(table unsafe.Pointer, name string, callback unsafe.Pointer)
- func CGPDFPageGetBoxRect(page unsafe.Pointer, box CGPDFBox) corefoundation.CGRect
- func CGPDFPageGetDictionary(page unsafe.Pointer) unsafe.Pointer
- func CGPDFPageGetDocument(page unsafe.Pointer) unsafe.Pointer
- func CGPDFPageGetDrawingTransform(page unsafe.Pointer, box CGPDFBox, rect corefoundation.CGRect, rotate int, ...) corefoundation.CGAffineTransform
- func CGPDFPageGetPageNumber(page unsafe.Pointer) uint
- func CGPDFPageGetRotationAngle(page unsafe.Pointer) int
- func CGPDFPageGetTypeID() uint
- func CGPDFPageRelease(page unsafe.Pointer)
- func CGPDFPageRetain(page unsafe.Pointer) unsafe.Pointer
- func CGPDFScannerCreate(cs unsafe.Pointer, table unsafe.Pointer, info unsafe.Pointer) unsafe.Pointer
- func CGPDFScannerGetContentStream(scanner unsafe.Pointer) unsafe.Pointer
- func CGPDFScannerPopArray(scanner unsafe.Pointer, value unsafe.Pointer) bool
- func CGPDFScannerPopBoolean(scanner unsafe.Pointer, value *uint8) bool
- func CGPDFScannerPopDictionary(scanner unsafe.Pointer, value unsafe.Pointer) bool
- func CGPDFScannerPopInteger(scanner unsafe.Pointer, value *int) bool
- func CGPDFScannerPopName(scanner unsafe.Pointer, value string) bool
- func CGPDFScannerPopNumber(scanner unsafe.Pointer, value *float64) bool
- func CGPDFScannerPopObject(scanner unsafe.Pointer, value unsafe.Pointer) bool
- func CGPDFScannerPopStream(scanner unsafe.Pointer, value unsafe.Pointer) bool
- func CGPDFScannerPopString(scanner unsafe.Pointer, value unsafe.Pointer) bool
- func CGPDFScannerRelease(scanner unsafe.Pointer)
- func CGPDFScannerRetain(scanner unsafe.Pointer) unsafe.Pointer
- func CGPDFScannerScan(scanner unsafe.Pointer) bool
- func CGPDFScannerStop(s unsafe.Pointer)
- func CGPDFStreamCopyData(stream unsafe.Pointer, format *CGPDFDataFormat) unsafe.Pointer
- func CGPDFStreamGetDictionary(stream unsafe.Pointer) unsafe.Pointer
- func CGPDFStringCopyDate(string_ unsafe.Pointer) unsafe.Pointer
- func CGPDFStringCopyTextString(string_ unsafe.Pointer) unsafe.Pointer
- func CGPDFStringGetBytePtr(string_ unsafe.Pointer) unsafe.Pointer
- func CGPDFStringGetLength(string_ unsafe.Pointer) uint
- func CGPDFTagTypeGetName(tagType CGPDFTagType) string
- func CGPSConverterAbort(converter unsafe.Pointer) bool
- func CGPSConverterConvert(converter unsafe.Pointer, provider unsafe.Pointer, consumer unsafe.Pointer, ...) bool
- func CGPSConverterCreate(info unsafe.Pointer, callbacks *CGPSConverterCallbacks, options unsafe.Pointer) unsafe.Pointer
- func CGPSConverterGetTypeID() uint
- func CGPSConverterIsConverting(converter unsafe.Pointer) bool
- func CGPathAddArc(path unsafe.Pointer, m *corefoundation.CGAffineTransform, x float64, y float64, ...)
- func CGPathAddArcToPoint(path unsafe.Pointer, m *corefoundation.CGAffineTransform, x1 float64, ...)
- func CGPathAddCurveToPoint(path unsafe.Pointer, m *corefoundation.CGAffineTransform, cp1x float64, ...)
- func CGPathAddEllipseInRect(path unsafe.Pointer, m *corefoundation.CGAffineTransform, ...)
- func CGPathAddLineToPoint(path unsafe.Pointer, m *corefoundation.CGAffineTransform, x float64, y float64)
- func CGPathAddLines(path unsafe.Pointer, m *corefoundation.CGAffineTransform, ...)
- func CGPathAddPath(path1 unsafe.Pointer, m *corefoundation.CGAffineTransform, ...)
- func CGPathAddQuadCurveToPoint(path unsafe.Pointer, m *corefoundation.CGAffineTransform, cpx float64, ...)
- func CGPathAddRect(path unsafe.Pointer, m *corefoundation.CGAffineTransform, ...)
- func CGPathAddRects(path unsafe.Pointer, m *corefoundation.CGAffineTransform, ...)
- func CGPathAddRelativeArc(path unsafe.Pointer, matrix *corefoundation.CGAffineTransform, x float64, ...)
- func CGPathAddRoundedRect(path unsafe.Pointer, transform *corefoundation.CGAffineTransform, ...)
- func CGPathApply(path unsafe.Pointer, info unsafe.Pointer, function unsafe.Pointer)
- func CGPathApplyWithBlock(path unsafe.Pointer, block func(*CGPathElement))
- func CGPathCloseSubpath(path unsafe.Pointer)
- func CGPathContainsPoint(path unsafe.Pointer, m *corefoundation.CGAffineTransform, ...) bool
- func CGPathCreateCopy(path unsafe.Pointer) unsafe.Pointer
- func CGPathCreateCopyByDashingPath(path unsafe.Pointer, transform *corefoundation.CGAffineTransform, ...) unsafe.Pointer
- func CGPathCreateCopyByFlattening(path unsafe.Pointer, flatteningThreshold float64) unsafe.Pointer
- func CGPathCreateCopyByIntersectingPath(path unsafe.Pointer, maskPath unsafe.Pointer, evenOddFillRule bool) unsafe.Pointer
- func CGPathCreateCopyByNormalizing(path unsafe.Pointer, evenOddFillRule bool) unsafe.Pointer
- func CGPathCreateCopyByStrokingPath(path unsafe.Pointer, transform *corefoundation.CGAffineTransform, ...) unsafe.Pointer
- func CGPathCreateCopyBySubtractingPath(path unsafe.Pointer, maskPath unsafe.Pointer, evenOddFillRule bool) unsafe.Pointer
- func CGPathCreateCopyBySymmetricDifferenceOfPath(path unsafe.Pointer, maskPath unsafe.Pointer, evenOddFillRule bool) unsafe.Pointer
- func CGPathCreateCopyByTransformingPath(path unsafe.Pointer, transform *corefoundation.CGAffineTransform) unsafe.Pointer
- func CGPathCreateCopyByUnioningPath(path unsafe.Pointer, maskPath unsafe.Pointer, evenOddFillRule bool) unsafe.Pointer
- func CGPathCreateCopyOfLineByIntersectingPath(path unsafe.Pointer, maskPath unsafe.Pointer, evenOddFillRule bool) unsafe.Pointer
- func CGPathCreateCopyOfLineBySubtractingPath(path unsafe.Pointer, maskPath unsafe.Pointer, evenOddFillRule bool) unsafe.Pointer
- func CGPathCreateMutable() unsafe.Pointer
- func CGPathCreateMutableCopy(path unsafe.Pointer) unsafe.Pointer
- func CGPathCreateMutableCopyByTransformingPath(path unsafe.Pointer, transform *corefoundation.CGAffineTransform) unsafe.Pointer
- func CGPathCreateSeparateComponents(path unsafe.Pointer, evenOddFillRule bool) unsafe.Pointer
- func CGPathCreateWithEllipseInRect(rect corefoundation.CGRect, transform *corefoundation.CGAffineTransform) unsafe.Pointer
- func CGPathCreateWithRect(rect corefoundation.CGRect, transform *corefoundation.CGAffineTransform) unsafe.Pointer
- func CGPathCreateWithRoundedRect(rect corefoundation.CGRect, cornerWidth float64, cornerHeight float64, ...) unsafe.Pointer
- func CGPathEqualToPath(path1 unsafe.Pointer, path2 unsafe.Pointer) bool
- func CGPathGetBoundingBox(path unsafe.Pointer) corefoundation.CGRect
- func CGPathGetCurrentPoint(path unsafe.Pointer) corefoundation.CGPoint
- func CGPathGetPathBoundingBox(path unsafe.Pointer) corefoundation.CGRect
- func CGPathGetTypeID() uint
- func CGPathIntersectsPath(path1 unsafe.Pointer, path2 unsafe.Pointer, evenOddFillRule bool) bool
- func CGPathIsEmpty(path unsafe.Pointer) bool
- func CGPathIsRect(path unsafe.Pointer, rect *corefoundation.CGRect) bool
- func CGPathMoveToPoint(path unsafe.Pointer, m *corefoundation.CGAffineTransform, x float64, y float64)
- func CGPathRelease(path unsafe.Pointer)
- func CGPathRetain(path unsafe.Pointer) unsafe.Pointer
- func CGPatternCreate(info unsafe.Pointer, bounds corefoundation.CGRect, ...) unsafe.Pointer
- func CGPatternGetTypeID() uint
- func CGPatternRelease(pattern unsafe.Pointer)
- func CGPatternRetain(pattern unsafe.Pointer) unsafe.Pointer
- func CGPointApplyAffineTransform(point corefoundation.CGPoint, t corefoundation.CGAffineTransform) corefoundation.CGPoint
- func CGPointCreateDictionaryRepresentation(point corefoundation.CGPoint) unsafe.Pointer
- func CGPointEqualToPoint(point1 corefoundation.CGPoint, point2 corefoundation.CGPoint) bool
- func CGPointMake(x float64, y float64) corefoundation.CGPoint
- func CGPointMakeWithDictionaryRepresentation(dict unsafe.Pointer, point *corefoundation.CGPoint) bool
- func CGPointZero() corefoundation.CGPoint
- func CGPreflightListenEventAccess() bool
- func CGPreflightPostEventAccess() bool
- func CGPreflightScreenCaptureAccess() bool
- func CGRectApplyAffineTransform(rect corefoundation.CGRect, t corefoundation.CGAffineTransform) corefoundation.CGRect
- func CGRectContainsPoint(rect corefoundation.CGRect, point corefoundation.CGPoint) bool
- func CGRectContainsRect(rect1 corefoundation.CGRect, rect2 corefoundation.CGRect) bool
- func CGRectCreateDictionaryRepresentation(arg corefoundation.CGRect) unsafe.Pointer
- func CGRectDivide(rect corefoundation.CGRect, slice *corefoundation.CGRect, ...)
- func CGRectEqualToRect(rect1 corefoundation.CGRect, rect2 corefoundation.CGRect) bool
- func CGRectGetHeight(rect corefoundation.CGRect) float64
- func CGRectGetMaxX(rect corefoundation.CGRect) float64
- func CGRectGetMaxY(rect corefoundation.CGRect) float64
- func CGRectGetMidX(rect corefoundation.CGRect) float64
- func CGRectGetMidY(rect corefoundation.CGRect) float64
- func CGRectGetMinX(rect corefoundation.CGRect) float64
- func CGRectGetMinY(rect corefoundation.CGRect) float64
- func CGRectGetWidth(rect corefoundation.CGRect) float64
- func CGRectInfinite() corefoundation.CGRect
- func CGRectInset(rect corefoundation.CGRect, dx float64, dy float64) corefoundation.CGRect
- func CGRectIntegral(rect corefoundation.CGRect) corefoundation.CGRect
- func CGRectIntersection(r1 corefoundation.CGRect, r2 corefoundation.CGRect) corefoundation.CGRect
- func CGRectIntersectsRect(rect1 corefoundation.CGRect, rect2 corefoundation.CGRect) bool
- func CGRectIsEmpty(rect corefoundation.CGRect) bool
- func CGRectIsInfinite(rect corefoundation.CGRect) bool
- func CGRectIsNull(rect corefoundation.CGRect) bool
- func CGRectMake(x float64, y float64, width float64, height float64) corefoundation.CGRect
- func CGRectMakeWithDictionaryRepresentation(dict unsafe.Pointer, rect *corefoundation.CGRect) bool
- func CGRectNull() corefoundation.CGRect
- func CGRectOffset(rect corefoundation.CGRect, dx float64, dy float64) corefoundation.CGRect
- func CGRectStandardize(rect corefoundation.CGRect) corefoundation.CGRect
- func CGRectUnion(r1 corefoundation.CGRect, r2 corefoundation.CGRect) corefoundation.CGRect
- func CGRectZero() corefoundation.CGRect
- func CGReleaseScreenRefreshRects(rects *corefoundation.CGRect)deprecated
- func CGRenderingBufferLockBytePtr(provider unsafe.Pointer) unsafe.Pointer
- func CGRenderingBufferProviderCreate(info unsafe.Pointer, size uint, ...) unsafe.Pointer
- func CGRenderingBufferProviderCreateWithCFData(data unsafe.Pointer) unsafe.Pointer
- func CGRenderingBufferProviderGetSize(provider unsafe.Pointer) uint
- func CGRenderingBufferProviderGetTypeID() uint
- func CGRenderingBufferUnlockBytePtr(provider unsafe.Pointer)
- func CGRequestListenEventAccess() bool
- func CGRequestPostEventAccess() bool
- func CGRequestScreenCaptureAccess() bool
- func CGRestorePermanentDisplayConfiguration()
- func CGScreenUnregisterMoveCallback(callback unsafe.Pointer, userInfo unsafe.Pointer)deprecated
- func CGSessionCopyCurrentDictionary() unsafe.Pointer
- func CGShadingCreateAxial(space unsafe.Pointer, start corefoundation.CGPoint, end corefoundation.CGPoint, ...) unsafe.Pointer
- func CGShadingCreateAxialWithContentHeadroom(headroom float32, space unsafe.Pointer, start corefoundation.CGPoint, ...) unsafe.Pointer
- func CGShadingCreateRadial(space unsafe.Pointer, start corefoundation.CGPoint, startRadius float64, ...) unsafe.Pointer
- func CGShadingCreateRadialWithContentHeadroom(headroom float32, space unsafe.Pointer, start corefoundation.CGPoint, ...) unsafe.Pointer
- func CGShadingGetContentHeadroom(shading unsafe.Pointer) float32
- func CGShadingGetTypeID() uint
- func CGShadingRelease(shading unsafe.Pointer)
- func CGShadingRetain(shading unsafe.Pointer) unsafe.Pointer
- func CGShieldingWindowID(display uint32) uint32
- func CGShieldingWindowLevel() int32
- func CGSizeApplyAffineTransform(size corefoundation.CGSize, t corefoundation.CGAffineTransform) corefoundation.CGSize
- func CGSizeCreateDictionaryRepresentation(size corefoundation.CGSize) unsafe.Pointer
- func CGSizeEqualToSize(size1 corefoundation.CGSize, size2 corefoundation.CGSize) bool
- func CGSizeMake(width float64, height float64) corefoundation.CGSize
- func CGSizeMakeWithDictionaryRepresentation(dict unsafe.Pointer, size *corefoundation.CGSize) bool
- func CGSizeZero() corefoundation.CGSize
- func CGUnregisterScreenRefreshCallback(callback unsafe.Pointer, userInfo unsafe.Pointer)deprecated
- func CGVectorMake(dx float64, dy float64) corefoundation.CGVector
- func CGWindowLevelForKey(key CGWindowLevelKey) int32
- func CGWindowListCopyWindowInfo(option CGWindowListOption, relativeToWindow uint32) unsafe.Pointer
- func CGWindowListCreate(option CGWindowListOption, relativeToWindow uint32) unsafe.Pointer
- func CGWindowListCreateDescriptionFromArray(windowArray unsafe.Pointer) unsafe.Pointer
- func CGWindowListCreateImage(screenBounds corefoundation.CGRect, listOption CGWindowListOption, ...) unsafe.Pointer
- func CGWindowListCreateImageFromArray(screenBounds corefoundation.CGRect, windowArray unsafe.Pointer, ...) unsafe.Pointer
- func CGWindowServerCFMachPort() unsafe.Pointerdeprecated
- func CGWindowServerCreateServerPort() unsafe.Pointer
- func KCGAdaptiveMaximumBitDepth() uintptr
- func KCGColorBlack() uintptr
- func KCGColorClear() uintptr
- func KCGColorConversionBlackPointCompensation() uintptr
- func KCGColorConversionTRCSize() uintptr
- func KCGColorSpaceACESCGLinear() uintptr
- func KCGColorSpaceAdobeRGB1998() uintptr
- func KCGColorSpaceCoreMedia709() uintptr
- func KCGColorSpaceDCIP3() uintptr
- func KCGColorSpaceDisplayP3() uintptr
- func KCGColorSpaceDisplayP3_HLG() uintptr
- func KCGColorSpaceDisplayP3_PQ() uintptr
- func KCGColorSpaceDisplayP3_PQ_EOTF() uintptrdeprecated
- func KCGColorSpaceExtendedDisplayP3() uintptr
- func KCGColorSpaceExtendedGray() uintptr
- func KCGColorSpaceExtendedITUR_2020() uintptr
- func KCGColorSpaceExtendedLinearDisplayP3() uintptr
- func KCGColorSpaceExtendedLinearGray() uintptr
- func KCGColorSpaceExtendedLinearITUR_2020() uintptr
- func KCGColorSpaceExtendedLinearSRGB() uintptr
- func KCGColorSpaceExtendedRange() uintptr
- func KCGColorSpaceExtendedSRGB() uintptr
- func KCGColorSpaceGenericCMYK() uintptr
- func KCGColorSpaceGenericGray() uintptr
- func KCGColorSpaceGenericGrayGamma2_2() uintptr
- func KCGColorSpaceGenericLab() uintptr
- func KCGColorSpaceGenericRGB() uintptr
- func KCGColorSpaceGenericRGBLinear() uintptr
- func KCGColorSpaceGenericXYZ() uintptr
- func KCGColorSpaceITUR_709() uintptr
- func KCGColorSpaceITUR_709_HLG() uintptr
- func KCGColorSpaceITUR_709_PQ() uintptr
- func KCGColorSpaceITUR_2020() uintptr
- func KCGColorSpaceITUR_2020_HLG() uintptrdeprecated
- func KCGColorSpaceITUR_2020_PQ() uintptrdeprecated
- func KCGColorSpaceITUR_2020_PQ_EOTF() uintptrdeprecated
- func KCGColorSpaceITUR_2020_sRGBGamma() uintptr
- func KCGColorSpaceITUR_2100_HLG() uintptr
- func KCGColorSpaceITUR_2100_PQ() uintptr
- func KCGColorSpaceLinearDisplayP3() uintptr
- func KCGColorSpaceLinearGray() uintptr
- func KCGColorSpaceLinearITUR_2020() uintptr
- func KCGColorSpaceLinearSRGB() uintptr
- func KCGColorSpaceROMMRGB() uintptr
- func KCGColorSpaceSRGB() uintptr
- func KCGColorWhite() uintptr
- func KCGContentAverageLightLevel() uintptr
- func KCGContentAverageLightLevelNits() uintptr
- func KCGDefaultHDRImageContentHeadroom() float32
- func KCGDisplayShowDuplicateLowResolutionModes() uintptr
- func KCGDisplayStreamYCbCrMatrix_SMPTE_240M_1995() uintptr
- func KCGDynamicRangeConstrained() uintptr
- func KCGDynamicRangeHigh() uintptr
- func KCGDynamicRangeStandard() uintptr
- func KCGEXRToneMappingGammaDefog() uintptr
- func KCGEXRToneMappingGammaExposure() uintptr
- func KCGEXRToneMappingGammaKneeHigh() uintptr
- func KCGEXRToneMappingGammaKneeLow() uintptr
- func KCGFontVariationAxisDefaultValue() uintptr
- func KCGFontVariationAxisMaxValue() uintptr
- func KCGFontVariationAxisMinValue() uintptr
- func KCGFontVariationAxisName() uintptr
- func KCGPDFContextAccessPermissions() uintptr
- func KCGPDFContextAllowsCopying() uintptr
- func KCGPDFContextAllowsPrinting() uintptr
- func KCGPDFContextArtBox() uintptr
- func KCGPDFContextAuthor() uintptr
- func KCGPDFContextBleedBox() uintptr
- func KCGPDFContextCreateLinearizedPDF() uintptr
- func KCGPDFContextCreatePDFA() uintptr
- func KCGPDFContextCreator() uintptr
- func KCGPDFContextCropBox() uintptr
- func KCGPDFContextEncryptionKeyLength() uintptr
- func KCGPDFContextKeywords() uintptr
- func KCGPDFContextMediaBox() uintptr
- func KCGPDFContextOutputIntent() uintptr
- func KCGPDFContextOutputIntents() uintptr
- func KCGPDFContextOwnerPassword() uintptr
- func KCGPDFContextSubject() uintptr
- func KCGPDFContextTitle() uintptr
- func KCGPDFContextTrimBox() uintptr
- func KCGPDFContextUserPassword() uintptr
- func KCGPDFOutlineChildren() uintptr
- func KCGPDFOutlineDestination() uintptr
- func KCGPDFOutlineDestinationRect() uintptr
- func KCGPDFOutlineTitle() uintptr
- func KCGPDFTagPropertyActualText() uintptr
- func KCGPDFTagPropertyAlternativeText() uintptr
- func KCGPDFTagPropertyLanguageText() uintptr
- func KCGPDFTagPropertyTitleText() uintptr
- func KCGPDFXDestinationOutputProfile() uintptr
- func KCGPDFXInfo() uintptr
- func KCGPDFXOutputCondition() uintptr
- func KCGPDFXOutputConditionIdentifier() uintptr
- func KCGPDFXOutputIntentSubtype() uintptr
- func KCGPDFXRegistryName() uintptr
- func KCGPreferredDynamicRange() uintptr
- func KCGSkipBoostToHDR() uintptr
- func KCGUse100nitsHLGOOTF() uintptr
- func KCGUseBT1886ForCoreVideoGamma() uintptr
- func KCGUseLegacyHDREcosystem() uintptr
- func KCGWindowAlpha() uintptr
- func KCGWindowBackingLocationVideoMemory() uintptr
- func KCGWindowBounds() uintptr
- func KCGWindowIsOnscreen() uintptr
- func KCGWindowLayer() uintptr
- func KCGWindowMemoryUsage() uintptr
- func KCGWindowName() uintptr
- func KCGWindowNumber() uintptr
- func KCGWindowOwnerName() uintptr
- func KCGWindowOwnerPID() uintptr
- func KCGWindowSharingState() uintptr
- func KCGWindowStoreType() uintptr
- func KCGWindowWorkspace() uintptrdeprecated
- func SymbolAvailable(symbol string) bool
- type Acl_entry_id_t
- type Acl_flag_t
- type Acl_perm_t
- type Acl_tag_t
- type Acl_type_t
- type CGBitmapInfo
- type CGBitmapLayout
- type CGBitmapParameters
- type CGBlendMode
- type CGCaptureOptions
- type CGColor
- type CGColorBufferFormat
- type CGColorConversionInfo
- type CGColorConversionInfoTransformType
- type CGColorDataFormat
- type CGColorModel
- type CGColorRenderingIntent
- type CGColorSpace
- type CGColorSpaceModel
- type CGComponent
- type CGConfigureOption
- type CGContentInfo
- type CGContentToneMappingInfo
- type CGContext
- type CGDataConsumer
- type CGDataConsumerCallbacks
- type CGDataProvider
- type CGDataProviderDirectCallbacks
- type CGDataProviderSequentialCallbacks
- type CGDeviceColor
- type CGDisplayChangeSummaryFlags
- type CGDisplayConfigRef
- type CGDisplayMode
- type CGDisplayStream
- type CGDisplayStreamFrameStatus
- type CGDisplayStreamUpdate
- type CGDisplayStreamUpdateRectType
- type CGError
- func CGAcquireDisplayFadeReservation(seconds float32, token *uint32) CGError
- func CGAssociateMouseAndMouseCursorPosition(connected int) CGError
- func CGBeginDisplayConfiguration(config unsafe.Pointer) CGError
- func CGCancelDisplayConfiguration(config unsafe.Pointer) CGError
- func CGCaptureAllDisplays() CGError
- func CGCaptureAllDisplaysWithOptions(options CGCaptureOptions) CGError
- func CGCompleteDisplayConfiguration(config unsafe.Pointer, option CGConfigureOption) CGError
- func CGConfigureDisplayFadeEffect(config unsafe.Pointer, fadeOutSeconds float32, fadeInSeconds float32, ...) CGError
- func CGConfigureDisplayMirrorOfDisplay(config unsafe.Pointer, display uint32, master uint32) CGError
- func CGConfigureDisplayMode(config unsafe.Pointer, display uint32, mode unsafe.Pointer) CGErrordeprecated
- func CGConfigureDisplayOrigin(config unsafe.Pointer, display uint32, x int32, y int32) CGError
- func CGConfigureDisplayStereoOperation(config unsafe.Pointer, display uint32, stereo int, forceBlueLine int) CGError
- func CGConfigureDisplayWithDisplayMode(config unsafe.Pointer, display uint32, mode unsafe.Pointer, ...) CGError
- func CGDisplayCapture(display uint32) CGError
- func CGDisplayCaptureWithOptions(display uint32, options CGCaptureOptions) CGError
- func CGDisplayFade(token uint32, duration float32, startBlend float32, endBlend float32, ...) CGError
- func CGDisplayHideCursor(display uint32) CGError
- func CGDisplayMoveCursorToPoint(display uint32, point corefoundation.CGPoint) CGError
- func CGDisplayRegisterReconfigurationCallback(callback unsafe.Pointer, userInfo unsafe.Pointer) CGError
- func CGDisplayRelease(display uint32) CGError
- func CGDisplayRemoveReconfigurationCallback(callback unsafe.Pointer, userInfo unsafe.Pointer) CGError
- func CGDisplaySetDisplayMode(display uint32, mode unsafe.Pointer, options unsafe.Pointer) CGError
- func CGDisplaySetStereoOperation(display uint32, stereo int, forceBlueLine int, option CGConfigureOption) CGError
- func CGDisplayShowCursor(display uint32) CGError
- func CGDisplaySwitchToMode(display uint32, mode unsafe.Pointer) CGErrordeprecated
- func CGEnableEventStateCombining(combineState int) CGErrordeprecated
- func CGGetActiveDisplayList(maxDisplays uint32, activeDisplays *uint32, displayCount *uint32) CGError
- func CGGetDisplayTransferByFormula(display uint32, redMin *float32, redMax *float32, redGamma *float32, ...) CGError
- func CGGetDisplayTransferByTable(display uint32, capacity uint32, redTable *float32, greenTable *float32, ...) CGError
- func CGGetDisplaysWithOpenGLDisplayMask(mask uint32, maxDisplays uint32, displays *uint32, ...) CGError
- func CGGetDisplaysWithPoint(point corefoundation.CGPoint, maxDisplays uint32, displays *uint32, ...) CGError
- func CGGetDisplaysWithRect(rect corefoundation.CGRect, maxDisplays uint32, displays *uint32, ...) CGError
- func CGGetEventTapList(maxNumberOfTaps uint32, tapList *CGEventTapInformation, eventTapCount *uint32) CGError
- func CGGetOnlineDisplayList(maxDisplays uint32, onlineDisplays *uint32, displayCount *uint32) CGError
- func CGInhibitLocalEvents(inhibit int) CGErrordeprecated
- func CGPostKeyboardEvent(keyChar uint16, virtualKey uint16, keyDown int) CGErrordeprecated
- func CGRegisterScreenRefreshCallback(callback unsafe.Pointer, userInfo unsafe.Pointer) CGErrordeprecated
- func CGReleaseAllDisplays() CGError
- func CGReleaseDisplayFadeReservation(token uint32) CGError
- func CGScreenRegisterMoveCallback(callback unsafe.Pointer, userInfo unsafe.Pointer) CGErrordeprecated
- func CGSetDisplayTransferByByteTable(display uint32, tableSize uint32, redTable *uint8, greenTable *uint8, ...) CGError
- func CGSetDisplayTransferByFormula(display uint32, redMin float32, redMax float32, redGamma float32, ...) CGError
- func CGSetDisplayTransferByTable(display uint32, tableSize uint32, redTable *float32, greenTable *float32, ...) CGError
- func CGSetLocalEventsFilterDuringSuppressionState(filter CGEventFilterMask, state CGEventSuppressionState) CGErrordeprecated
- func CGSetLocalEventsSuppressionInterval(seconds float64) CGErrordeprecated
- func CGWaitForScreenRefreshRects(rects *corefoundation.CGRect, count *uint32) CGErrordeprecated
- func CGWaitForScreenUpdateRects(requestedOperations CGScreenUpdateOperation, ...) CGErrordeprecated
- func CGWarpMouseCursorPosition(newCursorPosition corefoundation.CGPoint) CGError
- type CGEvent
- type CGEventField
- type CGEventFilterMask
- type CGEventFlags
- type CGEventMouseSubtype
- type CGEventSource
- type CGEventSourceStateID
- type CGEventSuppressionState
- type CGEventTapInformation
- type CGEventTapLocation
- type CGEventTapOptions
- type CGEventTapPlacement
- type CGEventTapProxy
- type CGEventType
- type CGFont
- type CGFontPostScriptFormat
- type CGFunction
- type CGFunctionCallbacks
- type CGGesturePhase
- type CGGlyphDeprecatedEnum
- type CGGradient
- type CGGradientDrawingOptions
- type CGImage
- type CGImageAlphaInfo
- type CGImageByteOrderInfo
- type CGImageComponentInfo
- type CGImagePixelFormatInfo
- type CGInterpolationQuality
- type CGLayer
- type CGLineCap
- type CGLineJoin
- type CGMomentumScrollPhase
- type CGMouseButton
- type CGPDFAccessPermissions
- type CGPDFArray
- type CGPDFBox
- type CGPDFContentStream
- type CGPDFDataFormat
- type CGPDFDictionary
- type CGPDFDocument
- type CGPDFObject
- type CGPDFObjectType
- type CGPDFOperatorTable
- type CGPDFPage
- type CGPDFScanner
- type CGPDFStream
- type CGPDFString
- type CGPDFTagType
- type CGPSConverter
- type CGPSConverterCallbacks
- type CGPath
- type CGPathDrawingMode
- type CGPathElement
- type CGPathElementType
- type CGPattern
- type CGPatternCallbacks
- type CGPatternTiling
- type CGRenderingBufferProvider
- type CGScreenUpdateMoveDelta
- type CGScreenUpdateOperation
- type CGScrollEventUnit
- type CGScrollPhase
- type CGShading
- type CGTextDrawingMode
- type CGTextEncodingdeprecated
- type CGToneMapping
- type CGWindowBackingType
- type CGWindowImageOption
- type CGWindowLevelKey
- type CGWindowListOption
- type CGWindowSharingType
- type Clockid_t
- type ColorSyncProfile
- type Dispatch_autorelease_frequency_t
- type Dispatch_block_flags_t
- type EvCmd
- type Filesec_property_t
- type IOSurface
- type Idtype_t
- type Ipc_info_object_type_t
- type MTLDevice
- type Mach_vm_range_flags_t
- type Mach_vm_range_flavor_t
- type Mach_vm_range_tag_t
- type Mpo_flags_t
- type NXMouseButton
- type Os_clockid_t
- type Ptrauth_key
- type Qos_class_t
- type Virtual_memory_guard_exception_code_t
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func CGAffineTransformConcat ¶
func CGAffineTransformConcat(t1 corefoundation.CGAffineTransform, t2 corefoundation.CGAffineTransform) corefoundation.CGAffineTransform
func CGAffineTransformDecompose ¶
func CGAffineTransformDecompose(transform corefoundation.CGAffineTransform) corefoundation.CGAffineTransformComponents
func CGAffineTransformEqualToTransform ¶
func CGAffineTransformEqualToTransform(t1 corefoundation.CGAffineTransform, t2 corefoundation.CGAffineTransform) bool
func CGAffineTransformIdentity ¶
func CGAffineTransformIdentity() corefoundation.CGAffineTransform
func CGAffineTransformInvert ¶
func CGAffineTransformInvert(t corefoundation.CGAffineTransform) corefoundation.CGAffineTransform
func CGAffineTransformIsIdentity ¶
func CGAffineTransformIsIdentity(t corefoundation.CGAffineTransform) bool
func CGAffineTransformMake ¶
func CGAffineTransformMake(a float64, b float64, c float64, d float64, tx float64, ty float64) corefoundation.CGAffineTransform
func CGAffineTransformMakeRotation ¶
func CGAffineTransformMakeRotation(angle float64) corefoundation.CGAffineTransform
func CGAffineTransformMakeScale ¶
func CGAffineTransformMakeScale(sx float64, sy float64) corefoundation.CGAffineTransform
func CGAffineTransformMakeTranslation ¶
func CGAffineTransformMakeTranslation(tx float64, ty float64) corefoundation.CGAffineTransform
func CGAffineTransformMakeWithComponents ¶
func CGAffineTransformMakeWithComponents(components corefoundation.CGAffineTransformComponents) corefoundation.CGAffineTransform
func CGAffineTransformRotate ¶
func CGAffineTransformRotate(t corefoundation.CGAffineTransform, angle float64) corefoundation.CGAffineTransform
func CGAffineTransformScale ¶
func CGAffineTransformScale(t corefoundation.CGAffineTransform, sx float64, sy float64) corefoundation.CGAffineTransform
func CGAffineTransformTranslate ¶
func CGAffineTransformTranslate(t corefoundation.CGAffineTransform, tx float64, ty float64) corefoundation.CGAffineTransform
func CGBitmapContextCreate ¶
func CGBitmapContextCreateAdaptive ¶
func CGBitmapContextCreateAdaptive(width uint, height uint, auxiliaryInfo unsafe.Pointer, onResolve func(*CGContentInfo, *CGBitmapParameters) bool, onAllocate func(*CGContentInfo, *CGBitmapParameters) unsafe.Pointer, onFree func(unsafe.Pointer, *CGContentInfo, *CGBitmapParameters), onError func(unsafe.Pointer, *CGContentInfo, *CGBitmapParameters)) unsafe.Pointer
func CGBitmapContextGetWidth ¶
func CGColorConversionInfoCreateFromListWithArguments ¶
func CGColorConversionInfoCreateFromListWithArguments(options unsafe.Pointer, arg unsafe.Pointer, arg2 CGColorConversionInfoTransformType, arg3 CGColorRenderingIntent, arg4 string) unsafe.Pointer
func CGColorConversionInfoGetTypeID ¶
func CGColorConversionInfoGetTypeID() uint
func CGColorCreateGenericRGB ¶
func CGColorCreateSRGB ¶
func CGColorEqualToColor ¶
func CGColorGetAlpha ¶
func CGColorGetComponents ¶
func CGColorGetConstantColor ¶
func CGColorGetTypeID ¶
func CGColorGetTypeID() uint
func CGColorRelease ¶
func CGColorSpaceCopyICCProfile
deprecated
func CGColorSpaceCreateLab ¶
func CGColorSpaceCreateWithICCProfile
deprecated
func CGColorSpaceCreateWithPlatformColorSpace
deprecated
func CGColorSpaceGetTypeID ¶
func CGColorSpaceGetTypeID() uint
func CGColorSpaceIsHDR ¶
func CGColorSpaceIsHLGBased ¶
func CGColorSpaceIsPQBased ¶
func CGColorSpaceRelease ¶
func CGContextAddArc ¶
func CGContextAddArcToPoint ¶
func CGContextAddEllipseInRect ¶
func CGContextAddEllipseInRect(c unsafe.Pointer, rect corefoundation.CGRect)
func CGContextAddLines ¶
func CGContextAddLines(c unsafe.Pointer, points *corefoundation.CGPoint, count uint)
func CGContextAddRect ¶
func CGContextAddRect(c unsafe.Pointer, rect corefoundation.CGRect)
func CGContextAddRects ¶
func CGContextAddRects(c unsafe.Pointer, rects *corefoundation.CGRect, count uint)
func CGContextBeginPage ¶
func CGContextBeginPage(c unsafe.Pointer, mediaBox *corefoundation.CGRect)
func CGContextBeginPath ¶
func CGContextClearRect ¶
func CGContextClearRect(c unsafe.Pointer, rect corefoundation.CGRect)
func CGContextClip ¶
func CGContextClipToMask ¶
func CGContextClipToRect ¶
func CGContextClipToRect(c unsafe.Pointer, rect corefoundation.CGRect)
func CGContextClipToRects ¶
func CGContextClipToRects(c unsafe.Pointer, rects *corefoundation.CGRect, count uint)
func CGContextClosePath ¶
func CGContextConcatCTM ¶
func CGContextConcatCTM(c unsafe.Pointer, transform corefoundation.CGAffineTransform)
func CGContextConvertPointToDeviceSpace ¶
func CGContextConvertPointToDeviceSpace(c unsafe.Pointer, point corefoundation.CGPoint) corefoundation.CGPoint
func CGContextConvertPointToUserSpace ¶
func CGContextConvertPointToUserSpace(c unsafe.Pointer, point corefoundation.CGPoint) corefoundation.CGPoint
func CGContextConvertRectToDeviceSpace ¶
func CGContextConvertRectToDeviceSpace(c unsafe.Pointer, rect corefoundation.CGRect) corefoundation.CGRect
func CGContextConvertRectToUserSpace ¶
func CGContextConvertRectToUserSpace(c unsafe.Pointer, rect corefoundation.CGRect) corefoundation.CGRect
func CGContextConvertSizeToDeviceSpace ¶
func CGContextConvertSizeToDeviceSpace(c unsafe.Pointer, size corefoundation.CGSize) corefoundation.CGSize
func CGContextConvertSizeToUserSpace ¶
func CGContextConvertSizeToUserSpace(c unsafe.Pointer, size corefoundation.CGSize) corefoundation.CGSize
func CGContextDrawImage ¶
func CGContextDrawImageApplyingToneMapping ¶
func CGContextDrawImageApplyingToneMapping(c unsafe.Pointer, r corefoundation.CGRect, image unsafe.Pointer, method CGToneMapping, options unsafe.Pointer) bool
func CGContextDrawLinearGradient ¶
func CGContextDrawLinearGradient(c unsafe.Pointer, gradient unsafe.Pointer, startPoint corefoundation.CGPoint, endPoint corefoundation.CGPoint, options CGGradientDrawingOptions)
func CGContextDrawPDFDocument
deprecated
func CGContextDrawPath ¶
func CGContextDrawPath(c unsafe.Pointer, mode CGPathDrawingMode)
func CGContextDrawRadialGradient ¶
func CGContextDrawRadialGradient(c unsafe.Pointer, gradient unsafe.Pointer, startCenter corefoundation.CGPoint, startRadius float64, endCenter corefoundation.CGPoint, endRadius float64, options CGGradientDrawingOptions)
func CGContextDrawTiledImage ¶
func CGContextEOClip ¶
func CGContextEOFillPath ¶
func CGContextEndPage ¶
func CGContextFillEllipseInRect ¶
func CGContextFillEllipseInRect(c unsafe.Pointer, rect corefoundation.CGRect)
func CGContextFillPath ¶
func CGContextFillRect ¶
func CGContextFillRect(c unsafe.Pointer, rect corefoundation.CGRect)
func CGContextFillRects ¶
func CGContextFillRects(c unsafe.Pointer, rects *corefoundation.CGRect, count uint)
func CGContextFlush ¶
func CGContextGetCTM ¶
func CGContextGetCTM(c unsafe.Pointer) corefoundation.CGAffineTransform
func CGContextGetClipBoundingBox ¶
func CGContextGetClipBoundingBox(c unsafe.Pointer) corefoundation.CGRect
func CGContextGetPathBoundingBox ¶
func CGContextGetPathBoundingBox(c unsafe.Pointer) corefoundation.CGRect
func CGContextGetPathCurrentPoint ¶
func CGContextGetPathCurrentPoint(c unsafe.Pointer) corefoundation.CGPoint
func CGContextGetTextMatrix ¶
func CGContextGetTextMatrix(c unsafe.Pointer) corefoundation.CGAffineTransform
func CGContextGetTextPosition ¶
func CGContextGetTextPosition(c unsafe.Pointer) corefoundation.CGPoint
func CGContextGetTypeID ¶
func CGContextGetTypeID() uint
func CGContextGetUserSpaceToDeviceSpaceTransform ¶
func CGContextGetUserSpaceToDeviceSpaceTransform(c unsafe.Pointer) corefoundation.CGAffineTransform
func CGContextIsPathEmpty ¶
func CGContextPathContainsPoint ¶
func CGContextPathContainsPoint(c unsafe.Pointer, point corefoundation.CGPoint, mode CGPathDrawingMode) bool
func CGContextRelease ¶
func CGContextResetClip ¶
func CGContextRestoreGState ¶
func CGContextRotateCTM ¶
func CGContextSaveGState ¶
func CGContextSelectFont
deprecated
func CGContextSelectFont(c unsafe.Pointer, name string, size float64, textEncoding CGTextEncoding)
Deprecated: No longer supported
func CGContextSetAlpha ¶
func CGContextSetBlendMode ¶
func CGContextSetBlendMode(c unsafe.Pointer, mode CGBlendMode)
func CGContextSetContentToneMappingInfo ¶
func CGContextSetContentToneMappingInfo(c unsafe.Pointer, info CGContentToneMappingInfo)
func CGContextSetFillColor ¶
func CGContextSetFillPattern ¶
func CGContextSetFlatness ¶
func CGContextSetFontSize ¶
func CGContextSetInterpolationQuality ¶
func CGContextSetInterpolationQuality(c unsafe.Pointer, quality CGInterpolationQuality)
func CGContextSetLineCap ¶
func CGContextSetLineDash ¶
func CGContextSetLineJoin ¶
func CGContextSetLineJoin(c unsafe.Pointer, join CGLineJoin)
func CGContextSetLineWidth ¶
func CGContextSetMiterLimit ¶
func CGContextSetPatternPhase ¶
func CGContextSetPatternPhase(c unsafe.Pointer, phase corefoundation.CGSize)
func CGContextSetRenderingIntent ¶
func CGContextSetRenderingIntent(c unsafe.Pointer, intent CGColorRenderingIntent)
func CGContextSetShadow ¶
func CGContextSetShadow(c unsafe.Pointer, offset corefoundation.CGSize, blur float64)
func CGContextSetStrokeColor ¶
func CGContextSetTextDrawingMode ¶
func CGContextSetTextDrawingMode(c unsafe.Pointer, mode CGTextDrawingMode)
func CGContextSetTextMatrix ¶
func CGContextSetTextMatrix(c unsafe.Pointer, t corefoundation.CGAffineTransform)
func CGContextShowGlyphs
deprecated
func CGContextShowGlyphsWithAdvances
deprecated
func CGContextShowText
deprecated
func CGContextStrokeEllipseInRect ¶
func CGContextStrokeEllipseInRect(c unsafe.Pointer, rect corefoundation.CGRect)
func CGContextStrokeLineSegments ¶
func CGContextStrokeLineSegments(c unsafe.Pointer, points *corefoundation.CGPoint, count uint)
func CGContextStrokePath ¶
func CGContextStrokeRect ¶
func CGContextStrokeRect(c unsafe.Pointer, rect corefoundation.CGRect)
func CGContextStrokeRectWithWidth ¶
func CGContextStrokeRectWithWidth(c unsafe.Pointer, rect corefoundation.CGRect, width float64)
func CGContextSynchronize ¶
func CGCursorIsDrawnInFramebuffer
deprecated
func CGCursorIsDrawnInFramebuffer() int
Deprecated: No longer supported
func CGCursorIsVisible
deprecated
func CGCursorIsVisible() int
Deprecated: No longer supported
func CGDataConsumerCreate ¶
func CGDataConsumerCreate(info unsafe.Pointer, cbks *CGDataConsumerCallbacks) unsafe.Pointer
func CGDataConsumerGetTypeID ¶
func CGDataConsumerGetTypeID() uint
func CGDataConsumerRelease ¶
func CGDataProviderCreateSequential ¶
func CGDataProviderCreateSequential(info unsafe.Pointer, callbacks *CGDataProviderSequentialCallbacks) unsafe.Pointer
func CGDataProviderGetTypeID ¶
func CGDataProviderGetTypeID() uint
func CGDataProviderRelease ¶
func CGDisplayAvailableModes
deprecated
func CGDisplayBounds ¶
func CGDisplayBounds(display uint32) corefoundation.CGRect
func CGDisplayCopyColorSpace ¶
func CGDisplayCurrentMode
deprecated
func CGDisplayFadeOperationInProgress
deprecated
func CGDisplayFadeOperationInProgress() int
Deprecated: No longer supported
func CGDisplayIOServicePort
deprecated
func CGDisplayIsActive ¶
func CGDisplayIsAsleep ¶
func CGDisplayIsBuiltin ¶
func CGDisplayIsCaptured
deprecated
func CGDisplayIsInMirrorSet ¶
func CGDisplayIsMain ¶
func CGDisplayIsOnline ¶
func CGDisplayIsStereo ¶
func CGDisplayMirrorsDisplay ¶
func CGDisplayModeCopyPixelEncoding
deprecated
func CGDisplayModeGetHeight ¶
func CGDisplayModeGetIOFlags ¶
func CGDisplayModeGetTypeID ¶
func CGDisplayModeGetTypeID() uint
func CGDisplayModeGetWidth ¶
func CGDisplayModeRelease ¶
func CGDisplayModelNumber ¶
func CGDisplayPixelsHigh ¶
func CGDisplayPixelsWide ¶
func CGDisplayPrimaryDisplay ¶
func CGDisplayRestoreColorSyncSettings ¶
func CGDisplayRestoreColorSyncSettings()
func CGDisplayRotation ¶
func CGDisplayScreenSize ¶
func CGDisplayScreenSize(display uint32) corefoundation.CGSize
func CGDisplaySerialNumber ¶
func CGDisplayUnitNumber ¶
func CGDisplayVendorNumber ¶
func CGErrorSetCallback ¶
func CGEventCreateData ¶
func CGEventCreateFromData ¶
func CGEventCreateMouseEvent ¶
func CGEventCreateMouseEvent(source unsafe.Pointer, mouseType CGEventType, mouseCursorPosition corefoundation.CGPoint, mouseButton CGMouseButton) unsafe.Pointer
func CGEventGetDoubleValueField ¶
func CGEventGetDoubleValueField(event unsafe.Pointer, field CGEventField) float64
func CGEventGetIntegerValueField ¶
func CGEventGetIntegerValueField(event unsafe.Pointer, field CGEventField) int64
func CGEventGetLocation ¶
func CGEventGetLocation(event unsafe.Pointer) corefoundation.CGPoint
func CGEventGetTimestamp ¶
func CGEventGetTypeID ¶
func CGEventGetTypeID() uint
func CGEventGetUnflippedLocation ¶
func CGEventGetUnflippedLocation(event unsafe.Pointer) corefoundation.CGPoint
func CGEventPost ¶
func CGEventPost(tap CGEventTapLocation, event unsafe.Pointer)
func CGEventPostToPSN ¶
func CGEventPostToPid ¶
func CGEventSetDoubleValueField ¶
func CGEventSetDoubleValueField(event unsafe.Pointer, field CGEventField, value float64)
func CGEventSetFlags ¶
func CGEventSetFlags(event unsafe.Pointer, flags CGEventFlags)
func CGEventSetIntegerValueField ¶
func CGEventSetIntegerValueField(event unsafe.Pointer, field CGEventField, value int64)
func CGEventSetLocation ¶
func CGEventSetLocation(event unsafe.Pointer, location corefoundation.CGPoint)
func CGEventSetTimestamp ¶
func CGEventSetType ¶
func CGEventSetType(event unsafe.Pointer, type_ CGEventType)
func CGEventSourceButtonState ¶
func CGEventSourceButtonState(stateID CGEventSourceStateID, button CGMouseButton) bool
func CGEventSourceCounterForEventType ¶
func CGEventSourceCounterForEventType(stateID CGEventSourceStateID, eventType CGEventType) uint32
func CGEventSourceCreate ¶
func CGEventSourceCreate(stateID CGEventSourceStateID) unsafe.Pointer
func CGEventSourceGetTypeID ¶
func CGEventSourceGetTypeID() uint
func CGEventSourceKeyState ¶
func CGEventSourceKeyState(stateID CGEventSourceStateID, key uint16) bool
func CGEventSourceSecondsSinceLastEventType ¶
func CGEventSourceSecondsSinceLastEventType(stateID CGEventSourceStateID, eventType CGEventType) float64
func CGEventSourceSetLocalEventsFilterDuringSuppressionState ¶
func CGEventSourceSetLocalEventsFilterDuringSuppressionState(source unsafe.Pointer, filter CGEventFilterMask, state CGEventSuppressionState)
func CGEventTapCreate ¶
func CGEventTapCreate(tap CGEventTapLocation, place CGEventTapPlacement, options CGEventTapOptions, eventsOfInterest uint64, callback unsafe.Pointer, userInfo unsafe.Pointer) unsafe.Pointer
func CGEventTapCreateForPSN ¶
func CGEventTapCreateForPid ¶
func CGEventTapCreateForPid(pid int, place CGEventTapPlacement, options CGEventTapOptions, eventsOfInterest uint64, callback unsafe.Pointer, userInfo unsafe.Pointer) unsafe.Pointer
func CGEventTapEnable ¶
func CGEventTapIsEnabled ¶
func CGFontCanCreatePostScriptSubset ¶
func CGFontCanCreatePostScriptSubset(font unsafe.Pointer, format CGFontPostScriptFormat) bool
func CGFontCopyTableForTag ¶
func CGFontCreateWithPlatformFont
deprecated
func CGFontGetAscent ¶
func CGFontGetCapHeight ¶
func CGFontGetDescent ¶
func CGFontGetFontBBox ¶
func CGFontGetFontBBox(font unsafe.Pointer) corefoundation.CGRect
func CGFontGetGlyphAdvances ¶
func CGFontGetGlyphBBoxes ¶
func CGFontGetItalicAngle ¶
func CGFontGetLeading ¶
func CGFontGetNumberOfGlyphs ¶
func CGFontGetStemV ¶
func CGFontGetTypeID ¶
func CGFontGetTypeID() uint
func CGFontGetUnitsPerEm ¶
func CGFontGetXHeight ¶
func CGFontRelease ¶
func CGFunctionCreate ¶
func CGFunctionGetTypeID ¶
func CGFunctionGetTypeID() uint
func CGFunctionRelease ¶
func CGGetLastMouseDelta ¶
func CGGradientGetTypeID ¶
func CGGradientGetTypeID() uint
func CGGradientRelease ¶
func CGImageCreate ¶
func CGImageCreateWithMask ¶
func CGImageGetBitsPerPixel ¶
func CGImageGetBytesPerRow ¶
func CGImageGetDecode ¶
func CGImageGetHeight ¶
func CGImageGetTypeID ¶
func CGImageGetTypeID() uint
func CGImageGetWidth ¶
func CGImageIsMask ¶
func CGImageMaskCreate ¶
func CGImageRelease ¶
func CGImageShouldToneMap ¶
func CGLayerGetSize ¶
func CGLayerGetSize(layer unsafe.Pointer) corefoundation.CGSize
func CGLayerGetTypeID ¶
func CGLayerGetTypeID() uint
func CGLayerRelease ¶
func CGMainDisplayID ¶
func CGMainDisplayID() uint32
func CGPDFArrayApplyBlock ¶
func CGPDFArrayGetArray ¶
func CGPDFArrayGetBoolean ¶
func CGPDFArrayGetCount ¶
func CGPDFArrayGetDictionary ¶
func CGPDFArrayGetInteger ¶
func CGPDFArrayGetName ¶
func CGPDFArrayGetNumber ¶
func CGPDFArrayGetObject ¶
func CGPDFArrayGetStream ¶
func CGPDFArrayGetString ¶
func CGPDFContextBeginPage ¶
func CGPDFContextBeginTag ¶
func CGPDFContextBeginTag(context_ unsafe.Pointer, tagType CGPDFTagType, tagProperties unsafe.Pointer)
func CGPDFContextClose ¶
func CGPDFContextCreate ¶
func CGPDFContextEndPage ¶
func CGPDFContextEndTag ¶
func CGPDFContextSetIDTree ¶
func CGPDFContextSetOutline ¶
func CGPDFDictionaryGetArray ¶
func CGPDFDictionaryGetCount ¶
func CGPDFDictionaryGetName ¶
func CGPDFDocumentGetArtBox
deprecated
func CGPDFDocumentGetArtBox(document unsafe.Pointer, page int) corefoundation.CGRect
Deprecated: No longer supported
func CGPDFDocumentGetBleedBox
deprecated
func CGPDFDocumentGetBleedBox(document unsafe.Pointer, page int) corefoundation.CGRect
Deprecated: No longer supported
func CGPDFDocumentGetCropBox
deprecated
func CGPDFDocumentGetCropBox(document unsafe.Pointer, page int) corefoundation.CGRect
Deprecated: No longer supported
func CGPDFDocumentGetMediaBox
deprecated
func CGPDFDocumentGetMediaBox(document unsafe.Pointer, page int) corefoundation.CGRect
Deprecated: No longer supported
func CGPDFDocumentGetPage ¶
func CGPDFDocumentGetRotationAngle
deprecated
func CGPDFDocumentGetTrimBox
deprecated
func CGPDFDocumentGetTrimBox(document unsafe.Pointer, page int) corefoundation.CGRect
Deprecated: No longer supported
func CGPDFDocumentGetTypeID ¶
func CGPDFDocumentGetTypeID() uint
func CGPDFDocumentGetVersion ¶
func CGPDFDocumentIsUnlocked ¶
func CGPDFDocumentRelease ¶
func CGPDFObjectGetValue ¶
func CGPDFPageGetBoxRect ¶
func CGPDFPageGetBoxRect(page unsafe.Pointer, box CGPDFBox) corefoundation.CGRect
func CGPDFPageGetDrawingTransform ¶
func CGPDFPageGetDrawingTransform(page unsafe.Pointer, box CGPDFBox, rect corefoundation.CGRect, rotate int, preserveAspectRatio bool) corefoundation.CGAffineTransform
func CGPDFPageGetPageNumber ¶
func CGPDFPageGetTypeID ¶
func CGPDFPageGetTypeID() uint
func CGPDFPageRelease ¶
func CGPDFScannerCreate ¶
func CGPDFScannerPopArray ¶
func CGPDFScannerPopBoolean ¶
func CGPDFScannerPopNumber ¶
func CGPDFScannerPopObject ¶
func CGPDFScannerPopStream ¶
func CGPDFScannerPopString ¶
func CGPDFScannerRelease ¶
func CGPDFScannerScan ¶
func CGPDFScannerStop ¶
func CGPDFStreamCopyData ¶
func CGPDFStreamCopyData(stream unsafe.Pointer, format *CGPDFDataFormat) unsafe.Pointer
func CGPDFStringGetLength ¶
func CGPDFTagTypeGetName ¶
func CGPDFTagTypeGetName(tagType CGPDFTagType) string
func CGPSConverterAbort ¶
func CGPSConverterConvert ¶
func CGPSConverterCreate ¶
func CGPSConverterGetTypeID ¶
func CGPSConverterGetTypeID() uint
func CGPathAddArc ¶
func CGPathAddArc(path unsafe.Pointer, m *corefoundation.CGAffineTransform, x float64, y float64, radius float64, startAngle float64, endAngle float64, clockwise bool)
func CGPathAddArcToPoint ¶
func CGPathAddArcToPoint(path unsafe.Pointer, m *corefoundation.CGAffineTransform, x1 float64, y1 float64, x2 float64, y2 float64, radius float64)
func CGPathAddCurveToPoint ¶
func CGPathAddCurveToPoint(path unsafe.Pointer, m *corefoundation.CGAffineTransform, cp1x float64, cp1y float64, cp2x float64, cp2y float64, x float64, y float64)
func CGPathAddEllipseInRect ¶
func CGPathAddEllipseInRect(path unsafe.Pointer, m *corefoundation.CGAffineTransform, rect corefoundation.CGRect)
func CGPathAddLineToPoint ¶
func CGPathAddLineToPoint(path unsafe.Pointer, m *corefoundation.CGAffineTransform, x float64, y float64)
func CGPathAddLines ¶
func CGPathAddLines(path unsafe.Pointer, m *corefoundation.CGAffineTransform, points *corefoundation.CGPoint, count uint)
func CGPathAddPath ¶
func CGPathAddPath(path1 unsafe.Pointer, m *corefoundation.CGAffineTransform, path2 unsafe.Pointer)
func CGPathAddQuadCurveToPoint ¶
func CGPathAddQuadCurveToPoint(path unsafe.Pointer, m *corefoundation.CGAffineTransform, cpx float64, cpy float64, x float64, y float64)
func CGPathAddRect ¶
func CGPathAddRect(path unsafe.Pointer, m *corefoundation.CGAffineTransform, rect corefoundation.CGRect)
func CGPathAddRects ¶
func CGPathAddRects(path unsafe.Pointer, m *corefoundation.CGAffineTransform, rects *corefoundation.CGRect, count uint)
func CGPathAddRelativeArc ¶
func CGPathAddRelativeArc(path unsafe.Pointer, matrix *corefoundation.CGAffineTransform, x float64, y float64, radius float64, startAngle float64, delta float64)
func CGPathAddRoundedRect ¶
func CGPathAddRoundedRect(path unsafe.Pointer, transform *corefoundation.CGAffineTransform, rect corefoundation.CGRect, cornerWidth float64, cornerHeight float64)
func CGPathApply ¶
func CGPathApplyWithBlock ¶
func CGPathApplyWithBlock(path unsafe.Pointer, block func(*CGPathElement))
func CGPathCloseSubpath ¶
func CGPathContainsPoint ¶
func CGPathContainsPoint(path unsafe.Pointer, m *corefoundation.CGAffineTransform, point corefoundation.CGPoint, eoFill bool) bool
func CGPathCreateCopyByDashingPath ¶
func CGPathCreateCopyByDashingPath(path unsafe.Pointer, transform *corefoundation.CGAffineTransform, phase float64, lengths *float64, count uint) unsafe.Pointer
func CGPathCreateCopyByStrokingPath ¶
func CGPathCreateCopyByStrokingPath(path unsafe.Pointer, transform *corefoundation.CGAffineTransform, lineWidth float64, lineCap CGLineCap, lineJoin CGLineJoin, miterLimit float64) unsafe.Pointer
func CGPathCreateCopyByTransformingPath ¶
func CGPathCreateCopyByTransformingPath(path unsafe.Pointer, transform *corefoundation.CGAffineTransform) unsafe.Pointer
func CGPathCreateMutable ¶
func CGPathCreateMutableCopyByTransformingPath ¶
func CGPathCreateMutableCopyByTransformingPath(path unsafe.Pointer, transform *corefoundation.CGAffineTransform) unsafe.Pointer
func CGPathCreateWithEllipseInRect ¶
func CGPathCreateWithEllipseInRect(rect corefoundation.CGRect, transform *corefoundation.CGAffineTransform) unsafe.Pointer
func CGPathCreateWithRect ¶
func CGPathCreateWithRect(rect corefoundation.CGRect, transform *corefoundation.CGAffineTransform) unsafe.Pointer
func CGPathCreateWithRoundedRect ¶
func CGPathCreateWithRoundedRect(rect corefoundation.CGRect, cornerWidth float64, cornerHeight float64, transform *corefoundation.CGAffineTransform) unsafe.Pointer
func CGPathGetBoundingBox ¶
func CGPathGetBoundingBox(path unsafe.Pointer) corefoundation.CGRect
func CGPathGetCurrentPoint ¶
func CGPathGetCurrentPoint(path unsafe.Pointer) corefoundation.CGPoint
func CGPathGetPathBoundingBox ¶
func CGPathGetPathBoundingBox(path unsafe.Pointer) corefoundation.CGRect
func CGPathGetTypeID ¶
func CGPathGetTypeID() uint
func CGPathIntersectsPath ¶
func CGPathIsEmpty ¶
func CGPathIsRect ¶
func CGPathIsRect(path unsafe.Pointer, rect *corefoundation.CGRect) bool
func CGPathMoveToPoint ¶
func CGPathMoveToPoint(path unsafe.Pointer, m *corefoundation.CGAffineTransform, x float64, y float64)
func CGPathRelease ¶
func CGPatternCreate ¶
func CGPatternCreate(info unsafe.Pointer, bounds corefoundation.CGRect, matrix corefoundation.CGAffineTransform, xStep float64, yStep float64, tiling CGPatternTiling, isColored bool, callbacks *CGPatternCallbacks) unsafe.Pointer
func CGPatternGetTypeID ¶
func CGPatternGetTypeID() uint
func CGPatternRelease ¶
func CGPointApplyAffineTransform ¶
func CGPointApplyAffineTransform(point corefoundation.CGPoint, t corefoundation.CGAffineTransform) corefoundation.CGPoint
func CGPointCreateDictionaryRepresentation ¶
func CGPointCreateDictionaryRepresentation(point corefoundation.CGPoint) unsafe.Pointer
func CGPointEqualToPoint ¶
func CGPointEqualToPoint(point1 corefoundation.CGPoint, point2 corefoundation.CGPoint) bool
func CGPointMake ¶
func CGPointMake(x float64, y float64) corefoundation.CGPoint
func CGPointMakeWithDictionaryRepresentation ¶
func CGPointMakeWithDictionaryRepresentation(dict unsafe.Pointer, point *corefoundation.CGPoint) bool
func CGPointZero ¶
func CGPointZero() corefoundation.CGPoint
func CGPreflightListenEventAccess ¶
func CGPreflightListenEventAccess() bool
func CGPreflightPostEventAccess ¶
func CGPreflightPostEventAccess() bool
func CGPreflightScreenCaptureAccess ¶
func CGPreflightScreenCaptureAccess() bool
func CGRectApplyAffineTransform ¶
func CGRectApplyAffineTransform(rect corefoundation.CGRect, t corefoundation.CGAffineTransform) corefoundation.CGRect
func CGRectContainsPoint ¶
func CGRectContainsPoint(rect corefoundation.CGRect, point corefoundation.CGPoint) bool
func CGRectContainsRect ¶
func CGRectContainsRect(rect1 corefoundation.CGRect, rect2 corefoundation.CGRect) bool
func CGRectCreateDictionaryRepresentation ¶
func CGRectCreateDictionaryRepresentation(arg corefoundation.CGRect) unsafe.Pointer
func CGRectDivide ¶
func CGRectDivide(rect corefoundation.CGRect, slice *corefoundation.CGRect, remainder *corefoundation.CGRect, amount float64, edge corefoundation.CGRectEdge)
func CGRectEqualToRect ¶
func CGRectEqualToRect(rect1 corefoundation.CGRect, rect2 corefoundation.CGRect) bool
func CGRectGetHeight ¶
func CGRectGetHeight(rect corefoundation.CGRect) float64
func CGRectGetMaxX ¶
func CGRectGetMaxX(rect corefoundation.CGRect) float64
func CGRectGetMaxY ¶
func CGRectGetMaxY(rect corefoundation.CGRect) float64
func CGRectGetMidX ¶
func CGRectGetMidX(rect corefoundation.CGRect) float64
func CGRectGetMidY ¶
func CGRectGetMidY(rect corefoundation.CGRect) float64
func CGRectGetMinX ¶
func CGRectGetMinX(rect corefoundation.CGRect) float64
func CGRectGetMinY ¶
func CGRectGetMinY(rect corefoundation.CGRect) float64
func CGRectGetWidth ¶
func CGRectGetWidth(rect corefoundation.CGRect) float64
func CGRectInfinite ¶
func CGRectInfinite() corefoundation.CGRect
func CGRectInset ¶
func CGRectInset(rect corefoundation.CGRect, dx float64, dy float64) corefoundation.CGRect
func CGRectIntegral ¶
func CGRectIntegral(rect corefoundation.CGRect) corefoundation.CGRect
func CGRectIntersection ¶
func CGRectIntersection(r1 corefoundation.CGRect, r2 corefoundation.CGRect) corefoundation.CGRect
func CGRectIntersectsRect ¶
func CGRectIntersectsRect(rect1 corefoundation.CGRect, rect2 corefoundation.CGRect) bool
func CGRectIsEmpty ¶
func CGRectIsEmpty(rect corefoundation.CGRect) bool
func CGRectIsInfinite ¶
func CGRectIsInfinite(rect corefoundation.CGRect) bool
func CGRectIsNull ¶
func CGRectIsNull(rect corefoundation.CGRect) bool
func CGRectMake ¶
func CGRectMakeWithDictionaryRepresentation ¶
func CGRectMakeWithDictionaryRepresentation(dict unsafe.Pointer, rect *corefoundation.CGRect) bool
func CGRectNull ¶
func CGRectNull() corefoundation.CGRect
func CGRectOffset ¶
func CGRectOffset(rect corefoundation.CGRect, dx float64, dy float64) corefoundation.CGRect
func CGRectStandardize ¶
func CGRectStandardize(rect corefoundation.CGRect) corefoundation.CGRect
func CGRectUnion ¶
func CGRectUnion(r1 corefoundation.CGRect, r2 corefoundation.CGRect) corefoundation.CGRect
func CGRectZero ¶
func CGRectZero() corefoundation.CGRect
func CGReleaseScreenRefreshRects
deprecated
func CGReleaseScreenRefreshRects(rects *corefoundation.CGRect)
Deprecated: No longer supported
func CGRenderingBufferProviderGetTypeID ¶
func CGRenderingBufferProviderGetTypeID() uint
func CGRequestListenEventAccess ¶
func CGRequestListenEventAccess() bool
func CGRequestPostEventAccess ¶
func CGRequestPostEventAccess() bool
func CGRequestScreenCaptureAccess ¶
func CGRequestScreenCaptureAccess() bool
func CGRestorePermanentDisplayConfiguration ¶
func CGRestorePermanentDisplayConfiguration()
func CGScreenUnregisterMoveCallback
deprecated
func CGShadingCreateAxial ¶
func CGShadingCreateRadial ¶
func CGShadingGetTypeID ¶
func CGShadingGetTypeID() uint
func CGShadingRelease ¶
func CGShieldingWindowID ¶
func CGShieldingWindowLevel ¶
func CGShieldingWindowLevel() int32
func CGSizeApplyAffineTransform ¶
func CGSizeApplyAffineTransform(size corefoundation.CGSize, t corefoundation.CGAffineTransform) corefoundation.CGSize
func CGSizeCreateDictionaryRepresentation ¶
func CGSizeCreateDictionaryRepresentation(size corefoundation.CGSize) unsafe.Pointer
func CGSizeEqualToSize ¶
func CGSizeEqualToSize(size1 corefoundation.CGSize, size2 corefoundation.CGSize) bool
func CGSizeMake ¶
func CGSizeMake(width float64, height float64) corefoundation.CGSize
func CGSizeMakeWithDictionaryRepresentation ¶
func CGSizeMakeWithDictionaryRepresentation(dict unsafe.Pointer, size *corefoundation.CGSize) bool
func CGSizeZero ¶
func CGSizeZero() corefoundation.CGSize
func CGUnregisterScreenRefreshCallback
deprecated
func CGVectorMake ¶
func CGVectorMake(dx float64, dy float64) corefoundation.CGVector
func CGWindowLevelForKey ¶
func CGWindowLevelForKey(key CGWindowLevelKey) int32
func CGWindowListCopyWindowInfo ¶
func CGWindowListCopyWindowInfo(option CGWindowListOption, relativeToWindow uint32) unsafe.Pointer
func CGWindowListCreate ¶
func CGWindowListCreate(option CGWindowListOption, relativeToWindow uint32) unsafe.Pointer
func CGWindowListCreateImage ¶
func CGWindowListCreateImage(screenBounds corefoundation.CGRect, listOption CGWindowListOption, windowID uint32, imageOption CGWindowImageOption) unsafe.Pointer
func CGWindowListCreateImageFromArray ¶
func CGWindowListCreateImageFromArray(screenBounds corefoundation.CGRect, windowArray unsafe.Pointer, imageOption CGWindowImageOption) unsafe.Pointer
func CGWindowServerCFMachPort
deprecated
func KCGAdaptiveMaximumBitDepth ¶
func KCGAdaptiveMaximumBitDepth() uintptr
func KCGColorBlack ¶
func KCGColorBlack() uintptr
func KCGColorClear ¶
func KCGColorClear() uintptr
func KCGColorConversionBlackPointCompensation ¶
func KCGColorConversionBlackPointCompensation() uintptr
func KCGColorConversionTRCSize ¶
func KCGColorConversionTRCSize() uintptr
func KCGColorSpaceACESCGLinear ¶
func KCGColorSpaceACESCGLinear() uintptr
func KCGColorSpaceAdobeRGB1998 ¶
func KCGColorSpaceAdobeRGB1998() uintptr
func KCGColorSpaceCoreMedia709 ¶
func KCGColorSpaceCoreMedia709() uintptr
func KCGColorSpaceDCIP3 ¶
func KCGColorSpaceDCIP3() uintptr
func KCGColorSpaceDisplayP3 ¶
func KCGColorSpaceDisplayP3() uintptr
func KCGColorSpaceDisplayP3_HLG ¶
func KCGColorSpaceDisplayP3_HLG() uintptr
func KCGColorSpaceDisplayP3_PQ ¶
func KCGColorSpaceDisplayP3_PQ() uintptr
func KCGColorSpaceDisplayP3_PQ_EOTF
deprecated
func KCGColorSpaceDisplayP3_PQ_EOTF() uintptr
Deprecated: No longer supported
func KCGColorSpaceExtendedDisplayP3 ¶
func KCGColorSpaceExtendedDisplayP3() uintptr
func KCGColorSpaceExtendedGray ¶
func KCGColorSpaceExtendedGray() uintptr
func KCGColorSpaceExtendedITUR_2020 ¶
func KCGColorSpaceExtendedITUR_2020() uintptr
func KCGColorSpaceExtendedLinearDisplayP3 ¶
func KCGColorSpaceExtendedLinearDisplayP3() uintptr
func KCGColorSpaceExtendedLinearGray ¶
func KCGColorSpaceExtendedLinearGray() uintptr
func KCGColorSpaceExtendedLinearITUR_2020 ¶
func KCGColorSpaceExtendedLinearITUR_2020() uintptr
func KCGColorSpaceExtendedLinearSRGB ¶
func KCGColorSpaceExtendedLinearSRGB() uintptr
func KCGColorSpaceExtendedRange ¶
func KCGColorSpaceExtendedRange() uintptr
func KCGColorSpaceExtendedSRGB ¶
func KCGColorSpaceExtendedSRGB() uintptr
func KCGColorSpaceGenericCMYK ¶
func KCGColorSpaceGenericCMYK() uintptr
func KCGColorSpaceGenericGray ¶
func KCGColorSpaceGenericGray() uintptr
func KCGColorSpaceGenericGrayGamma2_2 ¶
func KCGColorSpaceGenericGrayGamma2_2() uintptr
func KCGColorSpaceGenericLab ¶
func KCGColorSpaceGenericLab() uintptr
func KCGColorSpaceGenericRGB ¶
func KCGColorSpaceGenericRGB() uintptr
func KCGColorSpaceGenericRGBLinear ¶
func KCGColorSpaceGenericRGBLinear() uintptr
func KCGColorSpaceGenericXYZ ¶
func KCGColorSpaceGenericXYZ() uintptr
func KCGColorSpaceITUR_709 ¶
func KCGColorSpaceITUR_709() uintptr
func KCGColorSpaceITUR_709_HLG ¶
func KCGColorSpaceITUR_709_HLG() uintptr
func KCGColorSpaceITUR_709_PQ ¶
func KCGColorSpaceITUR_709_PQ() uintptr
func KCGColorSpaceITUR_2020 ¶
func KCGColorSpaceITUR_2020() uintptr
func KCGColorSpaceITUR_2020_HLG
deprecated
func KCGColorSpaceITUR_2020_HLG() uintptr
Deprecated: No longer supported
func KCGColorSpaceITUR_2020_PQ
deprecated
func KCGColorSpaceITUR_2020_PQ() uintptr
Deprecated: No longer supported
func KCGColorSpaceITUR_2020_PQ_EOTF
deprecated
func KCGColorSpaceITUR_2020_PQ_EOTF() uintptr
Deprecated: No longer supported
func KCGColorSpaceITUR_2020_sRGBGamma ¶
func KCGColorSpaceITUR_2020_sRGBGamma() uintptr
func KCGColorSpaceITUR_2100_HLG ¶
func KCGColorSpaceITUR_2100_HLG() uintptr
func KCGColorSpaceITUR_2100_PQ ¶
func KCGColorSpaceITUR_2100_PQ() uintptr
func KCGColorSpaceLinearDisplayP3 ¶
func KCGColorSpaceLinearDisplayP3() uintptr
func KCGColorSpaceLinearGray ¶
func KCGColorSpaceLinearGray() uintptr
func KCGColorSpaceLinearITUR_2020 ¶
func KCGColorSpaceLinearITUR_2020() uintptr
func KCGColorSpaceLinearSRGB ¶
func KCGColorSpaceLinearSRGB() uintptr
func KCGColorSpaceROMMRGB ¶
func KCGColorSpaceROMMRGB() uintptr
func KCGColorSpaceSRGB ¶
func KCGColorSpaceSRGB() uintptr
func KCGColorWhite ¶
func KCGColorWhite() uintptr
func KCGContentAverageLightLevel ¶
func KCGContentAverageLightLevel() uintptr
func KCGContentAverageLightLevelNits ¶
func KCGContentAverageLightLevelNits() uintptr
func KCGDefaultHDRImageContentHeadroom ¶
func KCGDefaultHDRImageContentHeadroom() float32
func KCGDisplayShowDuplicateLowResolutionModes ¶
func KCGDisplayShowDuplicateLowResolutionModes() uintptr
func KCGDisplayStreamYCbCrMatrix_SMPTE_240M_1995 ¶
func KCGDisplayStreamYCbCrMatrix_SMPTE_240M_1995() uintptr
func KCGDynamicRangeConstrained ¶
func KCGDynamicRangeConstrained() uintptr
func KCGDynamicRangeHigh ¶
func KCGDynamicRangeHigh() uintptr
func KCGDynamicRangeStandard ¶
func KCGDynamicRangeStandard() uintptr
func KCGEXRToneMappingGammaDefog ¶
func KCGEXRToneMappingGammaDefog() uintptr
func KCGEXRToneMappingGammaExposure ¶
func KCGEXRToneMappingGammaExposure() uintptr
func KCGEXRToneMappingGammaKneeHigh ¶
func KCGEXRToneMappingGammaKneeHigh() uintptr
func KCGEXRToneMappingGammaKneeLow ¶
func KCGEXRToneMappingGammaKneeLow() uintptr
func KCGFontVariationAxisDefaultValue ¶
func KCGFontVariationAxisDefaultValue() uintptr
func KCGFontVariationAxisMaxValue ¶
func KCGFontVariationAxisMaxValue() uintptr
func KCGFontVariationAxisMinValue ¶
func KCGFontVariationAxisMinValue() uintptr
func KCGFontVariationAxisName ¶
func KCGFontVariationAxisName() uintptr
func KCGPDFContextAccessPermissions ¶
func KCGPDFContextAccessPermissions() uintptr
func KCGPDFContextAllowsCopying ¶
func KCGPDFContextAllowsCopying() uintptr
func KCGPDFContextAllowsPrinting ¶
func KCGPDFContextAllowsPrinting() uintptr
func KCGPDFContextArtBox ¶
func KCGPDFContextArtBox() uintptr
func KCGPDFContextAuthor ¶
func KCGPDFContextAuthor() uintptr
func KCGPDFContextBleedBox ¶
func KCGPDFContextBleedBox() uintptr
func KCGPDFContextCreateLinearizedPDF ¶
func KCGPDFContextCreateLinearizedPDF() uintptr
func KCGPDFContextCreatePDFA ¶
func KCGPDFContextCreatePDFA() uintptr
func KCGPDFContextCreator ¶
func KCGPDFContextCreator() uintptr
func KCGPDFContextCropBox ¶
func KCGPDFContextCropBox() uintptr
func KCGPDFContextEncryptionKeyLength ¶
func KCGPDFContextEncryptionKeyLength() uintptr
func KCGPDFContextKeywords ¶
func KCGPDFContextKeywords() uintptr
func KCGPDFContextMediaBox ¶
func KCGPDFContextMediaBox() uintptr
func KCGPDFContextOutputIntent ¶
func KCGPDFContextOutputIntent() uintptr
func KCGPDFContextOutputIntents ¶
func KCGPDFContextOutputIntents() uintptr
func KCGPDFContextOwnerPassword ¶
func KCGPDFContextOwnerPassword() uintptr
func KCGPDFContextSubject ¶
func KCGPDFContextSubject() uintptr
func KCGPDFContextTitle ¶
func KCGPDFContextTitle() uintptr
func KCGPDFContextTrimBox ¶
func KCGPDFContextTrimBox() uintptr
func KCGPDFContextUserPassword ¶
func KCGPDFContextUserPassword() uintptr
func KCGPDFOutlineChildren ¶
func KCGPDFOutlineChildren() uintptr
func KCGPDFOutlineDestination ¶
func KCGPDFOutlineDestination() uintptr
func KCGPDFOutlineDestinationRect ¶
func KCGPDFOutlineDestinationRect() uintptr
func KCGPDFOutlineTitle ¶
func KCGPDFOutlineTitle() uintptr
func KCGPDFTagPropertyActualText ¶
func KCGPDFTagPropertyActualText() uintptr
func KCGPDFTagPropertyAlternativeText ¶
func KCGPDFTagPropertyAlternativeText() uintptr
func KCGPDFTagPropertyLanguageText ¶
func KCGPDFTagPropertyLanguageText() uintptr
func KCGPDFTagPropertyTitleText ¶
func KCGPDFTagPropertyTitleText() uintptr
func KCGPDFXDestinationOutputProfile ¶
func KCGPDFXDestinationOutputProfile() uintptr
func KCGPDFXInfo ¶
func KCGPDFXInfo() uintptr
func KCGPDFXOutputCondition ¶
func KCGPDFXOutputCondition() uintptr
func KCGPDFXOutputConditionIdentifier ¶
func KCGPDFXOutputConditionIdentifier() uintptr
func KCGPDFXOutputIntentSubtype ¶
func KCGPDFXOutputIntentSubtype() uintptr
func KCGPDFXRegistryName ¶
func KCGPDFXRegistryName() uintptr
func KCGPreferredDynamicRange ¶
func KCGPreferredDynamicRange() uintptr
func KCGSkipBoostToHDR ¶
func KCGSkipBoostToHDR() uintptr
func KCGUse100nitsHLGOOTF ¶
func KCGUse100nitsHLGOOTF() uintptr
func KCGUseBT1886ForCoreVideoGamma ¶
func KCGUseBT1886ForCoreVideoGamma() uintptr
func KCGUseLegacyHDREcosystem ¶
func KCGUseLegacyHDREcosystem() uintptr
func KCGWindowAlpha ¶
func KCGWindowAlpha() uintptr
func KCGWindowBackingLocationVideoMemory ¶
func KCGWindowBackingLocationVideoMemory() uintptr
func KCGWindowBounds ¶
func KCGWindowBounds() uintptr
func KCGWindowIsOnscreen ¶
func KCGWindowIsOnscreen() uintptr
func KCGWindowLayer ¶
func KCGWindowLayer() uintptr
func KCGWindowMemoryUsage ¶
func KCGWindowMemoryUsage() uintptr
func KCGWindowName ¶
func KCGWindowName() uintptr
func KCGWindowNumber ¶
func KCGWindowNumber() uintptr
func KCGWindowOwnerName ¶
func KCGWindowOwnerName() uintptr
func KCGWindowOwnerPID ¶
func KCGWindowOwnerPID() uintptr
func KCGWindowSharingState ¶
func KCGWindowSharingState() uintptr
func KCGWindowStoreType ¶
func KCGWindowStoreType() uintptr
func KCGWindowWorkspace
deprecated
func KCGWindowWorkspace() uintptr
Deprecated: No longer supported
func SymbolAvailable ¶
SymbolAvailable reports whether the named C symbol was bound when the library loaded. Calling a generated wrapper whose symbol is unavailable dereferences a nil function variable and panics.
Types ¶
type Acl_entry_id_t ¶
type Acl_entry_id_t int64
const ( ACL_FIRST_ENTRY Acl_entry_id_t = 0 ACL_NEXT_ENTRY Acl_entry_id_t = -1 ACL_LAST_ENTRY Acl_entry_id_t = -2 )
func (Acl_entry_id_t) String ¶
func (e Acl_entry_id_t) String() string
type Acl_flag_t ¶
type Acl_flag_t int64
const ( ACL_FLAG_DEFER_INHERIT Acl_flag_t = 1 ACL_FLAG_NO_INHERIT Acl_flag_t = 131072 ACL_ENTRY_INHERITED Acl_flag_t = 16 ACL_ENTRY_FILE_INHERIT Acl_flag_t = 32 ACL_ENTRY_DIRECTORY_INHERIT Acl_flag_t = 64 ACL_ENTRY_LIMIT_INHERIT Acl_flag_t = 128 ACL_ENTRY_ONLY_INHERIT Acl_flag_t = 256 )
func (Acl_flag_t) String ¶
func (e Acl_flag_t) String() string
type Acl_perm_t ¶
type Acl_perm_t int64
const ( ACL_READ_DATA Acl_perm_t = 2 ACL_LIST_DIRECTORY Acl_perm_t = 2 ACL_WRITE_DATA Acl_perm_t = 4 ACL_ADD_FILE Acl_perm_t = 4 ACL_EXECUTE Acl_perm_t = 8 ACL_SEARCH Acl_perm_t = 8 ACL_DELETE Acl_perm_t = 16 ACL_APPEND_DATA Acl_perm_t = 32 ACL_ADD_SUBDIRECTORY Acl_perm_t = 32 ACL_DELETE_CHILD Acl_perm_t = 64 ACL_READ_ATTRIBUTES Acl_perm_t = 128 ACL_WRITE_ATTRIBUTES Acl_perm_t = 256 ACL_READ_EXTATTRIBUTES Acl_perm_t = 512 ACL_WRITE_EXTATTRIBUTES Acl_perm_t = 1024 ACL_READ_SECURITY Acl_perm_t = 2048 ACL_WRITE_SECURITY Acl_perm_t = 4096 ACL_CHANGE_OWNER Acl_perm_t = 8192 ACL_SYNCHRONIZE Acl_perm_t = 1048576 )
func (Acl_perm_t) String ¶
func (e Acl_perm_t) String() string
type Acl_type_t ¶
type Acl_type_t int64
const ( ACL_TYPE_EXTENDED Acl_type_t = 256 ACL_TYPE_ACCESS Acl_type_t = 0 ACL_TYPE_DEFAULT Acl_type_t = 1 ACL_TYPE_AFS Acl_type_t = 2 ACL_TYPE_CODA Acl_type_t = 3 ACL_TYPE_NTFS Acl_type_t = 4 ACL_TYPE_NWFS Acl_type_t = 5 )
func (Acl_type_t) String ¶
func (e Acl_type_t) String() string
type CGBitmapInfo ¶
type CGBitmapInfo int64
const ( KCGBitmapAlphaInfoMask CGBitmapInfo = 31 KCGBitmapComponentInfoMask CGBitmapInfo = 3840 KCGBitmapByteOrderInfoMask CGBitmapInfo = 28672 KCGBitmapPixelFormatInfoMask CGBitmapInfo = 983040 KCGBitmapFloatInfoMask CGBitmapInfo = 3840 KCGBitmapByteOrderMask CGBitmapInfo = 28672 KCGBitmapFloatComponents CGBitmapInfo = 256 KCGBitmapByteOrderDefault CGBitmapInfo = 0 KCGBitmapByteOrder16Little CGBitmapInfo = 4096 KCGBitmapByteOrder32Little CGBitmapInfo = 8192 KCGBitmapByteOrder16Big CGBitmapInfo = 12288 KCGBitmapByteOrder32Big CGBitmapInfo = 16384 )
func CGBitmapContextGetBitmapInfo ¶
func CGBitmapContextGetBitmapInfo(context_ unsafe.Pointer) CGBitmapInfo
func CGBitmapInfoMake ¶
func CGBitmapInfoMake(alpha CGImageAlphaInfo, component CGImageComponentInfo, byteOrder CGImageByteOrderInfo, pixelFormat CGImagePixelFormatInfo) CGBitmapInfo
func CGImageGetBitmapInfo ¶
func CGImageGetBitmapInfo(image unsafe.Pointer) CGBitmapInfo
func (CGBitmapInfo) String ¶
func (e CGBitmapInfo) String() string
type CGBitmapLayout ¶
type CGBitmapLayout int64
const ( KCGBitmapLayoutAlphaOnly CGBitmapLayout = 0 KCGBitmapLayoutGray CGBitmapLayout = 1 KCGBitmapLayoutGrayAlpha CGBitmapLayout = 2 KCGBitmapLayoutRGBA CGBitmapLayout = 3 KCGBitmapLayoutARGB CGBitmapLayout = 4 KCGBitmapLayoutRGBX CGBitmapLayout = 5 KCGBitmapLayoutXRGB CGBitmapLayout = 6 KCGBitmapLayoutBGRA CGBitmapLayout = 7 KCGBitmapLayoutBGRX CGBitmapLayout = 8 KCGBitmapLayoutABGR CGBitmapLayout = 9 KCGBitmapLayoutXBGR CGBitmapLayout = 10 KCGBitmapLayoutCMYK CGBitmapLayout = 11 )
func (CGBitmapLayout) String ¶
func (e CGBitmapLayout) String() string
type CGBitmapParameters ¶
type CGBitmapParameters struct {
Width uint
Height uint
BytesPerPixel uint
AlignedBytesPerRow uint
Component CGComponent
Layout CGBitmapLayout
Format CGImagePixelFormatInfo
ColorSpace unsafe.Pointer
HasPremultipliedAlpha bool
ByteOrder int
EdrTargetHeadroom float32
}
type CGBlendMode ¶
type CGBlendMode int64
const ( KCGBlendModeNormal CGBlendMode = 0 KCGBlendModeMultiply CGBlendMode = 1 KCGBlendModeScreen CGBlendMode = 2 KCGBlendModeOverlay CGBlendMode = 3 KCGBlendModeDarken CGBlendMode = 4 KCGBlendModeLighten CGBlendMode = 5 KCGBlendModeColorDodge CGBlendMode = 6 KCGBlendModeColorBurn CGBlendMode = 7 KCGBlendModeSoftLight CGBlendMode = 8 KCGBlendModeHardLight CGBlendMode = 9 KCGBlendModeDifference CGBlendMode = 10 KCGBlendModeExclusion CGBlendMode = 11 KCGBlendModeHue CGBlendMode = 12 KCGBlendModeSaturation CGBlendMode = 13 KCGBlendModeColor CGBlendMode = 14 KCGBlendModeLuminosity CGBlendMode = 15 KCGBlendModeClear CGBlendMode = 16 KCGBlendModeCopy CGBlendMode = 17 KCGBlendModeSourceIn CGBlendMode = 18 KCGBlendModeSourceOut CGBlendMode = 19 KCGBlendModeSourceAtop CGBlendMode = 20 KCGBlendModeDestinationOver CGBlendMode = 21 KCGBlendModeDestinationIn CGBlendMode = 22 KCGBlendModeDestinationOut CGBlendMode = 23 KCGBlendModeDestinationAtop CGBlendMode = 24 KCGBlendModeXOR CGBlendMode = 25 KCGBlendModePlusDarker CGBlendMode = 26 KCGBlendModePlusLighter CGBlendMode = 27 )
func (CGBlendMode) String ¶
func (e CGBlendMode) String() string
type CGCaptureOptions ¶
type CGCaptureOptions int64
const ( KCGCaptureNoOptions CGCaptureOptions = 0 KCGCaptureNoFill CGCaptureOptions = 1 )
func (CGCaptureOptions) String ¶
func (e CGCaptureOptions) String() string
type CGColorBufferFormat ¶
type CGColorBufferFormat struct {
Version uint32
BitmapInfo CGBitmapInfo
BitsPerComponent uint
BitsPerPixel uint
BytesPerRow uint
}
type CGColorConversionInfo ¶
type CGColorConversionInfo struct{}
CGColorConversionInfo is an opaque type.
type CGColorConversionInfoTransformType ¶
type CGColorConversionInfoTransformType int64
const ( KCGColorConversionTransformFromSpace CGColorConversionInfoTransformType = 0 KCGColorConversionTransformToSpace CGColorConversionInfoTransformType = 1 KCGColorConversionTransformApplySpace CGColorConversionInfoTransformType = 2 )
func (CGColorConversionInfoTransformType) String ¶
func (e CGColorConversionInfoTransformType) String() string
type CGColorDataFormat ¶
type CGColorDataFormat struct {
Version uint32
Colorspace_info unsafe.Pointer
Bitmap_info CGBitmapInfo
Bits_per_component uint
Bytes_per_row uint
Intent CGColorRenderingIntent
Decode *float64
}
type CGColorModel ¶
type CGColorModel int64
const ( KCGColorModelNoColorant CGColorModel = 0 KCGColorModelGray CGColorModel = 1 KCGColorModelRGB CGColorModel = 2 KCGColorModelCMYK CGColorModel = 4 KCGColorModelLab CGColorModel = 8 KCGColorModelDeviceN CGColorModel = 16 )
func (CGColorModel) String ¶
func (e CGColorModel) String() string
type CGColorRenderingIntent ¶
type CGColorRenderingIntent int64
const ( KCGRenderingIntentDefault CGColorRenderingIntent = 0 KCGRenderingIntentAbsoluteColorimetric CGColorRenderingIntent = 1 KCGRenderingIntentRelativeColorimetric CGColorRenderingIntent = 2 KCGRenderingIntentPerceptual CGColorRenderingIntent = 3 KCGRenderingIntentSaturation CGColorRenderingIntent = 4 )
func CGImageGetRenderingIntent ¶
func CGImageGetRenderingIntent(image unsafe.Pointer) CGColorRenderingIntent
func (CGColorRenderingIntent) String ¶
func (e CGColorRenderingIntent) String() string
type CGColorSpaceModel ¶
type CGColorSpaceModel int64
const ( KCGColorSpaceModelUnknown CGColorSpaceModel = -1 KCGColorSpaceModelMonochrome CGColorSpaceModel = 0 KCGColorSpaceModelRGB CGColorSpaceModel = 1 KCGColorSpaceModelCMYK CGColorSpaceModel = 2 KCGColorSpaceModelLab CGColorSpaceModel = 3 KCGColorSpaceModelDeviceN CGColorSpaceModel = 4 KCGColorSpaceModelIndexed CGColorSpaceModel = 5 KCGColorSpaceModelPattern CGColorSpaceModel = 6 KCGColorSpaceModelXYZ CGColorSpaceModel = 7 )
func CGColorSpaceGetModel ¶
func CGColorSpaceGetModel(space unsafe.Pointer) CGColorSpaceModel
func (CGColorSpaceModel) String ¶
func (e CGColorSpaceModel) String() string
type CGComponent ¶
type CGComponent int64
const ( KCGComponentUnknown CGComponent = 0 KCGComponentInteger8Bit CGComponent = 1 KCGComponentInteger10Bit CGComponent = 6 KCGComponentInteger16Bit CGComponent = 2 KCGComponentInteger32Bit CGComponent = 3 KCGComponentFloat16Bit CGComponent = 5 KCGComponentFloat32Bit CGComponent = 4 )
func (CGComponent) String ¶
func (e CGComponent) String() string
type CGConfigureOption ¶
type CGConfigureOption int64
const ( KCGConfigureForAppOnly CGConfigureOption = 0 KCGConfigureForSession CGConfigureOption = 1 KCGConfigurePermanently CGConfigureOption = 2 )
func (CGConfigureOption) String ¶
func (e CGConfigureOption) String() string
type CGContentInfo ¶
type CGContentInfo struct {
DeepestImageComponent CGComponent
ContentColorModels CGColorModel
HasWideGamut bool
HasTransparency bool
LargestContentHeadroom float32
}
type CGContentToneMappingInfo ¶
type CGContentToneMappingInfo struct {
Method CGToneMapping
Options unsafe.Pointer
}
func CGContextGetContentToneMappingInfo ¶
func CGContextGetContentToneMappingInfo(c unsafe.Pointer) CGContentToneMappingInfo
type CGDataConsumerCallbacks ¶
type CGDeviceColor ¶
type CGDisplayChangeSummaryFlags ¶
type CGDisplayChangeSummaryFlags int64
const ( KCGDisplayBeginConfigurationFlag CGDisplayChangeSummaryFlags = 1 KCGDisplayMovedFlag CGDisplayChangeSummaryFlags = 2 KCGDisplaySetMainFlag CGDisplayChangeSummaryFlags = 4 KCGDisplaySetModeFlag CGDisplayChangeSummaryFlags = 8 KCGDisplayAddFlag CGDisplayChangeSummaryFlags = 16 KCGDisplayRemoveFlag CGDisplayChangeSummaryFlags = 32 KCGDisplayEnabledFlag CGDisplayChangeSummaryFlags = 256 KCGDisplayDisabledFlag CGDisplayChangeSummaryFlags = 512 KCGDisplayMirrorFlag CGDisplayChangeSummaryFlags = 1024 KCGDisplayUnMirrorFlag CGDisplayChangeSummaryFlags = 2048 KCGDisplayDesktopShapeChangedFlag CGDisplayChangeSummaryFlags = 4096 )
func (CGDisplayChangeSummaryFlags) String ¶
func (e CGDisplayChangeSummaryFlags) String() string
type CGDisplayConfigRef ¶
type CGDisplayConfigRef struct{}
C struct: _CGDisplayConfigRef CGDisplayConfigRef is an opaque type.
type CGDisplayStream ¶
type CGDisplayStream struct{}
@typedef CGDisplayStreamRef @abstract An opaque reference to a CGDisplayStream object @discussion A CGDisplayStream provides a streaming API for capturing display updates in a realtime manner. It can also provide scaling and color space conversion services, as well as allow capturing sub regions of the display. Callbacks can be targetted at either a traditional CFRunLoop, or at a dispatch queue. CGDisplayStream is an opaque type.
type CGDisplayStreamFrameStatus ¶
type CGDisplayStreamFrameStatus int64
const ( KCGDisplayStreamFrameStatusFrameComplete CGDisplayStreamFrameStatus = 0 KCGDisplayStreamFrameStatusFrameIdle CGDisplayStreamFrameStatus = 1 KCGDisplayStreamFrameStatusFrameBlank CGDisplayStreamFrameStatus = 2 KCGDisplayStreamFrameStatusStopped CGDisplayStreamFrameStatus = 3 )
func (CGDisplayStreamFrameStatus) String ¶
func (e CGDisplayStreamFrameStatus) String() string
type CGDisplayStreamUpdate ¶
type CGDisplayStreamUpdate struct{}
@typedef CGDisplayStreamUpdateRef @abstract An opaque reference to a single frame's extra metadata that describes useful frame delta information @discussion A CGDisplayStreamUpdate encapsulates information about what portions of a frame have changed relative to a previously delivered frame. This includes regions that were changed in any way, which ones were actually redrawn, and which regions were merely copied from one place to another. A routine is provided to merge two update refs together in cases where apps need to coalesce the values because they decided to skip processing for one or more frames. CGDisplayStreamUpdate is an opaque type.
type CGDisplayStreamUpdateRectType ¶
type CGDisplayStreamUpdateRectType int64
const ( KCGDisplayStreamUpdateRefreshedRects CGDisplayStreamUpdateRectType = 0 KCGDisplayStreamUpdateMovedRects CGDisplayStreamUpdateRectType = 1 KCGDisplayStreamUpdateDirtyRects CGDisplayStreamUpdateRectType = 2 KCGDisplayStreamUpdateReducedDirtyRects CGDisplayStreamUpdateRectType = 3 )
func (CGDisplayStreamUpdateRectType) String ¶
func (e CGDisplayStreamUpdateRectType) String() string
type CGError ¶
type CGError int64
const ( KCGErrorSuccess CGError = 0 KCGErrorFailure CGError = 1000 KCGErrorIllegalArgument CGError = 1001 KCGErrorInvalidConnection CGError = 1002 KCGErrorInvalidContext CGError = 1003 KCGErrorCannotComplete CGError = 1004 KCGErrorNotImplemented CGError = 1006 KCGErrorRangeCheck CGError = 1007 KCGErrorTypeCheck CGError = 1008 KCGErrorInvalidOperation CGError = 1010 KCGErrorNoneAvailable CGError = 1011 )
func CGCaptureAllDisplays ¶
func CGCaptureAllDisplays() CGError
func CGCaptureAllDisplaysWithOptions ¶
func CGCaptureAllDisplaysWithOptions(options CGCaptureOptions) CGError
func CGCompleteDisplayConfiguration ¶
func CGCompleteDisplayConfiguration(config unsafe.Pointer, option CGConfigureOption) CGError
func CGDisplayCapture ¶
func CGDisplayCaptureWithOptions ¶
func CGDisplayCaptureWithOptions(display uint32, options CGCaptureOptions) CGError
func CGDisplayFade ¶
func CGDisplayHideCursor ¶
func CGDisplayMoveCursorToPoint ¶
func CGDisplayMoveCursorToPoint(display uint32, point corefoundation.CGPoint) CGError
func CGDisplayRelease ¶
func CGDisplaySetDisplayMode ¶
func CGDisplaySetStereoOperation ¶
func CGDisplaySetStereoOperation(display uint32, stereo int, forceBlueLine int, option CGConfigureOption) CGError
func CGDisplayShowCursor ¶
func CGDisplaySwitchToMode
deprecated
func CGEnableEventStateCombining
deprecated
func CGGetActiveDisplayList ¶
func CGGetDisplaysWithPoint ¶
func CGGetDisplaysWithRect ¶
func CGGetEventTapList ¶
func CGGetEventTapList(maxNumberOfTaps uint32, tapList *CGEventTapInformation, eventTapCount *uint32) CGError
func CGGetOnlineDisplayList ¶
func CGInhibitLocalEvents
deprecated
func CGPostKeyboardEvent
deprecated
func CGReleaseAllDisplays ¶
func CGReleaseAllDisplays() CGError
func CGSetLocalEventsFilterDuringSuppressionState
deprecated
func CGSetLocalEventsFilterDuringSuppressionState(filter CGEventFilterMask, state CGEventSuppressionState) CGError
Deprecated: No longer supported
func CGSetLocalEventsSuppressionInterval
deprecated
func CGWaitForScreenRefreshRects
deprecated
func CGWaitForScreenRefreshRects(rects *corefoundation.CGRect, count *uint32) CGError
Deprecated: No longer supported
func CGWaitForScreenUpdateRects
deprecated
func CGWaitForScreenUpdateRects(requestedOperations CGScreenUpdateOperation, currentOperation *CGScreenUpdateOperation, rects *corefoundation.CGRect, rectCount *uint, delta *CGScreenUpdateMoveDelta) CGError
Deprecated: No longer supported
func CGWarpMouseCursorPosition ¶
func CGWarpMouseCursorPosition(newCursorPosition corefoundation.CGPoint) CGError
type CGEventField ¶
type CGEventField int64
const ( KCGMouseEventNumber CGEventField = 0 KCGMouseEventClickState CGEventField = 1 KCGMouseEventPressure CGEventField = 2 KCGMouseEventButtonNumber CGEventField = 3 KCGMouseEventDeltaX CGEventField = 4 KCGMouseEventDeltaY CGEventField = 5 KCGMouseEventInstantMouser CGEventField = 6 KCGMouseEventSubtype CGEventField = 7 KCGKeyboardEventAutorepeat CGEventField = 8 KCGKeyboardEventKeycode CGEventField = 9 KCGKeyboardEventKeyboardType CGEventField = 10 KCGScrollWheelEventDeltaAxis1 CGEventField = 11 KCGScrollWheelEventDeltaAxis2 CGEventField = 12 KCGScrollWheelEventDeltaAxis3 CGEventField = 13 KCGScrollWheelEventFixedPtDeltaAxis1 CGEventField = 93 KCGScrollWheelEventFixedPtDeltaAxis2 CGEventField = 94 KCGScrollWheelEventFixedPtDeltaAxis3 CGEventField = 95 KCGScrollWheelEventPointDeltaAxis1 CGEventField = 96 KCGScrollWheelEventPointDeltaAxis2 CGEventField = 97 KCGScrollWheelEventPointDeltaAxis3 CGEventField = 98 KCGScrollWheelEventScrollPhase CGEventField = 99 KCGScrollWheelEventScrollCount CGEventField = 100 KCGScrollWheelEventMomentumPhase CGEventField = 123 KCGScrollWheelEventInstantMouser CGEventField = 14 KCGTabletEventPointX CGEventField = 15 KCGTabletEventPointY CGEventField = 16 KCGTabletEventPointZ CGEventField = 17 KCGTabletEventPointButtons CGEventField = 18 KCGTabletEventPointPressure CGEventField = 19 KCGTabletEventTiltX CGEventField = 20 KCGTabletEventTiltY CGEventField = 21 KCGTabletEventRotation CGEventField = 22 KCGTabletEventTangentialPressure CGEventField = 23 KCGTabletEventDeviceID CGEventField = 24 KCGTabletEventVendor1 CGEventField = 25 KCGTabletEventVendor2 CGEventField = 26 KCGTabletEventVendor3 CGEventField = 27 KCGTabletProximityEventVendorID CGEventField = 28 KCGTabletProximityEventTabletID CGEventField = 29 KCGTabletProximityEventPointerID CGEventField = 30 KCGTabletProximityEventDeviceID CGEventField = 31 KCGTabletProximityEventSystemTabletID CGEventField = 32 KCGTabletProximityEventVendorPointerType CGEventField = 33 KCGTabletProximityEventVendorPointerSerialNumber CGEventField = 34 KCGTabletProximityEventVendorUniqueID CGEventField = 35 KCGTabletProximityEventCapabilityMask CGEventField = 36 KCGTabletProximityEventPointerType CGEventField = 37 KCGTabletProximityEventEnterProximity CGEventField = 38 KCGEventTargetProcessSerialNumber CGEventField = 39 KCGEventTargetUnixProcessID CGEventField = 40 KCGEventSourceUnixProcessID CGEventField = 41 KCGEventSourceUserData CGEventField = 42 KCGEventSourceUserID CGEventField = 43 KCGEventSourceGroupID CGEventField = 44 KCGEventSourceStateID CGEventField = 45 KCGScrollWheelEventIsContinuous CGEventField = 88 KCGMouseEventWindowUnderMousePointer CGEventField = 91 KCGMouseEventWindowUnderMousePointerThatCanHandleThisEvent CGEventField = 92 KCGEventUnacceleratedPointerMovementX CGEventField = 170 KCGEventUnacceleratedPointerMovementY CGEventField = 171 KCGScrollWheelEventMomentumOptionPhase CGEventField = 173 KCGScrollWheelEventAcceleratedDeltaAxis1 CGEventField = 176 KCGScrollWheelEventAcceleratedDeltaAxis2 CGEventField = 175 KCGScrollWheelEventRawDeltaAxis1 CGEventField = 178 KCGScrollWheelEventRawDeltaAxis2 CGEventField = 177 )
func (CGEventField) String ¶
func (e CGEventField) String() string
type CGEventFilterMask ¶
type CGEventFilterMask int64
const ( KCGEventFilterMaskPermitLocalMouseEvents CGEventFilterMask = 1 KCGEventFilterMaskPermitLocalKeyboardEvents CGEventFilterMask = 2 KCGEventFilterMaskPermitSystemDefinedEvents CGEventFilterMask = 4 )
func CGEventSourceGetLocalEventsFilterDuringSuppressionState ¶
func CGEventSourceGetLocalEventsFilterDuringSuppressionState(source unsafe.Pointer, state CGEventSuppressionState) CGEventFilterMask
func (CGEventFilterMask) String ¶
func (e CGEventFilterMask) String() string
type CGEventFlags ¶
type CGEventFlags int64
const ( KCGEventFlagMaskAlphaShift CGEventFlags = 65536 KCGEventFlagMaskShift CGEventFlags = 131072 KCGEventFlagMaskControl CGEventFlags = 262144 KCGEventFlagMaskAlternate CGEventFlags = 524288 KCGEventFlagMaskCommand CGEventFlags = 1048576 KCGEventFlagMaskHelp CGEventFlags = 4194304 KCGEventFlagMaskSecondaryFn CGEventFlags = 8388608 KCGEventFlagMaskNumericPad CGEventFlags = 2097152 KCGEventFlagMaskNonCoalesced CGEventFlags = 256 )
func CGEventGetFlags ¶
func CGEventGetFlags(event unsafe.Pointer) CGEventFlags
func CGEventSourceFlagsState ¶
func CGEventSourceFlagsState(stateID CGEventSourceStateID) CGEventFlags
func (CGEventFlags) String ¶
func (e CGEventFlags) String() string
type CGEventMouseSubtype ¶
type CGEventMouseSubtype int64
const ( KCGEventMouseSubtypeDefault CGEventMouseSubtype = 0 KCGEventMouseSubtypeTabletPoint CGEventMouseSubtype = 1 KCGEventMouseSubtypeTabletProximity CGEventMouseSubtype = 2 )
func (CGEventMouseSubtype) String ¶
func (e CGEventMouseSubtype) String() string
type CGEventSource ¶
type CGEventSource struct{}
C struct: __CGEventSource CGEventSource is an opaque type.
type CGEventSourceStateID ¶
type CGEventSourceStateID int64
const ( KCGEventSourceStatePrivate CGEventSourceStateID = -1 KCGEventSourceStateCombinedSessionState CGEventSourceStateID = 0 KCGEventSourceStateHIDSystemState CGEventSourceStateID = 1 )
func CGEventSourceGetSourceStateID ¶
func CGEventSourceGetSourceStateID(source unsafe.Pointer) CGEventSourceStateID
func (CGEventSourceStateID) String ¶
func (e CGEventSourceStateID) String() string
type CGEventSuppressionState ¶
type CGEventSuppressionState int64
const ( KCGEventSuppressionStateSuppressionInterval CGEventSuppressionState = 0 KCGEventSuppressionStateRemoteMouseDrag CGEventSuppressionState = 1 KCGNumberOfEventSuppressionStates CGEventSuppressionState = 2 )
func (CGEventSuppressionState) String ¶
func (e CGEventSuppressionState) String() string
type CGEventTapInformation ¶
type CGEventTapInformation struct {
EventTapID uint32
TapPoint CGEventTapLocation
Options CGEventTapOptions
EventsOfInterest uint64
TappingProcess int
ProcessBeingTapped int
Enabled bool
MinUsecLatency float32
AvgUsecLatency float32
MaxUsecLatency float32
}
C struct: __CGEventTapInformation
type CGEventTapLocation ¶
type CGEventTapLocation int64
const ( KCGHIDEventTap CGEventTapLocation = 0 KCGSessionEventTap CGEventTapLocation = 1 KCGAnnotatedSessionEventTap CGEventTapLocation = 2 )
func (CGEventTapLocation) String ¶
func (e CGEventTapLocation) String() string
type CGEventTapOptions ¶
type CGEventTapOptions int64
const ( KCGEventTapOptionDefault CGEventTapOptions = 0 KCGEventTapOptionListenOnly CGEventTapOptions = 1 )
func (CGEventTapOptions) String ¶
func (e CGEventTapOptions) String() string
type CGEventTapPlacement ¶
type CGEventTapPlacement int64
const ( KCGHeadInsertEventTap CGEventTapPlacement = 0 KCGTailAppendEventTap CGEventTapPlacement = 1 )
func (CGEventTapPlacement) String ¶
func (e CGEventTapPlacement) String() string
type CGEventTapProxy ¶
type CGEventTapProxy struct{}
C struct: __CGEventTapProxy CGEventTapProxy is an opaque type.
type CGEventType ¶
type CGEventType int64
const ( KCGEventNull CGEventType = 0 KCGEventLeftMouseDown CGEventType = 1 KCGEventLeftMouseUp CGEventType = 2 KCGEventRightMouseDown CGEventType = 3 KCGEventRightMouseUp CGEventType = 4 KCGEventMouseMoved CGEventType = 5 KCGEventLeftMouseDragged CGEventType = 6 KCGEventRightMouseDragged CGEventType = 7 KCGEventKeyDown CGEventType = 10 KCGEventKeyUp CGEventType = 11 KCGEventFlagsChanged CGEventType = 12 KCGEventScrollWheel CGEventType = 22 KCGEventTabletPointer CGEventType = 23 KCGEventTabletProximity CGEventType = 24 KCGEventOtherMouseDown CGEventType = 25 KCGEventOtherMouseUp CGEventType = 26 KCGEventOtherMouseDragged CGEventType = 27 KCGEventTapDisabledByTimeout CGEventType = 4294967294 KCGEventTapDisabledByUserInput CGEventType = 4294967295 )
func CGEventGetType ¶
func CGEventGetType(event unsafe.Pointer) CGEventType
func (CGEventType) String ¶
func (e CGEventType) String() string
type CGFontPostScriptFormat ¶
type CGFontPostScriptFormat int64
const ( KCGFontPostScriptFormatType1 CGFontPostScriptFormat = 1 KCGFontPostScriptFormatType3 CGFontPostScriptFormat = 3 KCGFontPostScriptFormatType42 CGFontPostScriptFormat = 42 )
func (CGFontPostScriptFormat) String ¶
func (e CGFontPostScriptFormat) String() string
type CGFunctionCallbacks ¶
type CGGesturePhase ¶
type CGGesturePhase int64
const ( KCGGesturePhaseNone CGGesturePhase = 0 KCGGesturePhaseBegan CGGesturePhase = 1 KCGGesturePhaseChanged CGGesturePhase = 2 KCGGesturePhaseEnded CGGesturePhase = 4 KCGGesturePhaseCancelled CGGesturePhase = 8 KCGGesturePhaseMayBegin CGGesturePhase = 128 )
func (CGGesturePhase) String ¶
func (e CGGesturePhase) String() string
type CGGlyphDeprecatedEnum ¶
type CGGlyphDeprecatedEnum int64
const ( CGGlyphMin CGGlyphDeprecatedEnum = 0 CGGlyphMax CGGlyphDeprecatedEnum = 1 )
func (CGGlyphDeprecatedEnum) String ¶
func (e CGGlyphDeprecatedEnum) String() string
type CGGradientDrawingOptions ¶
type CGGradientDrawingOptions int64
const ( KCGGradientDrawsBeforeStartLocation CGGradientDrawingOptions = 1 KCGGradientDrawsAfterEndLocation CGGradientDrawingOptions = 2 )
func (CGGradientDrawingOptions) String ¶
func (e CGGradientDrawingOptions) String() string
type CGImageAlphaInfo ¶
type CGImageAlphaInfo int64
const ( KCGImageAlphaNone CGImageAlphaInfo = 0 KCGImageAlphaPremultipliedLast CGImageAlphaInfo = 1 KCGImageAlphaPremultipliedFirst CGImageAlphaInfo = 2 KCGImageAlphaLast CGImageAlphaInfo = 3 KCGImageAlphaFirst CGImageAlphaInfo = 4 KCGImageAlphaNoneSkipLast CGImageAlphaInfo = 5 KCGImageAlphaNoneSkipFirst CGImageAlphaInfo = 6 KCGImageAlphaOnly CGImageAlphaInfo = 7 )
func CGBitmapContextGetAlphaInfo ¶
func CGBitmapContextGetAlphaInfo(context_ unsafe.Pointer) CGImageAlphaInfo
func CGImageGetAlphaInfo ¶
func CGImageGetAlphaInfo(image unsafe.Pointer) CGImageAlphaInfo
func (CGImageAlphaInfo) String ¶
func (e CGImageAlphaInfo) String() string
type CGImageByteOrderInfo ¶
type CGImageByteOrderInfo int64
const ( KCGImageByteOrderMask CGImageByteOrderInfo = 28672 KCGImageByteOrderDefault CGImageByteOrderInfo = 0 KCGImageByteOrder16Little CGImageByteOrderInfo = 4096 KCGImageByteOrder32Little CGImageByteOrderInfo = 8192 KCGImageByteOrder16Big CGImageByteOrderInfo = 12288 KCGImageByteOrder32Big CGImageByteOrderInfo = 16384 KCGImageByteOrder16Host CGImageByteOrderInfo = 4096 KCGImageByteOrder32Host CGImageByteOrderInfo = 8192 )
func CGImageGetByteOrderInfo ¶
func CGImageGetByteOrderInfo(image unsafe.Pointer) CGImageByteOrderInfo
func (CGImageByteOrderInfo) String ¶
func (e CGImageByteOrderInfo) String() string
type CGImageComponentInfo ¶
type CGImageComponentInfo int64
const ( KCGImageComponentInteger CGImageComponentInfo = 0 KCGImageComponentFloat CGImageComponentInfo = 256 )
func (CGImageComponentInfo) String ¶
func (e CGImageComponentInfo) String() string
type CGImagePixelFormatInfo ¶
type CGImagePixelFormatInfo int64
const ( KCGImagePixelFormatMask CGImagePixelFormatInfo = 983040 KCGImagePixelFormatPacked CGImagePixelFormatInfo = 0 KCGImagePixelFormatRGB555 CGImagePixelFormatInfo = 65536 KCGImagePixelFormatRGB565 CGImagePixelFormatInfo = 131072 KCGImagePixelFormatRGB101010 CGImagePixelFormatInfo = 196608 KCGImagePixelFormatRGBCIF10 CGImagePixelFormatInfo = 262144 )
func CGImageGetPixelFormatInfo ¶
func CGImageGetPixelFormatInfo(image unsafe.Pointer) CGImagePixelFormatInfo
func (CGImagePixelFormatInfo) String ¶
func (e CGImagePixelFormatInfo) String() string
type CGInterpolationQuality ¶
type CGInterpolationQuality int64
const ( KCGInterpolationDefault CGInterpolationQuality = 0 KCGInterpolationNone CGInterpolationQuality = 1 KCGInterpolationLow CGInterpolationQuality = 2 KCGInterpolationMedium CGInterpolationQuality = 4 KCGInterpolationHigh CGInterpolationQuality = 3 )
func CGContextGetInterpolationQuality ¶
func CGContextGetInterpolationQuality(c unsafe.Pointer) CGInterpolationQuality
func (CGInterpolationQuality) String ¶
func (e CGInterpolationQuality) String() string
type CGLineJoin ¶
type CGLineJoin int64
const ( KCGLineJoinMiter CGLineJoin = 0 KCGLineJoinRound CGLineJoin = 1 KCGLineJoinBevel CGLineJoin = 2 )
func (CGLineJoin) String ¶
func (e CGLineJoin) String() string
type CGMomentumScrollPhase ¶
type CGMomentumScrollPhase int64
const ( KCGMomentumScrollPhaseNone CGMomentumScrollPhase = 0 KCGMomentumScrollPhaseBegin CGMomentumScrollPhase = 1 KCGMomentumScrollPhaseContinue CGMomentumScrollPhase = 2 KCGMomentumScrollPhaseEnd CGMomentumScrollPhase = 3 )
func (CGMomentumScrollPhase) String ¶
func (e CGMomentumScrollPhase) String() string
type CGMouseButton ¶
type CGMouseButton int64
const ( KCGMouseButtonLeft CGMouseButton = 0 KCGMouseButtonRight CGMouseButton = 1 KCGMouseButtonCenter CGMouseButton = 2 )
func (CGMouseButton) String ¶
func (e CGMouseButton) String() string
type CGPDFAccessPermissions ¶
type CGPDFAccessPermissions int64
const ( KCGPDFAllowsLowQualityPrinting CGPDFAccessPermissions = 1 KCGPDFAllowsHighQualityPrinting CGPDFAccessPermissions = 2 KCGPDFAllowsDocumentChanges CGPDFAccessPermissions = 4 KCGPDFAllowsDocumentAssembly CGPDFAccessPermissions = 8 KCGPDFAllowsContentCopying CGPDFAccessPermissions = 16 KCGPDFAllowsContentAccessibility CGPDFAccessPermissions = 32 KCGPDFAllowsCommenting CGPDFAccessPermissions = 64 KCGPDFAllowsFormFieldEntry CGPDFAccessPermissions = 128 )
func CGPDFDocumentGetAccessPermissions ¶
func CGPDFDocumentGetAccessPermissions(document unsafe.Pointer) CGPDFAccessPermissions
func (CGPDFAccessPermissions) String ¶
func (e CGPDFAccessPermissions) String() string
type CGPDFDataFormat ¶
type CGPDFDataFormat int64
const ( CGPDFDataFormatRaw CGPDFDataFormat = 0 CGPDFDataFormatJPEGEncoded CGPDFDataFormat = 1 CGPDFDataFormatJPEG2000 CGPDFDataFormat = 2 )
func (CGPDFDataFormat) String ¶
func (e CGPDFDataFormat) String() string
type CGPDFObjectType ¶
type CGPDFObjectType int64
const ( KCGPDFObjectTypeNull CGPDFObjectType = 1 KCGPDFObjectTypeBoolean CGPDFObjectType = 2 KCGPDFObjectTypeInteger CGPDFObjectType = 3 KCGPDFObjectTypeReal CGPDFObjectType = 4 KCGPDFObjectTypeName CGPDFObjectType = 5 KCGPDFObjectTypeString CGPDFObjectType = 6 KCGPDFObjectTypeArray CGPDFObjectType = 7 KCGPDFObjectTypeDictionary CGPDFObjectType = 8 KCGPDFObjectTypeStream CGPDFObjectType = 9 )
func CGPDFObjectGetType ¶
func CGPDFObjectGetType(object unsafe.Pointer) CGPDFObjectType
func (CGPDFObjectType) String ¶
func (e CGPDFObjectType) String() string
type CGPDFTagType ¶
type CGPDFTagType int64
const ( CGPDFTagTypeDocument CGPDFTagType = 100 CGPDFTagTypePart CGPDFTagType = 101 CGPDFTagTypeArt CGPDFTagType = 102 CGPDFTagTypeSection CGPDFTagType = 103 CGPDFTagTypeDiv CGPDFTagType = 104 CGPDFTagTypeBlockQuote CGPDFTagType = 105 CGPDFTagTypeCaption CGPDFTagType = 106 CGPDFTagTypeTOC CGPDFTagType = 107 CGPDFTagTypeTOCI CGPDFTagType = 108 CGPDFTagTypeIndex CGPDFTagType = 109 CGPDFTagTypeNonStructure CGPDFTagType = 110 CGPDFTagTypePrivate CGPDFTagType = 111 CGPDFTagTypeParagraph CGPDFTagType = 200 CGPDFTagTypeHeader CGPDFTagType = 201 CGPDFTagTypeHeader1 CGPDFTagType = 202 CGPDFTagTypeHeader2 CGPDFTagType = 203 CGPDFTagTypeHeader3 CGPDFTagType = 204 CGPDFTagTypeHeader4 CGPDFTagType = 205 CGPDFTagTypeHeader5 CGPDFTagType = 206 CGPDFTagTypeHeader6 CGPDFTagType = 207 CGPDFTagTypeList CGPDFTagType = 300 CGPDFTagTypeListItem CGPDFTagType = 301 CGPDFTagTypeLabel CGPDFTagType = 302 CGPDFTagTypeListBody CGPDFTagType = 303 CGPDFTagTypeTable CGPDFTagType = 400 CGPDFTagTypeTableRow CGPDFTagType = 401 CGPDFTagTypeTableHeaderCell CGPDFTagType = 402 CGPDFTagTypeTableDataCell CGPDFTagType = 403 CGPDFTagTypeTableHeader CGPDFTagType = 404 CGPDFTagTypeTableBody CGPDFTagType = 405 CGPDFTagTypeSpan CGPDFTagType = 500 CGPDFTagTypeQuote CGPDFTagType = 501 CGPDFTagTypeNote CGPDFTagType = 502 CGPDFTagTypeReference CGPDFTagType = 503 CGPDFTagTypeBibliography CGPDFTagType = 504 CGPDFTagTypeCode CGPDFTagType = 505 CGPDFTagTypeLink CGPDFTagType = 506 CGPDFTagTypeAnnotation CGPDFTagType = 507 CGPDFTagTypeRuby CGPDFTagType = 600 CGPDFTagTypeRubyBaseText CGPDFTagType = 601 CGPDFTagTypeRubyAnnotationText CGPDFTagType = 602 CGPDFTagTypeRubyPunctuation CGPDFTagType = 603 CGPDFTagTypeWarichu CGPDFTagType = 604 CGPDFTagTypeWarichuText CGPDFTagType = 605 CGPDFTagTypeWarichuPunctiation CGPDFTagType = 606 CGPDFTagTypeFigure CGPDFTagType = 700 CGPDFTagTypeFormula CGPDFTagType = 701 CGPDFTagTypeForm CGPDFTagType = 702 CGPDFTagTypeObject CGPDFTagType = 800 )
func (CGPDFTagType) String ¶
func (e CGPDFTagType) String() string
type CGPSConverterCallbacks ¶
type CGPathDrawingMode ¶
type CGPathDrawingMode int64
const ( KCGPathFill CGPathDrawingMode = 0 KCGPathEOFill CGPathDrawingMode = 1 KCGPathStroke CGPathDrawingMode = 2 KCGPathFillStroke CGPathDrawingMode = 3 KCGPathEOFillStroke CGPathDrawingMode = 4 )
func (CGPathDrawingMode) String ¶
func (e CGPathDrawingMode) String() string
type CGPathElement ¶
type CGPathElement struct {
Type CGPathElementType
Points *corefoundation.CGPoint
}
type CGPathElementType ¶
type CGPathElementType int64
const ( KCGPathElementMoveToPoint CGPathElementType = 0 KCGPathElementAddLineToPoint CGPathElementType = 1 KCGPathElementAddQuadCurveToPoint CGPathElementType = 2 KCGPathElementAddCurveToPoint CGPathElementType = 3 KCGPathElementCloseSubpath CGPathElementType = 4 )
func (CGPathElementType) String ¶
func (e CGPathElementType) String() string
type CGPatternCallbacks ¶
type CGPatternTiling ¶
type CGPatternTiling int64
const ( KCGPatternTilingNoDistortion CGPatternTiling = 0 KCGPatternTilingConstantSpacingMinimalDistortion CGPatternTiling = 1 KCGPatternTilingConstantSpacing CGPatternTiling = 2 )
func (CGPatternTiling) String ¶
func (e CGPatternTiling) String() string
type CGRenderingBufferProvider ¶
type CGRenderingBufferProvider struct{}
CGRenderingBufferProvider is an opaque type.
type CGScreenUpdateMoveDelta ¶
type CGScreenUpdateOperation ¶
type CGScreenUpdateOperation int64
const ( KCGScreenUpdateOperationRefresh CGScreenUpdateOperation = 0 KCGScreenUpdateOperationMove CGScreenUpdateOperation = 1 KCGScreenUpdateOperationReducedDirtyRectangleCount CGScreenUpdateOperation = 2147483648 )
func (CGScreenUpdateOperation) String ¶
func (e CGScreenUpdateOperation) String() string
type CGScrollEventUnit ¶
type CGScrollEventUnit int64
const ( KCGScrollEventUnitPixel CGScrollEventUnit = 0 KCGScrollEventUnitLine CGScrollEventUnit = 1 )
func (CGScrollEventUnit) String ¶
func (e CGScrollEventUnit) String() string
type CGScrollPhase ¶
type CGScrollPhase int64
const ( KCGScrollPhaseBegan CGScrollPhase = 1 KCGScrollPhaseChanged CGScrollPhase = 2 KCGScrollPhaseEnded CGScrollPhase = 4 KCGScrollPhaseCancelled CGScrollPhase = 8 KCGScrollPhaseMayBegin CGScrollPhase = 128 )
func (CGScrollPhase) String ¶
func (e CGScrollPhase) String() string
type CGTextDrawingMode ¶
type CGTextDrawingMode int64
const ( KCGTextFill CGTextDrawingMode = 0 KCGTextStroke CGTextDrawingMode = 1 KCGTextFillStroke CGTextDrawingMode = 2 KCGTextInvisible CGTextDrawingMode = 3 KCGTextFillClip CGTextDrawingMode = 4 KCGTextStrokeClip CGTextDrawingMode = 5 KCGTextFillStrokeClip CGTextDrawingMode = 6 KCGTextClip CGTextDrawingMode = 7 )
func (CGTextDrawingMode) String ¶
func (e CGTextDrawingMode) String() string
type CGTextEncoding
deprecated
type CGTextEncoding int64
Deprecated: No longer supported
const ( KCGEncodingFontSpecific CGTextEncoding = 0 KCGEncodingMacRoman CGTextEncoding = 1 )
func (CGTextEncoding) String ¶
func (e CGTextEncoding) String() string
type CGToneMapping ¶
type CGToneMapping int64
const ( KCGToneMappingDefault CGToneMapping = 0 KCGToneMappingImageSpecificLumaScaling CGToneMapping = 1 KCGToneMappingReferenceWhiteBased CGToneMapping = 2 KCGToneMappingITURecommended CGToneMapping = 3 KCGToneMappingEXRGamma CGToneMapping = 4 KCGToneMappingNone CGToneMapping = 5 )
func (CGToneMapping) String ¶
func (e CGToneMapping) String() string
type CGWindowBackingType ¶
type CGWindowBackingType int64
const ( KCGBackingStoreRetained CGWindowBackingType = 0 KCGBackingStoreNonretained CGWindowBackingType = 1 KCGBackingStoreBuffered CGWindowBackingType = 2 )
func (CGWindowBackingType) String ¶
func (e CGWindowBackingType) String() string
type CGWindowImageOption ¶
type CGWindowImageOption int64
const ( KCGWindowImageDefault CGWindowImageOption = 0 KCGWindowImageBoundsIgnoreFraming CGWindowImageOption = 1 KCGWindowImageShouldBeOpaque CGWindowImageOption = 2 KCGWindowImageOnlyShadows CGWindowImageOption = 4 KCGWindowImageBestResolution CGWindowImageOption = 8 KCGWindowImageNominalResolution CGWindowImageOption = 16 )
func (CGWindowImageOption) String ¶
func (e CGWindowImageOption) String() string
type CGWindowLevelKey ¶
type CGWindowLevelKey int64
const ( KCGBaseWindowLevelKey CGWindowLevelKey = 0 KCGMinimumWindowLevelKey CGWindowLevelKey = 1 KCGDesktopWindowLevelKey CGWindowLevelKey = 2 KCGBackstopMenuLevelKey CGWindowLevelKey = 3 KCGNormalWindowLevelKey CGWindowLevelKey = 4 KCGFloatingWindowLevelKey CGWindowLevelKey = 5 KCGTornOffMenuWindowLevelKey CGWindowLevelKey = 6 KCGDockWindowLevelKey CGWindowLevelKey = 7 KCGMainMenuWindowLevelKey CGWindowLevelKey = 8 KCGStatusWindowLevelKey CGWindowLevelKey = 9 KCGModalPanelWindowLevelKey CGWindowLevelKey = 10 KCGPopUpMenuWindowLevelKey CGWindowLevelKey = 11 KCGDraggingWindowLevelKey CGWindowLevelKey = 12 KCGScreenSaverWindowLevelKey CGWindowLevelKey = 13 KCGMaximumWindowLevelKey CGWindowLevelKey = 14 KCGOverlayWindowLevelKey CGWindowLevelKey = 15 KCGHelpWindowLevelKey CGWindowLevelKey = 16 KCGUtilityWindowLevelKey CGWindowLevelKey = 17 KCGDesktopIconWindowLevelKey CGWindowLevelKey = 18 KCGCursorWindowLevelKey CGWindowLevelKey = 19 KCGAssistiveTechHighWindowLevelKey CGWindowLevelKey = 20 KCGNumberOfWindowLevelKeys CGWindowLevelKey = 21 )
func (CGWindowLevelKey) String ¶
func (e CGWindowLevelKey) String() string
type CGWindowListOption ¶
type CGWindowListOption int64
const ( KCGWindowListOptionAll CGWindowListOption = 0 KCGWindowListOptionOnScreenOnly CGWindowListOption = 1 KCGWindowListOptionOnScreenAboveWindow CGWindowListOption = 2 KCGWindowListOptionOnScreenBelowWindow CGWindowListOption = 4 KCGWindowListOptionIncludingWindow CGWindowListOption = 8 KCGWindowListExcludeDesktopElements CGWindowListOption = 16 )
func (CGWindowListOption) String ¶
func (e CGWindowListOption) String() string
type CGWindowSharingType ¶
type CGWindowSharingType int64
const ( KCGWindowSharingNone CGWindowSharingType = 0 KCGWindowSharingReadOnly CGWindowSharingType = 1 KCGWindowSharingReadWrite CGWindowSharingType = 2 )
func (CGWindowSharingType) String ¶
func (e CGWindowSharingType) String() string
type Dispatch_autorelease_frequency_t ¶
type Dispatch_autorelease_frequency_t uint64
const ( DISPATCH_AUTORELEASE_FREQUENCY_INHERIT Dispatch_autorelease_frequency_t = 0 DISPATCH_AUTORELEASE_FREQUENCY_WORK_ITEM Dispatch_autorelease_frequency_t = 1 DISPATCH_AUTORELEASE_FREQUENCY_NEVER Dispatch_autorelease_frequency_t = 2 )
func (Dispatch_autorelease_frequency_t) String ¶
func (e Dispatch_autorelease_frequency_t) String() string
type Dispatch_block_flags_t ¶
type Dispatch_block_flags_t uint64
const ( DISPATCH_BLOCK_BARRIER Dispatch_block_flags_t = 1 DISPATCH_BLOCK_DETACHED Dispatch_block_flags_t = 2 DISPATCH_BLOCK_ASSIGN_CURRENT Dispatch_block_flags_t = 4 DISPATCH_BLOCK_NO_QOS_CLASS Dispatch_block_flags_t = 8 DISPATCH_BLOCK_INHERIT_QOS_CLASS Dispatch_block_flags_t = 16 DISPATCH_BLOCK_ENFORCE_QOS_CLASS Dispatch_block_flags_t = 32 )
func (Dispatch_block_flags_t) String ¶
func (e Dispatch_block_flags_t) String() string
type Filesec_property_t ¶
type Filesec_property_t int64
const ( FILESEC_OWNER Filesec_property_t = 1 FILESEC_GROUP Filesec_property_t = 2 FILESEC_UUID Filesec_property_t = 3 FILESEC_MODE Filesec_property_t = 4 FILESEC_ACL Filesec_property_t = 5 FILESEC_GRPUUID Filesec_property_t = 6 FILESEC_ACL_RAW Filesec_property_t = 100 FILESEC_ACL_ALLOCSIZE Filesec_property_t = 101 )
func (Filesec_property_t) String ¶
func (e Filesec_property_t) String() string
type Ipc_info_object_type_t ¶
type Ipc_info_object_type_t int64
const ( IPC_OTYPE_NONE Ipc_info_object_type_t = 0 IPC_OTYPE_THREAD_CONTROL Ipc_info_object_type_t = 1 IPC_OTYPE_TASK_CONTROL Ipc_info_object_type_t = 2 IPC_OTYPE_HOST Ipc_info_object_type_t = 3 IPC_OTYPE_HOST_PRIV Ipc_info_object_type_t = 4 IPC_OTYPE_PROCESSOR Ipc_info_object_type_t = 5 IPC_OTYPE_PROCESSOR_SET Ipc_info_object_type_t = 6 IPC_OTYPE_PROCESSOR_SET_NAME Ipc_info_object_type_t = 7 IPC_OTYPE_TIMER Ipc_info_object_type_t = 8 IPC_OTYPE_PORT_SUBST_ONCE Ipc_info_object_type_t = 9 IPC_OTYPE_MIG Ipc_info_object_type_t = 10 IPC_OTYPE_MEMORY_OBJECT Ipc_info_object_type_t = 11 IPC_OTYPE_XMM_PAGER Ipc_info_object_type_t = 12 IPC_OTYPE_XMM_KERNEL Ipc_info_object_type_t = 13 IPC_OTYPE_XMM_REPLY Ipc_info_object_type_t = 14 IPC_OTYPE_UND_REPLY Ipc_info_object_type_t = 15 IPC_OTYPE_HOST_NOTIFY Ipc_info_object_type_t = 16 IPC_OTYPE_HOST_SECURITY Ipc_info_object_type_t = 17 IPC_OTYPE_LEDGER Ipc_info_object_type_t = 18 IPC_OTYPE_MAIN_DEVICE Ipc_info_object_type_t = 19 IPC_OTYPE_TASK_NAME Ipc_info_object_type_t = 20 IPC_OTYPE_SUBSYSTEM Ipc_info_object_type_t = 21 IPC_OTYPE_IO_DONE_QUEUE Ipc_info_object_type_t = 22 IPC_OTYPE_SEMAPHORE Ipc_info_object_type_t = 23 IPC_OTYPE_LOCK_SET Ipc_info_object_type_t = 24 IPC_OTYPE_CLOCK Ipc_info_object_type_t = 25 IPC_OTYPE_CLOCK_CTRL Ipc_info_object_type_t = 26 IPC_OTYPE_IOKIT_IDENT Ipc_info_object_type_t = 27 IPC_OTYPE_NAMED_ENTRY Ipc_info_object_type_t = 28 IPC_OTYPE_IOKIT_CONNECT Ipc_info_object_type_t = 29 IPC_OTYPE_IOKIT_OBJECT Ipc_info_object_type_t = 30 IPC_OTYPE_UPL Ipc_info_object_type_t = 31 IPC_OTYPE_MEM_OBJ_CONTROL Ipc_info_object_type_t = 32 IPC_OTYPE_AU_SESSIONPORT Ipc_info_object_type_t = 33 IPC_OTYPE_FILEPORT Ipc_info_object_type_t = 34 IPC_OTYPE_LABELH Ipc_info_object_type_t = 35 IPC_OTYPE_TASK_RESUME Ipc_info_object_type_t = 36 IPC_OTYPE_VOUCHER Ipc_info_object_type_t = 37 IPC_OTYPE_VOUCHER_ATTR_CONTROL Ipc_info_object_type_t = 38 IPC_OTYPE_WORK_INTERVAL Ipc_info_object_type_t = 39 IPC_OTYPE_UX_HANDLER Ipc_info_object_type_t = 40 IPC_OTYPE_UEXT_OBJECT Ipc_info_object_type_t = 41 IPC_OTYPE_ARCADE_REG Ipc_info_object_type_t = 42 IPC_OTYPE_EVENTLINK Ipc_info_object_type_t = 43 IPC_OTYPE_TASK_INSPECT Ipc_info_object_type_t = 44 IPC_OTYPE_TASK_READ Ipc_info_object_type_t = 45 IPC_OTYPE_THREAD_INSPECT Ipc_info_object_type_t = 46 IPC_OTYPE_THREAD_READ Ipc_info_object_type_t = 47 IPC_OTYPE_SUID_CRED Ipc_info_object_type_t = 48 IPC_OTYPE_HYPERVISOR Ipc_info_object_type_t = 49 IPC_OTYPE_TASK_ID_TOKEN Ipc_info_object_type_t = 50 IPC_OTYPE_TASK_FATAL Ipc_info_object_type_t = 51 IPC_OTYPE_KCDATA Ipc_info_object_type_t = 52 IPC_OTYPE_EXCLAVES_RESOURCE Ipc_info_object_type_t = 53 IPC_OTYPE_THREAD_RESUME Ipc_info_object_type_t = 54 IPC_OTYPE_UNKNOWN Ipc_info_object_type_t = 4294967295 )
func (Ipc_info_object_type_t) String ¶
func (e Ipc_info_object_type_t) String() string
type Mach_vm_range_flags_t ¶
type Mach_vm_range_flags_t int64
const (
MACH_VM_RANGE_NONE Mach_vm_range_flags_t = 0
)
func (Mach_vm_range_flags_t) String ¶
func (e Mach_vm_range_flags_t) String() string
type Mach_vm_range_flavor_t ¶
type Mach_vm_range_flavor_t int64
const ( MACH_VM_RANGE_FLAVOR_INVALID Mach_vm_range_flavor_t = 0 MACH_VM_RANGE_FLAVOR_V1 Mach_vm_range_flavor_t = 1 )
func (Mach_vm_range_flavor_t) String ¶
func (e Mach_vm_range_flavor_t) String() string
type Mach_vm_range_tag_t ¶
type Mach_vm_range_tag_t int64
const ( MACH_VM_RANGE_DEFAULT Mach_vm_range_tag_t = 0 MACH_VM_RANGE_DATA Mach_vm_range_tag_t = 1 MACH_VM_RANGE_FIXED Mach_vm_range_tag_t = 2 )
func (Mach_vm_range_tag_t) String ¶
func (e Mach_vm_range_tag_t) String() string
type Mpo_flags_t ¶
type Mpo_flags_t int64
const ( MPO_PORT Mpo_flags_t = 0 MPO_SERVICE_PORT Mpo_flags_t = 1024 MPO_CONNECTION_PORT Mpo_flags_t = 2048 MPO_REPLY_PORT Mpo_flags_t = 4096 MPO_WEAK_REPLY_PORT Mpo_flags_t = 16384 MPO_NOTIFICATION_PORT Mpo_flags_t = 17408 MPO_EXCEPTION_PORT Mpo_flags_t = 32768 MPO_CONNECTION_PORT_WITH_PORT_ARRAY Mpo_flags_t = 65536 )
func (Mpo_flags_t) String ¶
func (e Mpo_flags_t) String() string
type NXMouseButton ¶
type NXMouseButton int64
const ( NX_OneButton NXMouseButton = 0 NX_LeftButton NXMouseButton = 1 NX_RightButton NXMouseButton = 2 )
func (NXMouseButton) String ¶
func (e NXMouseButton) String() string
type Os_clockid_t ¶
type Os_clockid_t int64
const (
OS_CLOCK_MACH_ABSOLUTE_TIME Os_clockid_t = 32
)
func (Os_clockid_t) String ¶
func (e Os_clockid_t) String() string
type Ptrauth_key ¶
type Ptrauth_key int64
const ( Ptrauth_key_none Ptrauth_key = -1 Ptrauth_key_asia Ptrauth_key = 0 Ptrauth_key_asib Ptrauth_key = 1 Ptrauth_key_asda Ptrauth_key = 2 Ptrauth_key_asdb Ptrauth_key = 3 Ptrauth_key_process_independent_code Ptrauth_key = 0 Ptrauth_key_process_dependent_code Ptrauth_key = 1 Ptrauth_key_process_independent_data Ptrauth_key = 2 Ptrauth_key_process_dependent_data Ptrauth_key = 3 Ptrauth_key_return_address Ptrauth_key = 1 Ptrauth_key_frame_pointer Ptrauth_key = 3 Ptrauth_key_function_pointer Ptrauth_key = 0 Ptrauth_key_block_function Ptrauth_key = 0 Ptrauth_key_cxx_vtable_pointer Ptrauth_key = 2 Ptrauth_key_method_list_pointer Ptrauth_key = 2 Ptrauth_key_objc_isa_pointer Ptrauth_key = 2 Ptrauth_key_objc_super_pointer Ptrauth_key = 2 Ptrauth_key_objc_sel_pointer Ptrauth_key = 3 Ptrauth_key_objc_class_ro_pointer Ptrauth_key = 2 Ptrauth_key_block_descriptor_pointer Ptrauth_key = 2 Ptrauth_key_init_fini_pointer Ptrauth_key = 0 )
func (Ptrauth_key) String ¶
func (e Ptrauth_key) String() string
type Qos_class_t ¶
type Qos_class_t uint32
const ( QOS_CLASS_USER_INTERACTIVE Qos_class_t = 33 QOS_CLASS_USER_INITIATED Qos_class_t = 25 QOS_CLASS_DEFAULT Qos_class_t = 21 QOS_CLASS_UTILITY Qos_class_t = 17 QOS_CLASS_BACKGROUND Qos_class_t = 9 QOS_CLASS_UNSPECIFIED Qos_class_t = 0 )
func (Qos_class_t) String ¶
func (e Qos_class_t) String() string
type Virtual_memory_guard_exception_code_t ¶
type Virtual_memory_guard_exception_code_t int64
const ( KGUARD_EXC_DEALLOC_GAP Virtual_memory_guard_exception_code_t = 1 KGUARD_EXC_RECLAIM_COPYIO_FAILURE Virtual_memory_guard_exception_code_t = 2 KGUARD_EXC_RECLAIM_INDEX_FAILURE Virtual_memory_guard_exception_code_t = 4 KGUARD_EXC_RECLAIM_DEALLOCATE_FAILURE Virtual_memory_guard_exception_code_t = 8 KGUARD_EXC_RECLAIM_ACCOUNTING_FAILURE Virtual_memory_guard_exception_code_t = 9 KGUARD_EXC_SEC_IOPL_ON_EXEC_PAGE Virtual_memory_guard_exception_code_t = 10 KGUARD_EXC_SEC_EXEC_ON_IOPL_PAGE Virtual_memory_guard_exception_code_t = 11 KGUARD_EXC_SEC_UPL_WRITE_ON_EXEC_REGION Virtual_memory_guard_exception_code_t = 12 KGUARD_EXC_LARGE_ALLOCATION_TELEMETRY Virtual_memory_guard_exception_code_t = 13 KGUARD_EXC_SEC_ACCESS_FAULT Virtual_memory_guard_exception_code_t = 98 KGUARD_EXC_SEC_ASYNC_ACCESS_FAULT Virtual_memory_guard_exception_code_t = 99 KGUARD_EXC_SEC_COPY_DENIED Virtual_memory_guard_exception_code_t = 100 KGUARD_EXC_SEC_SHARING_DENIED Virtual_memory_guard_exception_code_t = 101 KGUARD_EXC_MTE_SYNC_FAULT Virtual_memory_guard_exception_code_t = 200 KGUARD_EXC_MTE_ASYNC_USER_FAULT Virtual_memory_guard_exception_code_t = 201 KGUARD_EXC_MTE_ASYNC_KERN_FAULT Virtual_memory_guard_exception_code_t = 202 KGUARD_EXC_GUARD_OBJECT_ASYNC_USER_FAULT Virtual_memory_guard_exception_code_t = 203 KGUARD_EXC_GUARD_OBJECT_ASYNC_KERN_FAULT Virtual_memory_guard_exception_code_t = 204 )
func (Virtual_memory_guard_exception_code_t) String ¶
func (e Virtual_memory_guard_exception_code_t) String() string