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.

34 lines
888 B

4 years ago
// Copyright © 2015 Abhishek Banthia
import Cocoa
class HourMarkerViewItem: NSCollectionViewItem {
4 years ago
static let reuseIdentifier = NSUserInterfaceItemIdentifier("HourMarkerViewItem")
func setup(with index: Int) {
for constraint in view.constraints where constraint.identifier == "constrainFromTop" {
if index % 4 == 0 {
constraint.constant = 0
} else {
constraint.constant = 20
}
}
}
4 years ago
func setupLineColor() {
for subview in view.subviews where subview is NSBox {
subview.layer?.backgroundColor = NSColor.black.cgColor
}
}
4 years ago
func resetLineColor() {
for subview in view.subviews where subview is NSBox {
subview.layer?.backgroundColor = nil
4 years ago
}
}
4 years ago
override var acceptsFirstResponder: Bool {
return false
}
}