28 lines
797 B
Swift
28 lines
797 B
Swift
//
|
|
// AdvPreferencesWindowController.swift
|
|
// ShadowsocksX-NG
|
|
//
|
|
// Created by 邱宇舟 on 16/6/6.
|
|
// Copyright © 2016年 qiuyuzhou. All rights reserved.
|
|
//
|
|
|
|
import Cocoa
|
|
|
|
class AdvPreferencesWindowController: NSWindowController, NSWindowDelegate {
|
|
|
|
override func windowDidLoad() {
|
|
super.windowDidLoad()
|
|
|
|
// Implement this method to handle any initialization after your window controller's window has been loaded from its nib file.
|
|
self.window?.delegate = self
|
|
}
|
|
|
|
//------------------------------------------------------------
|
|
// NSWindowDelegate
|
|
func windowWillClose(_ notification: Notification) {
|
|
NotificationCenter.default
|
|
.post(name: Notification.Name(rawValue: NOTIFY_ADV_CONF_CHANGED), object: nil)
|
|
}
|
|
|
|
}
|