blob: 5be2b2a7550ab6e56c4e08bcb155da9a9900fe36 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
|
import {FocusElement} from 'tui-lib/ui/primitives'
import * as ansi from 'tui-lib/util/ansi'
import telc from 'tui-lib/util/telchars'
export default class Button extends FocusElement {
// A button.
constructor(text) {
super()
this.text = text
this.cursorX = null
this.cursorY = null
}
fixLayout() {
this.w = ansi.measureColumns(this.text)
this.h = 1
}
drawTo(writable) {
if (this.isSelected) {
writable.write(ansi.invert())
}
writable.write(ansi.moveCursor(this.absTop, this.absLeft))
writable.write(this.text)
writable.write(ansi.resetAttributes())
super.drawTo(writable)
}
keyPressed(keyBuf) {
if (telc.isSelect(keyBuf)) {
this.emit('pressed')
}
}
clicked(button) {
if (button === 'left') {
if (this.isSelected) {
this.emit('pressed')
} else {
this.root.select(this)
}
}
}
}
|