mirror of
https://github.com/qvacua/vimr.git
synced 2024-12-28 08:13:17 +03:00
88 lines
2.4 KiB
Swift
88 lines
2.4 KiB
Swift
/**
|
|
* Tae Won Ha - http://taewon.de - @hataewon
|
|
* See LICENSE
|
|
*/
|
|
|
|
import Cocoa
|
|
import RxSwift
|
|
import PureLayout
|
|
|
|
@NSApplicationMain
|
|
class AppDelegate: NSObject, NSApplicationDelegate {
|
|
|
|
private let disposeBag = DisposeBag()
|
|
|
|
private let changeSubject = PublishSubject<Any>()
|
|
private let changeSink: Observable<Any>
|
|
|
|
private let actionSubject = PublishSubject<Any>()
|
|
private let actionSink: Observable<Any>
|
|
|
|
private let prefStore: PrefStore
|
|
|
|
private let mainWindowManager: MainWindowManager
|
|
private let prefWindowComponent: PrefWindowComponent
|
|
|
|
override init() {
|
|
self.actionSink = self.actionSubject.asObservable()
|
|
self.changeSink = self.changeSubject.asObservable()
|
|
|
|
self.prefStore = PrefStore(source: self.actionSink)
|
|
|
|
self.prefWindowComponent = PrefWindowComponent(source: self.changeSink, initialData: self.prefStore.data)
|
|
self.mainWindowManager = MainWindowManager(source: self.changeSink, initialData: self.prefStore.data)
|
|
|
|
super.init()
|
|
|
|
[ self.prefStore ]
|
|
.map { $0.sink }
|
|
.toMergedObservables()
|
|
.subscribe(self.changeSubject)
|
|
.addDisposableTo(self.disposeBag)
|
|
|
|
[ self.prefWindowComponent ]
|
|
.map { $0.sink }
|
|
.toMergedObservables()
|
|
.subscribe(self.actionSubject)
|
|
.addDisposableTo(self.disposeBag)
|
|
}
|
|
|
|
@IBAction func debugSomething(sender: AnyObject!) {
|
|
NSLog("debug sth...")
|
|
}
|
|
|
|
@IBAction func newDocument(sender: AnyObject!) {
|
|
self.mainWindowManager.newMainWindow()
|
|
}
|
|
|
|
@IBAction func showPrefWindow(sender: AnyObject!) {
|
|
self.prefWindowComponent.show()
|
|
}
|
|
|
|
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.newDocument(self)
|
|
}
|
|
|
|
func applicationShouldTerminate(sender: NSApplication) -> NSApplicationTerminateReply {
|
|
if self.mainWindowManager.hasDirtyWindows() {
|
|
let alert = NSAlert()
|
|
alert.addButtonWithTitle("Cancel")
|
|
alert.addButtonWithTitle("Discard and Quit")
|
|
alert.messageText = "There are windows with unsaved buffers!"
|
|
alert.alertStyle = .WarningAlertStyle
|
|
|
|
if alert.runModal() == NSAlertSecondButtonReturn {
|
|
return .TerminateNow
|
|
}
|
|
|
|
return .TerminateCancel
|
|
}
|
|
|
|
return .TerminateNow
|
|
}
|
|
}
|