mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
148 lines
4.3 KiB
Swift
148 lines
4.3 KiB
Swift
//===----------------------------------------------------------------------===//
|
|
//
|
|
// This source file is part of the Swift.org open source project
|
|
//
|
|
// Copyright (c) 2014 - 2015 Apple Inc. and the Swift project authors
|
|
// Licensed under Apache License v2.0 with Runtime Library Exception
|
|
//
|
|
// See http://swift.org/LICENSE.txt for license information
|
|
// See http://swift.org/CONTRIBUTORS.txt for the list of Swift project authors
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
import Foundation
|
|
@_exported import AppKit
|
|
|
|
struct _NSCursorMirror : _Mirror {
|
|
var _value: NSCursor
|
|
|
|
init(_ v: NSCursor) { _value = v }
|
|
|
|
var value: Any { return _value }
|
|
|
|
var valueType: Any.Type { return (_value as Any).dynamicType }
|
|
|
|
var objectIdentifier: ObjectIdentifier? { return .None }
|
|
|
|
var count: Int { return 0 }
|
|
|
|
subscript(_: Int) -> (String, _Mirror) {
|
|
_requirementFailure("_Mirror access out of bounds")
|
|
}
|
|
|
|
var summary: String { return "" }
|
|
|
|
var quickLookObject: PlaygroundQuickLook? {
|
|
return .Some(.Image(_value.image))
|
|
}
|
|
|
|
var disposition : _MirrorDisposition { return .Aggregate }
|
|
}
|
|
|
|
extension NSCursor : _Reflectable {
|
|
public func _getMirror() -> _Mirror {
|
|
return _NSCursorMirror(self)
|
|
}
|
|
}
|
|
|
|
struct _NSViewMirror : _Mirror {
|
|
static var _views = NSMutableSet()
|
|
|
|
var _v : NSView
|
|
|
|
init(_ v : NSView) { _v = v }
|
|
|
|
var value: Any { get { return _v } }
|
|
|
|
var valueType: Any.Type { get { return (_v as Any).dynamicType } }
|
|
|
|
var objectIdentifier: ObjectIdentifier? { get { return .None } }
|
|
|
|
var count: Int { get { return 0 } }
|
|
|
|
subscript(_: Int) -> (String, _Mirror) {
|
|
_requirementFailure("_Mirror access out of bounds")
|
|
}
|
|
|
|
var summary: String { get { return "" } }
|
|
|
|
var quickLookObject: PlaygroundQuickLook? { get {
|
|
// adapted from the Xcode QuickLooks implementation
|
|
|
|
var result: PlaygroundQuickLook? = nil
|
|
|
|
// if you set NSView.needsDisplay, you can get yourself in a recursive scenario where the same view
|
|
// could need to draw itself in order to get a QLObject for itself, which in turn if your code was
|
|
// instrumented to log on-draw, would cause yourself to get back here and so on and so forth
|
|
// until you run out of stack and crash
|
|
// This code checks that we aren't trying to log the same view recursively - and if so just returns
|
|
// nil, which is probably a safer option than crashing
|
|
// FIXME: is there a way to say "cacheDisplayInRect butDoNotRedrawEvenIfISaidSo"?
|
|
switch _NSViewMirror._views.member(_v) {
|
|
case nil:
|
|
_NSViewMirror._views.add(_v)
|
|
|
|
let bounds = _v.bounds
|
|
if let b = _v.bitmapImageRepForCachingDisplayIn(bounds) {
|
|
_v.cacheDisplayIn(bounds, to: b)
|
|
result = .Some(.View(b))
|
|
}
|
|
|
|
_NSViewMirror._views.remove(_v)
|
|
default: ()
|
|
}
|
|
|
|
return result
|
|
|
|
} }
|
|
|
|
var disposition : _MirrorDisposition { get { return .Aggregate } }
|
|
}
|
|
|
|
extension NSView : _Reflectable {
|
|
/// Returns a mirror that reflects `self`.
|
|
public func _getMirror() -> _Mirror {
|
|
return _NSViewMirror(self)
|
|
}
|
|
}
|
|
|
|
// Overlays for variadics.
|
|
|
|
public extension NSGradient {
|
|
convenience init?(colorsAndLocations objects: (NSColor, CGFloat)...) {
|
|
self.init(
|
|
colors: objects.map { $0.0 },
|
|
atLocations: objects.map { $0.1 },
|
|
colorSpace: NSColorSpace.genericRGB())
|
|
}
|
|
}
|
|
|
|
// Fix the ARGV type of NSApplicationMain, which nonsensically takes
|
|
// argv as a const char**.
|
|
@_silgen_name("NSApplicationMain")
|
|
public func NSApplicationMain(
|
|
argc: Int32, _ argv: UnsafeMutablePointer<UnsafeMutablePointer<CChar>>
|
|
) -> Int32
|
|
|
|
extension NSColor : _ColorLiteralConvertible {
|
|
public required convenience init(colorLiteralRed red: Float, green: Float,
|
|
blue: Float, alpha: Float) {
|
|
self.init(srgbRed: CGFloat(red), green: CGFloat(green),
|
|
blue: CGFloat(blue), alpha: CGFloat(alpha))
|
|
}
|
|
}
|
|
|
|
public typealias _ColorLiteralType = NSColor
|
|
|
|
extension NSImage : _ImageLiteralConvertible {
|
|
private convenience init!(failableImageLiteral name: String) {
|
|
self.init(named: name)
|
|
}
|
|
|
|
public required convenience init(imageLiteral name: String) {
|
|
self.init(failableImageLiteral: name)
|
|
}
|
|
}
|
|
|
|
public typealias _ImageLiteralType = NSImage
|