73 lines
1.8 KiB
Swift
73 lines
1.8 KiB
Swift
// 31 july 2015
|
|
import Cocoa
|
|
|
|
var nspinbox = 0
|
|
|
|
class Spinbox : NSView, Control {
|
|
private var t: NSTextField
|
|
private var s: NSStepper
|
|
private var parent: Control?
|
|
|
|
init() {
|
|
var cell: NSTextFieldCell
|
|
|
|
self.t = NSTextField(frame: NSZeroRect)
|
|
self.t.stringValue = "\(nspinbox)"
|
|
nspinbox++
|
|
self.t.selectable = true
|
|
self.t.font = NSFont.systemFontOfSize(NSFont.systemFontSizeForControlSize(NSControlSize.RegularControlSize))
|
|
self.t.bordered = false
|
|
self.t.bezelStyle = NSTextFieldBezelStyle.SquareBezel
|
|
self.t.bezeled = true
|
|
cell = self.t.cell() as! NSTextFieldCell
|
|
cell.lineBreakMode = NSLineBreakMode.ByClipping
|
|
cell.scrollable = true
|
|
self.t.translatesAutoresizingMaskIntoConstraints = false
|
|
|
|
self.s = NSStepper(frame: NSZeroRect)
|
|
self.s.increment = 1
|
|
self.s.valueWraps = false
|
|
self.s.autorepeat = true
|
|
self.s.translatesAutoresizingMaskIntoConstraints = false
|
|
|
|
self.parent = nil
|
|
|
|
super.init(frame: NSZeroRect)
|
|
self.translatesAutoresizingMaskIntoConstraints = false
|
|
|
|
self.addSubview(self.t)
|
|
self.addSubview(self.s)
|
|
var views = [
|
|
"t": self.t,
|
|
"s": self.s,
|
|
]
|
|
var constraints = mkconstraints("H:|[t]-[s]|", views)
|
|
self.addConstraints(constraints)
|
|
constraints = mkconstraints("V:|[t]|", views)
|
|
self.addConstraints(constraints)
|
|
constraints = mkconstraints("V:|[s]|", views)
|
|
self.addConstraints(constraints)
|
|
}
|
|
|
|
required init?(coder: NSCoder) {
|
|
fatalError("can't use this constructor, sorry")
|
|
}
|
|
|
|
// TODO leave only the required amount of space around the alignment rect
|
|
override var alignmentRectInsets: NSEdgeInsets {
|
|
get {
|
|
return NSEdgeInsetsMake(50, 50, 50, 50)
|
|
}
|
|
}
|
|
|
|
func View() -> NSView {
|
|
return self
|
|
}
|
|
|
|
func SetParent(p: Control) {
|
|
self.parent = p
|
|
}
|
|
}
|
|
|
|
//TODO p.nonStretchyWidthPredicate = "(==96)" // TODO on the text field only
|