1
1
mirror of https://github.com/qvacua/vimr.git synced 2024-12-29 00:34:26 +03:00
vimr/VimR/Workspace/WorkspaceTool.swift
2016-11-17 22:13:31 +01:00

64 lines
1.3 KiB
Swift

/**
* Tae Won Ha - http://taewon.de - @hataewon
* See LICENSE
*/
import Cocoa
protocol WorkspaceToolDelegate: class {
func toggle(_ tool: WorkspaceTool)
}
class WorkspaceTool: Hashable {
static func ==(left: WorkspaceTool, right: WorkspaceTool) -> Bool {
return left.uuid == right.uuid
}
// MARK: - API
var hashValue: Int {
return self.uuid.hashValue
}
let uuid = UUID().uuidString
let title: String
let view: NSView
let button: WorkspaceToolButton
var location = WorkspaceBarLocation.left {
didSet {
self.button.location = self.location
}
}
var isSelected = false {
didSet {
if self.isSelected {
self.button.highlight()
} else {
self.button.dehighlight()
}
}
}
weak var delegate: WorkspaceToolDelegate?
weak var bar: WorkspaceBar?
let minimumDimension: CGFloat
var dimension: CGFloat
init(title: String, view: NSView, minimumDimension: CGFloat = 50) {
self.title = title
self.view = view
self.minimumDimension = minimumDimension
self.dimension = minimumDimension
self.button = WorkspaceToolButton(title: title)
self.button.tool = self
}
func toggle() {
self.delegate?.toggle(self)
self.isSelected = !self.isSelected
}
}