156 lines
5.9 KiB
Swift
156 lines
5.9 KiB
Swift
// Copyright (c) 2022 and onwards The McBopomofo Authors.
|
|
//
|
|
// 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
|
|
import Carbon
|
|
|
|
// Please note that the class should be exposed as "PreferencesWindowController"
|
|
// in Objective-C in order to let IMK to see the same class name as
|
|
// the "InputMethodServerPreferencesWindowControllerClass" in Info.plist.
|
|
@objc(PreferencesWindowController) class PreferencesWindowController: NSWindowController {
|
|
@IBOutlet weak var fontSizePopUpButton: NSPopUpButton!
|
|
@IBOutlet weak var basisKeyboardLayoutButton: NSPopUpButton!
|
|
@IBOutlet weak var selectionKeyComboBox: NSComboBox!
|
|
|
|
override func awakeFromNib() {
|
|
let list = TISCreateInputSourceList(nil, true).takeRetainedValue() as! [TISInputSource]
|
|
var usKeyboardLayoutItem: NSMenuItem? = nil
|
|
var chosenItem: NSMenuItem? = nil
|
|
|
|
basisKeyboardLayoutButton.menu?.removeAllItems()
|
|
|
|
let basisKeyboardLayoutID = Preferences.basisKeyboardLayout
|
|
for source in list {
|
|
|
|
func getString(_ key: CFString) -> String? {
|
|
if let ptr = TISGetInputSourceProperty(source, key) {
|
|
return String(Unmanaged<CFString>.fromOpaque(ptr).takeUnretainedValue())
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func getBool(_ key: CFString) -> Bool? {
|
|
if let ptr = TISGetInputSourceProperty(source, key) {
|
|
return Unmanaged<CFBoolean>.fromOpaque(ptr).takeUnretainedValue() == kCFBooleanTrue
|
|
}
|
|
return nil
|
|
}
|
|
|
|
if let category = getString(kTISPropertyInputSourceCategory) {
|
|
if category != String(kTISCategoryKeyboardInputSource) {
|
|
continue
|
|
}
|
|
} else {
|
|
continue
|
|
}
|
|
|
|
if let asciiCapable = getBool(kTISPropertyInputSourceIsASCIICapable) {
|
|
if !asciiCapable {
|
|
continue
|
|
}
|
|
} else {
|
|
continue
|
|
}
|
|
|
|
if let sourceType = getString(kTISPropertyInputSourceType) {
|
|
if sourceType != String(kTISTypeKeyboardLayout) {
|
|
continue
|
|
}
|
|
} else {
|
|
continue
|
|
}
|
|
|
|
guard let sourceID = getString(kTISPropertyInputSourceID),
|
|
let localizedName = getString(kTISPropertyLocalizedName) else {
|
|
continue
|
|
}
|
|
|
|
let menuItem = NSMenuItem()
|
|
menuItem.title = localizedName
|
|
menuItem.representedObject = sourceID
|
|
|
|
if let iconPtr = TISGetInputSourceProperty(source, kTISPropertyIconRef) {
|
|
let icon = IconRef(iconPtr)
|
|
let image = NSImage(iconRef: icon)
|
|
|
|
func resize(_ image: NSImage) -> NSImage {
|
|
let newImage = NSImage(size: NSSize(width: 16, height: 16))
|
|
newImage.lockFocus()
|
|
image.draw(in: NSRect(x: 0, y: 0, width: 16, height: 16))
|
|
newImage.unlockFocus()
|
|
return newImage
|
|
}
|
|
|
|
menuItem.image = resize(image)
|
|
}
|
|
|
|
if sourceID == "com.apple.keylayout.US" {
|
|
usKeyboardLayoutItem = menuItem
|
|
}
|
|
if basisKeyboardLayoutID == sourceID {
|
|
chosenItem = menuItem
|
|
}
|
|
basisKeyboardLayoutButton.menu?.addItem(menuItem)
|
|
}
|
|
|
|
basisKeyboardLayoutButton.select(chosenItem ?? usKeyboardLayoutItem)
|
|
selectionKeyComboBox.usesDataSource = false
|
|
selectionKeyComboBox.removeAllItems()
|
|
selectionKeyComboBox.addItems(withObjectValues: Preferences.suggestedCandidateKeys)
|
|
|
|
var candidateSelectionKeys = Preferences.candidateKeys
|
|
if candidateSelectionKeys.isEmpty {
|
|
candidateSelectionKeys = Preferences.defaultCandidateKeys
|
|
}
|
|
|
|
selectionKeyComboBox.stringValue = candidateSelectionKeys
|
|
}
|
|
|
|
@IBAction func updateBasisKeyboardLayoutAction(_ sender: Any) {
|
|
if let sourceID = basisKeyboardLayoutButton.selectedItem?.representedObject as? String {
|
|
Preferences.basisKeyboardLayout = sourceID
|
|
}
|
|
}
|
|
|
|
@IBAction func changeSelectionKeyAction(_ sender: Any) {
|
|
guard let keys = (sender as AnyObject).stringValue?.trimmingCharacters(in: .whitespacesAndNewlines) else {
|
|
return
|
|
}
|
|
do {
|
|
try Preferences.validate(candidateKeys: keys)
|
|
Preferences.candidateKeys = keys
|
|
} catch Preferences.CandidateKeyError.empty {
|
|
selectionKeyComboBox.stringValue = Preferences.candidateKeys
|
|
} catch {
|
|
if let window = window {
|
|
let alert = NSAlert(error: error)
|
|
alert.beginSheetModal(for: window) { response in
|
|
self.selectionKeyComboBox.stringValue = Preferences.candidateKeys
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
}
|
|
|