273 lines
9.2 KiB
Swift
273 lines
9.2 KiB
Swift
//
|
|
// Preferences.swift
|
|
//
|
|
// Copyright (c) 2011 The McBopomofo Project.
|
|
//
|
|
// Contributors:
|
|
// Mengjuei Hsieh (@mjhsieh)
|
|
// Weizhong Yang (@zonble)
|
|
//
|
|
// Based on the Syrup Project and the Formosana Library
|
|
// by Lukhnos Liu (@lukhnos).
|
|
//
|
|
// 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
|
|
|
|
private let kKeyboardLayoutPreferenceKey = "KeyboardLayout"
|
|
private let kBasisKeyboardLayoutPreferenceKey = "BasisKeyboardLayout"; // alphanumeric ("ASCII") input basi
|
|
private let kFunctionKeyKeyboardLayoutPreferenceKey = "FunctionKeyKeyboardLayout"; // alphanumeric ("ASCII") input basi
|
|
private let kFunctionKeyKeyboardLayoutOverrideIncludeShiftKey = "FunctionKeyKeyboardLayoutOverrideIncludeShift"; // whether include shif
|
|
private let kCandidateListTextSizeKey = "CandidateListTextSize"
|
|
private let kSelectPhraseAfterCursorAsCandidatePreferenceKey = "SelectPhraseAfterCursorAsCandidate"
|
|
private let kUseHorizontalCandidateListPreferenceKey = "UseHorizontalCandidateList"
|
|
private let kComposingBufferSizePreferenceKey = "ComposingBufferSize"
|
|
private let kChooseCandidateUsingSpaceKey = "ChooseCandidateUsingSpaceKey"
|
|
private let kChineseConversionEnabledKey = "ChineseConversionEnabled"
|
|
private let kHalfWidthPunctuationEnabledKey = "HalfWidthPunctuationEnable"
|
|
private let kEscToCleanInputBufferKey = "EscToCleanInputBuffer"
|
|
|
|
private let kCandidateTextFontName = "CandidateTextFontName"
|
|
private let kCandidateKeyLabelFontName = "CandidateKeyLabelFontName"
|
|
private let kCandidateKeys = "CandidateKeys"
|
|
|
|
private let kDefaultCandidateListTextSize: CGFloat = 16
|
|
private let kMinKeyLabelSize: CGFloat = 10
|
|
private let kMinCandidateListTextSize: CGFloat = 12
|
|
private let kMaxCandidateListTextSize: CGFloat = 196
|
|
|
|
// default, min and max composing buffer size (in codepoints)
|
|
// modern Macs can usually work up to 16 codepoints when the builder still
|
|
// walks the grid with good performance; slower Macs (like old PowerBooks)
|
|
// will start to sputter beyond 12; such is the algorithmatic complexity
|
|
// of the Viterbi algorithm used in the builder library (at O(N^2))
|
|
private let kDefaultComposingBufferSize = 10
|
|
private let kMinComposingBufferSize = 4
|
|
private let kMaxComposingBufferSize = 20
|
|
|
|
private let kDefaultKeys = "123456789"
|
|
|
|
// MARK: Property wrappers
|
|
|
|
@propertyWrapper
|
|
struct UserDefault<Value> {
|
|
let key: String
|
|
let defaultValue: Value
|
|
var container: UserDefaults = .standard
|
|
|
|
var wrappedValue: Value {
|
|
get {
|
|
return container.object(forKey: key) as? Value ?? defaultValue
|
|
}
|
|
set {
|
|
container.set(newValue, forKey: key)
|
|
}
|
|
}
|
|
}
|
|
|
|
@propertyWrapper
|
|
struct CandidateListTextSize {
|
|
let key: String
|
|
let defaultValue: CGFloat = kDefaultCandidateListTextSize
|
|
lazy var container: UserDefault = {
|
|
UserDefault(key: key, defaultValue: defaultValue) }()
|
|
|
|
var wrappedValue: CGFloat {
|
|
mutating get {
|
|
var value = container.wrappedValue
|
|
if value < kMinCandidateListTextSize {
|
|
value = kMinCandidateListTextSize
|
|
} else if value > kMaxCandidateListTextSize {
|
|
value = kMaxCandidateListTextSize
|
|
}
|
|
return value
|
|
}
|
|
set {
|
|
var value = newValue
|
|
if value < kMinCandidateListTextSize {
|
|
value = kMinCandidateListTextSize
|
|
} else if value > kMaxCandidateListTextSize {
|
|
value = kMaxCandidateListTextSize
|
|
}
|
|
container.wrappedValue = value
|
|
}
|
|
}
|
|
}
|
|
|
|
@propertyWrapper
|
|
struct ComposingBufferSize {
|
|
let key: String
|
|
let defaultValue: Int = kDefaultComposingBufferSize
|
|
lazy var container: UserDefault = {
|
|
UserDefault(key: key, defaultValue: defaultValue) }()
|
|
|
|
var wrappedValue: Int {
|
|
mutating get {
|
|
let currentValue = container.wrappedValue
|
|
if currentValue < kMinComposingBufferSize {
|
|
return kMinComposingBufferSize
|
|
} else if currentValue > kMaxComposingBufferSize {
|
|
return kMaxComposingBufferSize
|
|
}
|
|
return currentValue
|
|
}
|
|
set {
|
|
var value = newValue
|
|
if value < kMinComposingBufferSize {
|
|
value = kMinComposingBufferSize
|
|
} else if value > kMaxComposingBufferSize {
|
|
value = kMaxComposingBufferSize
|
|
}
|
|
container.wrappedValue = value
|
|
}
|
|
}
|
|
}
|
|
|
|
@propertyWrapper
|
|
struct ComposingKeys {
|
|
let key: String
|
|
let defaultValue: String? = kCandidateKeys
|
|
lazy var container: UserDefault = {
|
|
UserDefault(key: key, defaultValue: defaultValue) }()
|
|
|
|
var wrappedValue: String? {
|
|
mutating get {
|
|
let value = container.wrappedValue
|
|
if let value = value {
|
|
if value.trimmingCharacters(in: .whitespacesAndNewlines).isEmpty {
|
|
return nil
|
|
}
|
|
}
|
|
return value
|
|
}
|
|
set {
|
|
let value = newValue
|
|
if let value = value {
|
|
if value.trimmingCharacters(in: .whitespacesAndNewlines).isEmpty {
|
|
container.wrappedValue = nil
|
|
return
|
|
}
|
|
}
|
|
container.wrappedValue = value
|
|
}
|
|
}
|
|
}
|
|
|
|
// MARK: -
|
|
|
|
@objc enum KeyboardLayout: Int {
|
|
case standard
|
|
case eten
|
|
case eten26
|
|
case hsu
|
|
case hanyuPinyin
|
|
case IBM
|
|
|
|
var name: String {
|
|
switch (self) {
|
|
case .standard:
|
|
return "Standard"
|
|
case .eten:
|
|
return "ETen"
|
|
case .eten26:
|
|
return "ETen26"
|
|
case .hsu:
|
|
return "Hsu"
|
|
case .hanyuPinyin:
|
|
return "HanyuPinyin"
|
|
case .IBM:
|
|
return "IBM"
|
|
}
|
|
}
|
|
}
|
|
|
|
// MARK: -
|
|
|
|
class Preferences: NSObject {
|
|
@UserDefault(key: kKeyboardLayoutPreferenceKey, defaultValue: 0)
|
|
@objc static var keyboardLayout: Int
|
|
|
|
@objc static var keyboardLayoutName: String {
|
|
(KeyboardLayout(rawValue: self.keyboardLayout) ?? KeyboardLayout.standard).name
|
|
}
|
|
|
|
@UserDefault(key: kBasisKeyboardLayoutPreferenceKey, defaultValue: "com.apple.keylayout.US")
|
|
@objc static var basisKeyboardLayout: String
|
|
|
|
@UserDefault(key: kFunctionKeyKeyboardLayoutPreferenceKey, defaultValue: "com.apple.keylayout.US")
|
|
@objc static var functionKeyboardLayout: String
|
|
|
|
@UserDefault(key: kFunctionKeyKeyboardLayoutOverrideIncludeShiftKey, defaultValue: false)
|
|
@objc static var functionKeyKeyboardLayoutOverrideIncludeShiftKey: Bool
|
|
|
|
@CandidateListTextSize(key: kCandidateListTextSizeKey)
|
|
@objc static var candidateListTextSize: CGFloat
|
|
|
|
@UserDefault(key: kSelectPhraseAfterCursorAsCandidatePreferenceKey, defaultValue: false)
|
|
@objc static var selectPhraseAfterCursorAsCandidate: Bool
|
|
|
|
@UserDefault(key: kUseHorizontalCandidateListPreferenceKey, defaultValue: false)
|
|
@objc static var useHorizontalCandidateList: Bool
|
|
|
|
@ComposingBufferSize(key: kComposingBufferSizePreferenceKey)
|
|
@objc static var composingBufferSize: Int
|
|
|
|
@UserDefault(key: kChooseCandidateUsingSpaceKey, defaultValue: true)
|
|
@objc static var chooseCandidateUsingSpace: Bool
|
|
|
|
@UserDefault(key: kChineseConversionEnabledKey, defaultValue: false)
|
|
@objc static var chineseConversionEnabled: Bool
|
|
|
|
@objc static func toggleChineseConversionEnabled() -> Bool {
|
|
chineseConversionEnabled = !chineseConversionEnabled
|
|
return chineseConversionEnabled
|
|
}
|
|
|
|
@UserDefault(key: kHalfWidthPunctuationEnabledKey, defaultValue: false)
|
|
@objc static var halfWidthPunctuationEnabled: Bool
|
|
|
|
@objc static func toogleHalfWidthPunctuationEnabled() -> Bool {
|
|
halfWidthPunctuationEnabled = !halfWidthPunctuationEnabled
|
|
return halfWidthPunctuationEnabled;
|
|
}
|
|
|
|
@UserDefault(key: kEscToCleanInputBufferKey, defaultValue: false)
|
|
@objc static var escToCleanInputBuffer: Bool
|
|
|
|
// MARK: Optional settings
|
|
|
|
@UserDefault(key: kCandidateTextFontName, defaultValue: nil)
|
|
@objc static var candidateTextFontName: String?
|
|
|
|
@UserDefault(key: kCandidateKeyLabelFontName, defaultValue: nil)
|
|
@objc static var candidateKeyLabelFontName: String?
|
|
|
|
@ComposingKeys(key: kCandidateKeys)
|
|
@objc static var candidateKeys: String?
|
|
|
|
@objc static var defaultKeys: String {
|
|
kDefaultKeys
|
|
}
|
|
|
|
}
|