36 lines
1.1 KiB
Swift
36 lines
1.1 KiB
Swift
//
|
|
// SidebarCellAppearance.swift
|
|
// Evergreen
|
|
//
|
|
// Created by Brent Simmons on 11/24/17.
|
|
// Copyright © 2017 Ranchero Software. All rights reserved.
|
|
//
|
|
|
|
import Cocoa
|
|
import DB5
|
|
|
|
struct SidebarCellAppearance: Equatable {
|
|
|
|
let imageSize: CGSize
|
|
let imageMarginRight: CGFloat
|
|
let unreadCountMarginLeft: CGFloat
|
|
let textFieldFontSize: CGFloat
|
|
let textFieldFont: NSFont
|
|
|
|
init(theme: VSTheme, fontSize: FontSize) {
|
|
|
|
self.textFieldFontSize = AppDefaults.actualFontSize(for: fontSize)
|
|
self.textFieldFont = NSFont.systemFont(ofSize: textFieldFontSize)
|
|
|
|
self.imageSize = theme.size(forKey: "MainWindow.SourceList.favicon.image")
|
|
self.imageMarginRight = theme.float(forKey: "MainWindow.SourceList.favicon.marginRight")
|
|
self.unreadCountMarginLeft = theme.float(forKey: "MainWindow.SourceList.unreadCount.marginLeft")
|
|
}
|
|
|
|
static func ==(lhs: SidebarCellAppearance, rhs: SidebarCellAppearance) -> Bool {
|
|
|
|
return lhs.imageSize == rhs.imageSize && lhs.imageMarginRight == rhs.imageMarginRight && lhs.unreadCountMarginLeft == rhs.unreadCountMarginLeft && lhs.textFieldFontSize == rhs.textFieldFontSize
|
|
}
|
|
}
|
|
|