subbed in tables
This commit is contained in:
parent
d4b7cd32d4
commit
59f97be98c
Notes:
Jeff Carr
2025-02-14 00:21:07 -06:00
// `autogen:go.mod` module go.wit.com/widget go 1.22 toolchain go1.23.6 // `autogen:`
|
@ -42,6 +42,8 @@ type Action struct {
|
||||||
|
|
||||||
// Make widgets fill up the space available
|
// Make widgets fill up the space available
|
||||||
Expand bool
|
Expand bool
|
||||||
|
|
||||||
|
TablePB []byte // a table protobuf
|
||||||
}
|
}
|
||||||
|
|
||||||
type ActionType int // Add, SetText, Click, Hide, Append, Delete, etc
|
type ActionType int // Add, SetText, Click, Hide, Append, Delete, etc
|
||||||
|
|
|
@ -33,6 +33,7 @@ const (
|
||||||
Textbox // is this a Label with edit=true
|
Textbox // is this a Label with edit=true
|
||||||
Slider // like a progress bar
|
Slider // like a progress bar
|
||||||
Spinner // like setting the oven temperature
|
Spinner // like setting the oven temperature
|
||||||
|
Table // a full window & table
|
||||||
Separator // TODO
|
Separator // TODO
|
||||||
Image // TODO
|
Image // TODO
|
||||||
Area // TODO
|
Area // TODO
|
||||||
|
@ -79,6 +80,8 @@ func (s WidgetType) String() string {
|
||||||
return "Spinner"
|
return "Spinner"
|
||||||
case Separator:
|
case Separator:
|
||||||
return "Separator"
|
return "Separator"
|
||||||
|
case Table:
|
||||||
|
return "Table"
|
||||||
case Image:
|
case Image:
|
||||||
return "Image"
|
return "Image"
|
||||||
case Area:
|
case Area:
|
||||||
|
|
Loading…
Reference in New Issue