summaryrefslogtreecommitdiff
path: root/logsettings/structs.go
blob: 3df504b9a417ad12752e04f21be779b1438876e6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
package logsettings

import 	(
	"go.wit.com/gui/gui"
	"go.wit.com/gui/gadgets"
)

var myLogGui *LogSettings

type LogSettings struct {
	ready	bool
	hidden	bool
	err	error

	parent	*gui.Node // where to draw our window
	window	*gui.Node // our window for displaying the log package settings

	// Primary Directives
	status	*gadgets.OneLiner
	summary	*gadgets.OneLiner

	checkbox *gadgets.LogFlag
}