mirror of
https://github.com/qvacua/vimr.git
synced 2024-11-28 11:35:35 +03:00
40 lines
1007 B
Swift
40 lines
1007 B
Swift
/**
|
|
* Tae Won Ha - http://taewon.de - @hataewon
|
|
* See LICENSE
|
|
*/
|
|
|
|
import Cocoa
|
|
import PureLayout
|
|
|
|
@NSApplicationMain
|
|
class AppDelegate: NSObject, NSApplicationDelegate, NeoVimViewDelegate {
|
|
|
|
@IBOutlet weak var window: NSWindow!
|
|
|
|
var neoVim: NeoVim!
|
|
|
|
@IBAction func debugSomething(sender: AnyObject!) {
|
|
self.neoVim.xpc.resizeToWidth(35, height: 13)
|
|
}
|
|
|
|
func applicationDidFinishLaunching(aNotification: NSNotification) {
|
|
// let testView = InputTestView(frame: CGRect(x: 0, y: 0, width: 300, height: 300))
|
|
// self.window.contentView?.addSubview(testView)
|
|
// self.window.makeFirstResponder(testView)
|
|
|
|
self.neoVim = NeoVim()
|
|
self.neoVim.view.delegate = self
|
|
|
|
let view = self.neoVim.view
|
|
view.translatesAutoresizingMaskIntoConstraints = false
|
|
self.window.contentView?.addSubview(self.neoVim.view)
|
|
view.autoPinEdgesToSuperviewEdges()
|
|
|
|
self.window.makeFirstResponder(self.neoVim.view)
|
|
}
|
|
|
|
func setTitle(title: String) {
|
|
self.window.title = title
|
|
}
|
|
}
|