mirror of
https://github.com/qvacua/vimr.git
synced 2024-11-23 10:13:32 +03:00
4f46e619cf
- hopefully we renamed everything
24 lines
623 B
Swift
24 lines
623 B
Swift
/**
|
|
* Tae Won Ha - http://taewon.de - @hataewon
|
|
* See LICENSE
|
|
*/
|
|
|
|
import Cocoa
|
|
|
|
class MainWindowManager {
|
|
|
|
private var mainWindowControllers: [String: MainWindowController] = [:]
|
|
|
|
func newMainWindow() {
|
|
let mainWindowController = MainWindowController(windowNibName: "MainWindow")
|
|
self.mainWindowControllers[mainWindowController.uuid] = mainWindowController
|
|
|
|
mainWindowController.setup(manager: self)
|
|
mainWindowController.showWindow(self)
|
|
}
|
|
|
|
func closeMainWindow(mainWindowController: MainWindowController) {
|
|
self.mainWindowControllers.removeValueForKey(mainWindowController.uuid)
|
|
}
|
|
}
|