forked from jojomi/gonsole
-
Notifications
You must be signed in to change notification settings - Fork 4
/
inputdialog.go
65 lines (52 loc) · 1.29 KB
/
inputdialog.go
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
package gonsole
import (
"fmt"
"strconv"
"github.com/huandu/xstrings"
)
type InputDialog struct {
BaseWindow
edit *Edit
buttonIndex int
}
func (d *InputDialog) InputValue() string {
return d.edit.Value()
}
func (d *InputDialog) SelectedButton() int {
return d.buttonIndex
}
func NewInputDialog(app *App, id, title, message string, buttons []string) *InputDialog {
d := &InputDialog{}
d.Init(app, id)
d.App().addWindow(d)
d.SetTitle(title)
d.SetPadding(Sides{1, 1, 1, 1})
label := NewLabel(d, d, fmt.Sprintf("%s__message", id))
label.SetPosition(Position{"0", "0", "100%", "50%"})
label.SetText(message)
d.edit = NewEdit(d, d, "edit")
d.edit.SetPosition(Position{"0", "50%+1", "100%", "1"})
d.edit.Focus()
d.edit.OnSubmit(func(string) {
d.App().removeWindow(d)
if d.onClose != nil {
d.onClose()
}
})
buttonCount := len(buttons)
for i, button := range buttons {
textLen := xstrings.Len(button)
btn := NewButton(d, d, fmt.Sprintf("%s__button%d", id, i))
btn.SetPosition(Position{fmt.Sprintf("%d%%-%d", (i*buttonCount+1)*100/(buttonCount*2), textLen/2), "90%", strconv.Itoa(textLen), "1"})
btn.SetText(button)
btnIndex := i
btn.OnClick(func() {
d.buttonIndex = btnIndex
d.App().removeWindow(d)
if d.onClose != nil {
d.onClose()
}
})
}
return d
}