29 lines
761 B
Swift
29 lines
761 B
Swift
//
|
|
// UnreadIndicatorView.swift
|
|
// Evergreen
|
|
//
|
|
// Created by Brent Simmons on 2/16/16.
|
|
// Copyright © 2016 Ranchero Software, LLC. All rights reserved.
|
|
//
|
|
|
|
import Cocoa
|
|
|
|
class UnreadIndicatorView: NSView {
|
|
|
|
static let unreadCircleDimension = currentTheme.float(forKey: "MainWindow.Timeline.cell.unreadCircleDimension")
|
|
|
|
static let bezierPath: NSBezierPath = {
|
|
let r = NSRect(x: 0.0, y: 0.0, width: unreadCircleDimension, height: unreadCircleDimension)
|
|
return NSBezierPath(ovalIn: r)
|
|
}()
|
|
|
|
static let unreadCircleColor = currentTheme.color(forKey: "MainWindow.Timeline.cell.unreadCircleColor")
|
|
|
|
override func draw(_ dirtyRect: NSRect) {
|
|
|
|
UnreadIndicatorView.unreadCircleColor.setFill()
|
|
UnreadIndicatorView.bezierPath.fill()
|
|
}
|
|
|
|
}
|