2018-02-18 03:19:25 +01:00
|
|
|
//
|
|
|
|
// AppImages.swift
|
2018-08-29 07:18:24 +02:00
|
|
|
// NetNewsWire
|
2018-02-18 03:19:25 +01:00
|
|
|
//
|
|
|
|
// Created by Brent Simmons on 2/17/18.
|
|
|
|
// Copyright © 2018 Ranchero Software. All rights reserved.
|
|
|
|
//
|
|
|
|
|
|
|
|
import AppKit
|
2019-04-15 22:03:05 +02:00
|
|
|
import RSCore
|
2018-02-18 03:19:25 +01:00
|
|
|
|
|
|
|
extension NSImage.Name {
|
2018-12-09 21:32:33 +01:00
|
|
|
static let star = NSImage.Name("star")
|
|
|
|
static let timelineStar = NSImage.Name("timelineStar")
|
2018-02-18 03:19:25 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
struct AppImages {
|
|
|
|
|
2019-04-15 22:03:05 +02:00
|
|
|
static var genericFeedImage: RSImage? = {
|
2018-02-18 03:19:25 +01:00
|
|
|
let path = "/System/Library/CoreServices/CoreTypes.bundle/Contents/Resources/BookmarkIcon.icns"
|
2019-04-15 22:03:05 +02:00
|
|
|
let image = RSImage(contentsOfFile: path)
|
2018-02-18 03:19:25 +01:00
|
|
|
return image
|
|
|
|
}()
|
2018-02-18 07:23:36 +01:00
|
|
|
|
2019-04-15 22:03:05 +02:00
|
|
|
static var timelineStar: RSImage! = {
|
|
|
|
return RSImage(named: .timelineStar)
|
2018-02-18 07:23:36 +01:00
|
|
|
}()
|
2019-05-01 13:49:50 +02:00
|
|
|
|
|
|
|
static var accountLocal: RSImage! = {
|
|
|
|
let image = RSImage(named: "accountLocal")
|
|
|
|
image?.isTemplate = true
|
|
|
|
return image
|
|
|
|
}()
|
|
|
|
|
2019-05-01 17:28:13 +02:00
|
|
|
static var accountFeedbin: RSImage! = {
|
|
|
|
let image = RSImage(named: "accountFeedbin")
|
|
|
|
image?.isTemplate = true
|
|
|
|
return image
|
|
|
|
}()
|
|
|
|
|
2018-02-18 03:19:25 +01:00
|
|
|
}
|