diff options
Diffstat (limited to 'structs.go')
| -rw-r--r-- | structs.go | 14 |
1 files changed, 7 insertions, 7 deletions
@@ -11,7 +11,7 @@ import ( ) type TreeInfo struct { - PluginName string + PluginName string // this is the channel we send user events like // mouse clicks or keyboard events back to the program @@ -20,16 +20,16 @@ type TreeInfo struct { // this is the channel we get requests to make widgets pluginChan chan widget.Action - treeRoot *Node + treeRoot *Node // NodeI interface{} // ActionFromChannel func(widget.Action) NodeAction func(*Node, widget.ActionType) - Add func(*Node) - AddText func(*Node, string) - SetText func(*Node, string) - SetTitle func(*Node, string) - SetLabel func(*Node, string) + Add func(*Node) + AddText func(*Node, string) + SetText func(*Node, string) + SetTitle func(*Node, string) + SetLabel func(*Node, string) } type Node struct { |
