|
|
|
@ -152,7 +152,7 @@ extension Themer {
|
|
|
|
|
|
|
|
|
|
func shutdownImage() -> NSImage { |
|
|
|
|
if #available(macOS 10.16, *) { |
|
|
|
|
return symbolImage(for: "ellipsis.circle", nil) |
|
|
|
|
return symbolImage(for: "ellipsis.circle") |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
if #available(macOS 10.14, *) { |
|
|
|
@ -171,7 +171,7 @@ extension Themer {
|
|
|
|
|
|
|
|
|
|
func preferenceImage() -> NSImage { |
|
|
|
|
if #available(macOS 10.16, *) { |
|
|
|
|
return symbolImage(for: "gear", nil) |
|
|
|
|
return symbolImage(for: "gear") |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
if #available(macOS 10.14, *) { |
|
|
|
@ -187,13 +187,13 @@ extension Themer {
|
|
|
|
|
|
|
|
|
|
return |
|
|
|
|
themeIndex == .light |
|
|
|
|
? NSImage(named: NSImage.Name("Settings"))! |
|
|
|
|
: NSImage(named: NSImage.Name("Settings-White"))! |
|
|
|
|
? NSImage(named: NSImage.Name("Settings"))! |
|
|
|
|
: NSImage(named: NSImage.Name("Settings-White"))! |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
func pinImage() -> NSImage { |
|
|
|
|
if #available(macOS 10.16, *) { |
|
|
|
|
return symbolImage(for: "macwindow.on.rectangle", nil) |
|
|
|
|
return symbolImage(for: "macwindow.on.rectangle") |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
if #available(macOS 10.14, *) { |
|
|
|
@ -317,7 +317,7 @@ extension Themer {
|
|
|
|
|
|
|
|
|
|
func sharingImage() -> NSImage { |
|
|
|
|
if #available(macOS 10.16, *) { |
|
|
|
|
return symbolImage(for: "square.and.arrow.up.on.square.fill", nil) |
|
|
|
|
return symbolImage(for: "square.and.arrow.up.on.square.fill") |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
if #available(macOS 10.14, *) { |
|
|
|
@ -445,9 +445,14 @@ extension Themer {
|
|
|
|
|
NSColor(deviceRed: 42.0 / 255.0, green: 55.0 / 255.0, blue: 62.0 / 255.0, alpha: 1.0) |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
func symbolImage(for _: String, _: String?) -> NSImage { |
|
|
|
|
// Dummy image for older xcodes |
|
|
|
|
return NSImage(named: NSImage.Name("Calendar Tab Icon"))! |
|
|
|
|
// return NSImage(systemSymbolName: name, accessibilityDescription: accessibilityDescription)! |
|
|
|
|
func symbolImage(for name: String) -> NSImage { |
|
|
|
|
assert(name.count > 0) |
|
|
|
|
|
|
|
|
|
if #available(OSX 10.16, *) { |
|
|
|
|
return NSImage(systemSymbolName: name, accessibilityDescription: name)! |
|
|
|
|
} else { |
|
|
|
|
// Dummy image for older xcodes |
|
|
|
|
return NSImage(named: NSImage.Name("Calendar Tab Icon"))! |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|