File: progress.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-- 387 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 progress struct {
	data
}

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

func (d *Page) Progress(id string, max, value int, extra ...string) string {
	e := &progress{data: data{value}}
	d.addElem(id, e)
	return fmt.Sprintf(`<progress id=%v max=%v></progress>`, id, max)
}