mirror of
https://github.com/Ranchero-Software/NetNewsWire
synced 2025-08-12 06:26:36 +00:00
48 lines
1.1 KiB
Swift
48 lines
1.1 KiB
Swift
//
|
|
// NSView+Extensions.swift
|
|
// RSCore
|
|
//
|
|
// Created by Maurice Parker on 11/12/19.
|
|
// Copyright © 2019 Ranchero Software, LLC. All rights reserved.
|
|
//
|
|
#if os(macOS)
|
|
import AppKit
|
|
import FoundationExtras
|
|
|
|
extension NSView {
|
|
|
|
public func asImage() -> NSImage {
|
|
let rep = bitmapImageRepForCachingDisplay(in: bounds)!
|
|
cacheDisplay(in: bounds, to: rep)
|
|
|
|
let img = NSImage(size: bounds.size)
|
|
img.addRepresentation(rep)
|
|
return img
|
|
}
|
|
}
|
|
|
|
public extension NSView {
|
|
|
|
/// Keeps a subview at same size as receiver.
|
|
///
|
|
/// - Parameter subview: The subview to constrain. Must be a descendant of `self`.
|
|
func addFullSizeConstraints(forSubview subview: NSView) {
|
|
NSLayoutConstraint.activate([
|
|
subview.leadingAnchor.constraint(equalTo: leadingAnchor),
|
|
subview.trailingAnchor.constraint(equalTo: trailingAnchor),
|
|
subview.topAnchor.constraint(equalTo: topAnchor),
|
|
subview.bottomAnchor.constraint(equalTo: bottomAnchor)
|
|
])
|
|
}
|
|
|
|
/// Sets the view's frame if it's different from the current frame.
|
|
///
|
|
/// - Parameter rect: The new frame.
|
|
func setFrame(ifNotEqualTo rect: NSRect) {
|
|
if self.frame != rect {
|
|
self.frame = rect
|
|
}
|
|
}
|
|
}
|
|
#endif
|