19 lines
317 B
Go
19 lines
317 B
Go
package gui
|
|
|
|
import (
|
|
"git.wit.org/wit/gui/toolkit"
|
|
)
|
|
|
|
// This function should make a new node with the parent and
|
|
// the 'tab' as a child
|
|
|
|
func (n *Node) NewTab(text string) *Node {
|
|
newNode := n.New(text, toolkit.Tab, nil)
|
|
|
|
var a toolkit.Action
|
|
a.Type = toolkit.Add
|
|
newaction(&a, newNode, n)
|
|
|
|
return newNode
|
|
}
|