NetNewsWire/Mac/MainWindow/Timeline/Cell/TimelineCellAppearance.swift

71 lines
2.0 KiB
Swift
Raw Normal View History

2017-05-27 19:43:27 +02:00
//
// TimelineCellAppearance.swift
2018-08-29 07:18:24 +02:00
// NetNewsWire
2017-05-27 19:43:27 +02:00
//
// Created by Brent Simmons on 2/6/16.
// Copyright © 2016 Ranchero Software, LLC. All rights reserved.
//
import AppKit
2017-05-27 19:43:27 +02:00
struct TimelineCellAppearance: Equatable {
2017-05-27 19:43:27 +02:00
let showAvatar: Bool
let cellPadding = NSEdgeInsets(top: 8.0, left: 18.0, bottom: 10.0, right: 18.0)
2017-05-27 19:43:27 +02:00
let feedNameFont: NSFont
2017-05-27 19:43:27 +02:00
let dateFont: NSFont
let dateMarginLeft: CGFloat = 10.0
let dateMarginBottom: CGFloat = 1.0
2017-05-27 19:43:27 +02:00
let titleFont: NSFont
let titleBottomMargin: CGFloat = 1.0
let titleNumberOfLines = 2
2017-05-27 19:43:27 +02:00
let textFont: NSFont
let textOnlyFont: NSFont
let unreadCircleDimension: CGFloat = 8.0
let unreadCircleMarginRight: CGFloat = 8.0
let starDimension: CGFloat = 13.0
let drawsGrid = false
let avatarSize = NSSize(width: 48, height: 48)
let avatarMarginLeft: CGFloat = 8.0
let avatarMarginRight: CGFloat = 8.0
let avatarAdjustmentTop: CGFloat = 4.0
let avatarCornerRadius: CGFloat = 4.0
let boxLeftMargin: CGFloat
init(showAvatar: Bool, fontSize: FontSize) {
2017-05-27 19:43:27 +02:00
let actualFontSize = AppDefaults.actualFontSize(for: fontSize)
let smallItemFontSize = actualFontSize //floor(actualFontSize * 0.95)
let largeItemFontSize = actualFontSize //floor(actualFontSize * 1.1)
2018-02-19 05:28:31 +01:00
self.feedNameFont = NSFont.systemFont(ofSize: smallItemFontSize)
2018-02-24 08:03:01 +01:00
self.dateFont = NSFont.systemFont(ofSize: smallItemFontSize, weight: NSFont.Weight.bold)
2018-02-19 05:28:31 +01:00
self.titleFont = NSFont.systemFont(ofSize: largeItemFontSize, weight: NSFont.Weight.semibold)
self.textFont = NSFont.systemFont(ofSize: largeItemFontSize)
self.textOnlyFont = NSFont.systemFont(ofSize: largeItemFontSize)
self.showAvatar = showAvatar
let margin = self.cellPadding.left + self.unreadCircleDimension + self.unreadCircleMarginRight
self.boxLeftMargin = margin
}
2017-05-27 19:43:27 +02:00
}
extension NSEdgeInsets: Equatable {
public static func ==(lhs: NSEdgeInsets, rhs: NSEdgeInsets) -> Bool {
return lhs.left == rhs.left && lhs.top == rhs.top && lhs.right == rhs.right && lhs.bottom == rhs.bottom
}
}