Compare commits
3 Commits
Author | SHA1 | Date |
---|---|---|
|
642929aca1 | |
|
a7cc6fa5d3 | |
|
59f97be98c |
21
action.go
21
action.go
|
@ -42,6 +42,9 @@ type Action struct {
|
|||
|
||||
// Make widgets fill up the space available
|
||||
Expand bool
|
||||
|
||||
TablePB []byte // a table protobuf
|
||||
WidgetPB []byte // a tree of widgets
|
||||
}
|
||||
|
||||
type ActionType int // Add, SetText, Click, Hide, Append, Delete, etc
|
||||
|
@ -109,6 +112,22 @@ func (s ActionType) String() string {
|
|||
return "Move"
|
||||
case Dump:
|
||||
return "Dump"
|
||||
case User:
|
||||
return "User"
|
||||
case ToolkitLoad:
|
||||
return "ToolkitLoad"
|
||||
case ToolkitInit:
|
||||
return "ToolkitInit"
|
||||
case ToolkitClose:
|
||||
return "ToolkitClose"
|
||||
case ToolkitPanic:
|
||||
return "ToolkitPanic"
|
||||
case Heartbeat:
|
||||
return "Heartbeat"
|
||||
case UserQuit:
|
||||
return "UserQuit"
|
||||
case EnableDebug:
|
||||
return "EnableDebug"
|
||||
}
|
||||
return "ActionType.String() Error"
|
||||
return "gui ActionType.String() Error. must be missing something in the code here"
|
||||
}
|
||||
|
|
|
@ -33,6 +33,7 @@ const (
|
|||
Textbox // is this a Label with edit=true
|
||||
Slider // like a progress bar
|
||||
Spinner // like setting the oven temperature
|
||||
Table // a full window & table
|
||||
Separator // TODO
|
||||
Image // TODO
|
||||
Area // TODO
|
||||
|
@ -79,6 +80,8 @@ func (s WidgetType) String() string {
|
|||
return "Spinner"
|
||||
case Separator:
|
||||
return "Separator"
|
||||
case Table:
|
||||
return "Table"
|
||||
case Image:
|
||||
return "Image"
|
||||
case Area:
|
||||
|
|
Loading…
Reference in New Issue