File: checkbox.go

package info (click to toggle)
mumax3 3.10-9
  • links: PTS, VCS
  • area: contrib
  • in suites: trixie
  • size: 7,596 kB
  • sloc: makefile: 181; ansic: 155; sh: 77
file content (17 lines) | stat: -rw-r--r-- 451 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package gui

import "fmt"

type checkbox struct {
	data
}

func (e *checkbox) update(id string) []jsCall {
	return []jsCall{{F: "setAttr", Args: []interface{}{id, "checked", e.value()}}}
}

func (d *Page) Checkbox(id, text string, value bool, extra ...string) string {
	e := &checkbox{data: data{value}}
	d.addElem(id, e)
	return fmt.Sprintf(`<input type=checkbox id=%v class=CheckBox onchange="notifyel('%v', 'checked')">%v</input>`, id, id, text)
}