Skip to content

Instantly share code, notes, and snippets.

@macmade
Created October 6, 2017 17:33
Show Gist options
  • Star 10 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save macmade/0824d91b1f3a3b095057a40742d50a03 to your computer and use it in GitHub Desktop.
Save macmade/0824d91b1f3a3b095057a40742d50a03 to your computer and use it in GitHub Desktop.
/*******************************************************************************
* The MIT License (MIT)
*
* Copyright (c) 2017 Jean-David Gadina - www.xs-labs.com
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
* THE SOFTWARE.
******************************************************************************/
import Cocoa
@objc public class Preferences: NSObject
{
@objc public static let shared = Preferences()
@objc public dynamic var lastStart: Date?
@objc public dynamic var fontName: String?
@objc public dynamic var fontSize: CGFloat = 0
@objc public dynamic var backgroundColorR: CGFloat = 0
@objc public dynamic var backgroundColorG: CGFloat = 0
@objc public dynamic var backgroundColorB: CGFloat = 0
@objc public dynamic var foregroundColorR: CGFloat = 0
@objc public dynamic var foregroundColorG: CGFloat = 0
@objc public dynamic var foregroundColorB: CGFloat = 0
override init()
{
super.init()
guard let path = Bundle.main.path( forResource: "Defaults", ofType: "plist" ) else
{
return
}
UserDefaults.standard.register( defaults: NSDictionary( contentsOfFile: path ) as? [ String : Any ] ?? [ : ] )
for c in Mirror( reflecting: self ).children
{
guard let key = c.label else
{
continue
}
self.setValue( UserDefaults.standard.object( forKey: key ), forKey: key )
self.addObserver( self, forKeyPath: key, options: .new, context: nil )
}
}
deinit
{
for c in Mirror( reflecting: self ).children
{
guard let key = c.label else
{
continue
}
self.removeObserver( self, forKeyPath: key )
}
}
@objc public override func observeValue( forKeyPath keyPath: String?, of object: Any?, change: [ NSKeyValueChangeKey : Any ]?, context: UnsafeMutableRawPointer? )
{
for c in Mirror( reflecting: self ).children
{
guard let key = c.label else
{
continue
}
if( key == keyPath )
{
UserDefaults.standard.set( change?[ NSKeyValueChangeKey.newKey ], forKey: key )
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment