2016-09-18 21:49:42 +03:00
|
|
|
/**
|
|
|
|
* Tae Won Ha - http://taewon.de - @hataewon
|
|
|
|
* See LICENSE
|
|
|
|
*/
|
|
|
|
|
|
|
|
import Cocoa
|
|
|
|
import PureLayout
|
|
|
|
|
|
|
|
@NSApplicationMain
|
|
|
|
class AppDelegate: NSObject, NSApplicationDelegate {
|
|
|
|
|
|
|
|
@IBOutlet weak var window: NSWindow!
|
|
|
|
|
2016-09-25 18:50:33 +03:00
|
|
|
fileprivate var workspace: Workspace = Workspace(mainView: NSView())
|
2016-09-18 21:49:42 +03:00
|
|
|
|
2016-09-25 18:50:33 +03:00
|
|
|
@IBAction func toggleBars(_ sender: AnyObject!) {
|
2016-09-18 21:49:42 +03:00
|
|
|
workspace.toggleAllTools()
|
|
|
|
}
|
|
|
|
|
2016-09-25 18:50:33 +03:00
|
|
|
@IBAction func toggleButtons(_ sender: AnyObject!) {
|
2016-09-18 21:49:42 +03:00
|
|
|
workspace.toggleToolButtons()
|
|
|
|
}
|
|
|
|
|
2016-09-25 18:50:33 +03:00
|
|
|
func applicationDidFinishLaunching(_ aNotification: Notification) {
|
2016-09-18 21:49:42 +03:00
|
|
|
let contentView = self.window.contentView!
|
2016-11-23 21:59:15 +03:00
|
|
|
let workspace = Workspace(mainView: DummyView(NSColor.yellow))
|
2016-09-18 21:49:42 +03:00
|
|
|
self.workspace = workspace
|
|
|
|
|
|
|
|
contentView.addSubview(workspace)
|
|
|
|
workspace.autoPinEdgesToSuperviewEdges()
|
2016-11-23 21:46:55 +03:00
|
|
|
|
2016-11-23 21:59:15 +03:00
|
|
|
workspace.append(tool: WorkspaceTool(title: "Top-1", view: DummyView(NSColor.white)), location: .top)
|
|
|
|
workspace.append(tool: WorkspaceTool(title: "Right-1", view: DummyView(NSColor.white)), location: .right)
|
|
|
|
workspace.append(tool: WorkspaceTool(title: "Right-2", view: DummyView(NSColor.green)), location: .right)
|
|
|
|
workspace.append(tool: WorkspaceTool(title: "Left-1", view: DummyView(NSColor.white)), location: .left)
|
|
|
|
workspace.append(tool: WorkspaceTool(title: "Left-2", view: DummyView(NSColor.green)), location: .left)
|
|
|
|
workspace.append(tool: WorkspaceTool(title: "Left-3", view: DummyView(NSColor.magenta)), location: .left)
|
|
|
|
workspace.append(tool: WorkspaceTool(title: "Bottom-1", view: DummyView(NSColor.white)), location: .bottom)
|
|
|
|
workspace.append(tool: WorkspaceTool(title: "Bottom-2", view: DummyView(NSColor.green)), location: .bottom)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
class DummyView: NSView {
|
|
|
|
|
|
|
|
init(_ color: NSColor) {
|
|
|
|
super.init(frame: .zero)
|
|
|
|
self.configureForAutoLayout()
|
|
|
|
self.wantsLayer = true
|
|
|
|
self.layer?.backgroundColor = color.cgColor
|
|
|
|
}
|
|
|
|
|
|
|
|
required init?(coder: NSCoder) {
|
|
|
|
fatalError("init(coder:) has not been implemented")
|
2016-09-18 21:49:42 +03:00
|
|
|
}
|
|
|
|
|
2016-11-23 21:59:15 +03:00
|
|
|
override func mouseDown(with event: NSEvent) {
|
|
|
|
NSLog("mouse down")
|
2016-09-18 21:49:42 +03:00
|
|
|
}
|
|
|
|
}
|