2018-02-20 00:56:15 +01:00
|
|
|
|
//
|
|
|
|
|
// SingleLineTextFieldSizer.swift
|
2018-08-29 07:18:24 +02:00
|
|
|
|
// NetNewsWire
|
2018-02-20 00:56:15 +01:00
|
|
|
|
//
|
|
|
|
|
// Created by Brent Simmons on 2/19/18.
|
|
|
|
|
// Copyright © 2018 Ranchero Software. All rights reserved.
|
|
|
|
|
//
|
|
|
|
|
|
|
|
|
|
import AppKit
|
|
|
|
|
|
|
|
|
|
// Get the size of an NSTextField configured with a specific font with a specific size.
|
|
|
|
|
// Uses a cache.
|
2018-02-20 05:28:00 +01:00
|
|
|
|
// Main thready only.
|
2018-02-20 00:56:15 +01:00
|
|
|
|
|
|
|
|
|
final class SingleLineTextFieldSizer {
|
|
|
|
|
|
|
|
|
|
let font: NSFont
|
|
|
|
|
private let textField: NSTextField
|
|
|
|
|
private var cache = [String: NSSize]()
|
|
|
|
|
|
|
|
|
|
init(font: NSFont) {
|
|
|
|
|
|
|
|
|
|
self.textField = NSTextField(labelWithString: "")
|
|
|
|
|
self.textField.font = font
|
|
|
|
|
self.font = font
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func size(for text: String) -> NSSize {
|
|
|
|
|
|
|
|
|
|
if let cachedSize = cache[text] {
|
|
|
|
|
return cachedSize
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
textField.stringValue = text
|
|
|
|
|
var calculatedSize = textField.fittingSize
|
|
|
|
|
calculatedSize.height = ceil(calculatedSize.height)
|
|
|
|
|
calculatedSize.width = ceil(calculatedSize.width)
|
|
|
|
|
|
|
|
|
|
cache[text] = calculatedSize
|
|
|
|
|
return calculatedSize
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static private var sizers = [NSFont: SingleLineTextFieldSizer]()
|
|
|
|
|
|
|
|
|
|
static func sizer(for font: NSFont) -> SingleLineTextFieldSizer {
|
|
|
|
|
|
|
|
|
|
if let cachedSizer = sizers[font] {
|
|
|
|
|
return cachedSizer
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
let newSizer = SingleLineTextFieldSizer(font: font)
|
|
|
|
|
sizers[font] = newSizer
|
|
|
|
|
|
|
|
|
|
return newSizer
|
|
|
|
|
}
|
|
|
|
|
|
2018-02-20 05:28:00 +01:00
|
|
|
|
// Use this call. It’s easiest.
|
|
|
|
|
|
2018-02-20 00:56:15 +01:00
|
|
|
|
static func size(for text: String, font: NSFont) -> NSSize {
|
|
|
|
|
|
|
|
|
|
return sizer(for: font).size(for: text)
|
|
|
|
|
}
|
2018-02-20 05:28:00 +01:00
|
|
|
|
|
|
|
|
|
static func emptyCache() {
|
|
|
|
|
|
|
|
|
|
sizers = [NSFont: SingleLineTextFieldSizer]()
|
|
|
|
|
}
|
2018-02-20 00:56:15 +01:00
|
|
|
|
}
|