mirror of
https://github.com/qvacua/vimr.git
synced 2024-11-28 11:35:35 +03:00
79 lines
1.8 KiB
Swift
79 lines
1.8 KiB
Swift
/**
|
|
* Tae Won Ha - http://taewon.de - @hataewon
|
|
* See LICENSE
|
|
*/
|
|
|
|
import Cocoa
|
|
import RxSwift
|
|
|
|
class PrefPane: ViewComponent {
|
|
|
|
// Return true to place this to the upper left corner when the scroll view is bigger than this view.
|
|
override var isFlipped: Bool {
|
|
return true
|
|
}
|
|
|
|
var displayName: String {
|
|
preconditionFailure("Please override")
|
|
}
|
|
|
|
var pinToContainer: Bool {
|
|
return false
|
|
}
|
|
|
|
func windowWillClose() {
|
|
// noop, override
|
|
}
|
|
}
|
|
|
|
// MARK: - Control Utils
|
|
extension PrefPane {
|
|
|
|
func paneTitleTextField(title: String) -> NSTextField {
|
|
let field = defaultTitleTextField()
|
|
field.font = NSFont.boldSystemFont(ofSize: 16)
|
|
field.alignment = .left;
|
|
field.stringValue = title
|
|
return field
|
|
}
|
|
|
|
func titleTextField(title: String) -> NSTextField {
|
|
let field = defaultTitleTextField()
|
|
field.alignment = .right;
|
|
field.stringValue = title
|
|
return field
|
|
}
|
|
|
|
func infoTextField(text: String) -> NSTextField {
|
|
let field = NSTextField(forAutoLayout: ())
|
|
field.font = NSFont.systemFont(ofSize: NSFont.smallSystemFontSize())
|
|
field.textColor = NSColor.gray
|
|
field.backgroundColor = NSColor.clear
|
|
field.isEditable = false
|
|
field.isBordered = false
|
|
|
|
// both are needed, otherwise hyperlink won't accept mousedown
|
|
field.isSelectable = true
|
|
field.allowsEditingTextAttributes = true
|
|
|
|
field.stringValue = text
|
|
|
|
return field
|
|
}
|
|
|
|
func configureCheckbox(button: NSButton, title: String, action: Selector) {
|
|
button.title = title
|
|
button.setButtonType(.switch)
|
|
button.target = self
|
|
button.action = action
|
|
}
|
|
|
|
fileprivate func defaultTitleTextField() -> NSTextField {
|
|
let field = NSTextField(forAutoLayout: ())
|
|
field.backgroundColor = NSColor.clear;
|
|
field.isEditable = false;
|
|
field.isBordered = false;
|
|
return field
|
|
}
|
|
}
|