You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
104 lines
3.7 KiB
104 lines
3.7 KiB
// Copyright © 2015 Abhishek Banthia |
|
|
|
import Cocoa |
|
|
|
private var defaultParagraphStyle: NSMutableParagraphStyle { |
|
let p = NSMutableParagraphStyle() |
|
p.alignment = .center |
|
p.lineBreakMode = .byTruncatingTail |
|
return p |
|
} |
|
|
|
var compactModeTimeFont: NSFont { |
|
return NSFont.monospacedDigitSystemFont(ofSize: 10, weight: .thin) |
|
} |
|
|
|
var timeAttributes: [NSAttributedString.Key: AnyObject] { |
|
|
|
let textColor = UserDefaults.standard.string(forKey: "AppleInterfaceStyle") == "Dark" ? NSColor.white : NSColor.black |
|
|
|
let attributes = [ |
|
NSAttributedString.Key.font: compactModeTimeFont, |
|
NSAttributedString.Key.foregroundColor: textColor, |
|
NSAttributedString.Key.backgroundColor: NSColor.clear, |
|
NSAttributedString.Key.paragraphStyle: defaultParagraphStyle |
|
] |
|
return attributes |
|
} |
|
|
|
class StatusItemView: NSView { |
|
|
|
// MARK: Private variables |
|
private let locationView: NSTextField = NSTextField(labelWithString: "Hello") |
|
private let timeView: NSTextField = NSTextField(labelWithString: "Mon 19:14 PM") |
|
private var operationsObject: TimezoneDataOperations { |
|
return TimezoneDataOperations(with: dataObject) |
|
} |
|
private var textFontAttributes: [NSAttributedString.Key: Any] { |
|
let textColor = UserDefaults.standard.string(forKey: "AppleInterfaceStyle") == "Dark" ? NSColor.white : NSColor.black |
|
|
|
let textFontAttributes = [ |
|
NSAttributedString.Key.font: NSFont.boldSystemFont(ofSize: 10), |
|
NSAttributedString.Key.foregroundColor: textColor, |
|
NSAttributedString.Key.backgroundColor: NSColor.clear, |
|
NSAttributedString.Key.paragraphStyle: defaultParagraphStyle |
|
] |
|
return textFontAttributes |
|
} |
|
|
|
// MARK: Public |
|
var dataObject: TimezoneData! { |
|
didSet { |
|
initialSetup() |
|
} |
|
} |
|
|
|
override init(frame frameRect: NSRect) { |
|
super.init(frame: frameRect) |
|
|
|
[timeView, locationView].forEach { |
|
$0.wantsLayer = true |
|
$0.applyDefaultStyle() |
|
$0.translatesAutoresizingMaskIntoConstraints = false |
|
addSubview($0) |
|
} |
|
|
|
timeView.disableWrapping() |
|
|
|
NSLayoutConstraint.activate([ |
|
locationView.leadingAnchor.constraint(equalTo: leadingAnchor), |
|
locationView.trailingAnchor.constraint(equalTo: trailingAnchor), |
|
locationView.topAnchor.constraint(equalTo: topAnchor, constant: 7), |
|
locationView.heightAnchor.constraint(equalTo: heightAnchor, multiplier: 0.35) |
|
]) |
|
|
|
NSLayoutConstraint.activate([ |
|
timeView.leadingAnchor.constraint(equalTo: leadingAnchor), |
|
timeView.trailingAnchor.constraint(equalTo: trailingAnchor, constant: 0), |
|
timeView.topAnchor.constraint(equalTo: locationView.bottomAnchor), |
|
timeView.bottomAnchor.constraint(equalTo: bottomAnchor) |
|
]) |
|
} |
|
|
|
func updateTimeInMenubar() { |
|
timeView.attributedStringValue = NSAttributedString(string: operationsObject.compactMenuHeader(), attributes: timeAttributes) |
|
} |
|
|
|
private func initialSetup() { |
|
locationView.attributedStringValue = NSAttributedString(string: dataObject.formattedTimezoneLabel(), attributes: textFontAttributes) |
|
timeView.attributedStringValue = NSAttributedString(string: operationsObject.compactMenuHeader(), attributes: timeAttributes) |
|
} |
|
|
|
required init?(coder decoder: NSCoder) { |
|
fatalError("init(coder:) has not been implemented") |
|
} |
|
|
|
override func mouseDown(with event: NSEvent) { |
|
super.mouseDown(with: event) |
|
guard let mainDelegate = NSApplication.shared.delegate as? AppDelegate else { |
|
return |
|
} |
|
|
|
mainDelegate.togglePanel(event) |
|
} |
|
}
|
|
|