// // LibraryView.swift // DocHub // // Created by Tristan Juricek on 6/12/14. // Copyright (c) 2014 Perforce. All rights reserved. // import Foundation import AppKit // The left panel of the main window, this really is the "library style" menu // that is the root of all navigation in the application. class LibraryView : NSView { init(frame:NSRect) { super.init(frame:frame) } override func drawRect(dirtyRect: NSRect) { NSColor.greenColor().set() NSBezierPath.fillRect(dirtyRect) } }